Searched refs:c (Results 1 – 20 of 20) sorted by relevance
/glogg/glogg/src/ |
H A D | signalmux.cpp |
|
H A D | winwatchtowerdriver.cpp |
|
H A D | abstractlogview.cpp |
|
H A D | abstractlogview.h |
|
/glogg/src/ |
H A D | signalmux.cpp | 53 [sender, signal, slot]( const Connection& c ) -> bool in disconnect() 54 { return ((QObject*)c.source == sender) && (c.sink == nullptr) && in disconnect() argument 55 (qstrcmp( c.signal, signal) == 0) && (qstrcmp( c.slot, slot) == 0); } ); in disconnect() 90 [receiver, signal, slot]( const Connection& c ) -> bool in disconnect() 91 { return ((QObject*)c.sink == receiver) && (c.source == nullptr) && in disconnect() argument 92 (qstrcmp( c.signal, signal) == 0) && (qstrcmp( c.slot, slot) == 0); } ); in disconnect() 109 for ( auto c: connectionList_ ) in setCurrentDocument() local 110 disconnect( c ); in setCurrentDocument() 115 for ( auto c: connectionList_ ) in setCurrentDocument() local 116 connect( c ); in setCurrentDocument()
|
H A D | winwatchtowerdriver.cpp | 404 for ( wchar_t c : long_string ) { in shortstringize() local 406 char short_c = static_cast<char>( c & 0x00FF ); in shortstringize() 417 for ( char c : short_string ) { in longstringize() local 418 wchar_t long_c = static_cast<wchar_t>( c ); in longstringize()
|
H A D | abstractlogview.cpp | 1297 inline bool AbstractLogView::isCharWord( char c ) in isCharWord() argument 1299 if ( ( ( c >= 'A' ) && ( c <= 'Z' ) ) || in isCharWord() 1300 ( ( c >= 'a' ) && ( c <= 'z' ) ) || in isCharWord() 1301 ( ( c >= '0' ) && ( c <= '9' ) ) || in isCharWord() 1302 ( ( c == '_' ) ) ) in isCharWord()
|
H A D | abstractlogview.h | 414 bool isCharWord( char c );
|
/glogg/glogg/ |
H A D | release-win32.sh |
|
H A D | INSTALL.win.md |
|
H A D | glogg.pro |
|
H A D | COPYING |
|
/glogg/ |
H A D | release-win32.sh | 5 PATH=/cygdrive/c/qt/2010.02.1/qt/bin:/cygdrive/c/qt/2010.02.1/mingw/bin/:$PATH 14 cp /cygdrive/c/qt/2010.02.1/qt/bin/{QtCore4,QtGui4}.dll release/ 15 cp /cygdrive/c/qt/2010.02.1/mingw/bin/{mingwm10,libgcc_s_dw2-1}.dll release/ 20 /cygdrive/c/Program\ Files/NSIS/makensis -DVERSION=$VERSION glogg.nsi
|
H A D | INSTALL.win.md | 33 - Extract the Qt source in c:\qt\4.8.2 107 - Copy the whole c:\boost_1_50_0 to the linux machine to ~/qt-x-win32/boost_1_50_0
|
H A D | glogg.pro | 203 CONFIG += c++11
|
H A D | COPYING | 222 c) You must license the entire work, as a whole, under this 269 c) Convey individual copies of the object code with a copy of the 372 c) Prohibiting misrepresentation of the origin of that material, or 658 under certain conditions; type `show c' for details. 660 The hypothetical commands `show w' and `show c' should show the appropriate
|
/glogg/glogg/tests/ |
H A D | CMakeLists.txt |
|
/glogg/tests/ |
H A D | CMakeLists.txt | 26 check_cxx_compiler_flag("-std=c++11" COMPILER_SUPPORTS_CXX11) 27 check_cxx_compiler_flag("-std=c++0x" COMPILER_SUPPORTS_CXX0X) 29 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") 31 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") 36 set(CMAKE_REQUIRED_FLAGS "-std=c++11")
|
/glogg/src/data/ |
H A D | logdataworkerthread.cpp | 237 const char c = block.at(pos_within_block); in doIndex() local 238 encoding_speculator->inject_byte( c ); in doIndex() 239 if ( c == '\n' ) in doIndex() 241 else if ( c == '\t' ) in doIndex()
|
/glogg/glogg/src/data/ |
H A D | logdataworkerthread.cpp |
|