Home
last modified time | relevance | path

Searched refs:c (Results 1 – 20 of 20) sorted by relevance

/glogg/glogg/src/
H A Dsignalmux.cpp
H A Dwinwatchtowerdriver.cpp
H A Dabstractlogview.cpp
H A Dabstractlogview.h
/glogg/src/
H A Dsignalmux.cpp53 [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 Dwinwatchtowerdriver.cpp404 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 Dabstractlogview.cpp1297 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 Dabstractlogview.h414 bool isCharWord( char c );
/glogg/glogg/
H A Drelease-win32.sh
H A DINSTALL.win.md
H A Dglogg.pro
H A DCOPYING
/glogg/
H A Drelease-win32.sh5 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 DINSTALL.win.md33 - 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 Dglogg.pro203 CONFIG += c++11
H A DCOPYING222 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 DCMakeLists.txt
/glogg/tests/
H A DCMakeLists.txt26 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 Dlogdataworkerthread.cpp237 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 Dlogdataworkerthread.cpp