Searched defs:LOG (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DChromiumIncludes.h34 // Both WebKit and Chromium define LOG. In AOSP, the framework also defines
35 // LOG. To avoid conflicts, we undefine LOG before including Chromium code,
37 #ifdef LOG
39 #undef LOG macro
117 #undef LOG macro
118 // If LOG was defined, restore it to the WebKit macro.
120 // If LOG was defined, JOIN_LOG_CHANNEL_WITH_PREFIX must be too.
123 #define LOG(channel, ...) ((void)0) macro
125 #define LOG(channe macro
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-stream.c35 #define LOG(x) _hb_log x
48 #define LOG(x) do {} while (0) macro
64 LOG(( "_hb_stream_pos() -> %ld\n", stream->pos ));
79 LOG(( "_hb_stream_seek(%ld) -> 0x%04X\n", pos, error ));
103 LOG(( "_hb_stream_frame_enter(%ld) -> 0x%04X\n", count, error ));
113 LOG(( "_hb_stream_frame_exit()\n" ));
/external/chromium/sdch/open-vcdiff/src/
H A Dlogging.h62 #define LOG(level) LogMessage(open_vcdiff::level, #level) macro
/external/webkit/Source/WebKit/android/content/
H A Dcontent_detector.cpp35 #undef LOG macro
H A DPhoneEmailDetector.cpp29 #undef LOG macro
H A Daddress_detector.cpp35 #undef LOG macro
/external/openfst/src/include/fst/
H A Dlog.h50 #define LOG(type) LogMessage(#type).stream() macro
51 #define VLOG(level) if ((level) <= FLAGS_v) LOG(INFO)
/external/webkit/Tools/FindSafari/
H A DFindSafari.cpp36 #define LOG(header, ...) \ macro
41 #define LOG_WARNING(...) LOG(TEXT("WARNING: "), __VA_ARGS__)
42 #define LOG_ERROR(...) LOG(TEXT("ERROR: "), __VA_ARGS__)
/external/qemu/
H A Dloadpng.c7 #define LOG(x...) fprintf(stderr,"error: " x)
9 #define LOG(x...) do {} while (0) macro
26 LOG("%s: failed to allocate png read struct\n", fn);
32 LOG("%s: failed to allocate png info struct\n", fn);
38 LOG("%s: failed to open file\n", fn);
43 LOG("%s: failed to read header\n", fn);
48 LOG("%s: header is not a PNG header\n", fn);
53 LOG("%s: png library error\n", fn);
94 LOG("%s: unsupported (grayscale?) color type\n");
106 LOG("coul
[all...]
/external/regex-re2/util/
H A Dlogging.h47 #define LOG(severity) LOG_ ## severity.stream() macro
/external/v8/src/
H A Dlog.h80 #undef LOG macro
81 #define LOG(isolate, Call) \ macro
/external/webkit/Source/JavaScriptCore/wtf/
H A DAssertions.h333 /* LOG */
336 #define LOG() ((void)0) macro
338 #define LOG(arg...) ((void)0) macro
340 #define LOG(channel, ...) ((void)0) macro
342 #define LOG(channel, ...) WTFLog(&JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__) macro
/external/dropbear/libtomcrypt/src/ciphers/safer/
H A Dsafer.c93 #define LOG(x) safer_lbox[(x) & 0xFF] macro
273 a = EXP(a) + *++key; b = LOG(b) ^ *++key;
274 c = LOG(c) ^ *++key; d = EXP(d) + *++key;
275 e = EXP(e) + *++key; f = LOG(f) ^ *++key;
276 g = LOG(g) ^ *++key; h = EXP(h) + *++key;
334 h = LOG(h) ^ *--key; g = EXP(g) - *--key;
335 f = EXP(f) - *--key; e = LOG(e) ^ *--key;
336 d = LOG(d) ^ *--key; c = EXP(c) - *--key;
337 b = EXP(b) - *--key; a = LOG(a) ^ *--key;
/external/chromium/googleurl/base/
H A Dlogging.h43 // things to LOG(<a particular severity level>). E.g.,
45 // LOG(INFO) << "Found " << num_cookies << " cookies";
159 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
172 // wingdi.h defines ERROR to be 0. When we call LOG(ERROR), it gets
182 // LOG(INFO) becomes the token COMPACT_GOOGLE_LOG_INFO. There's some funny
190 #define LOG(severity) COMPACT_GOOGLE_LOG_ ## severity.stream() macro
191 #define SYSLOG(severity) LOG(severity)
194 !(condition) ? (void) 0 : logging::LogMessageVoidify() & LOG(severity)
206 // No destructor: if str_ is non-NULL, we're about to LOG(FATAL),
240 #define DLOG(severity) LOG(severit
[all...]
/external/chromium/third_party/libjingle/overrides/talk/base/
H A Dlogging.h28 // LOG(...) an ostream target that can be used to send formatted
35 // There are several variations on the LOG macro which facilitate logging
38 // LOG(sev) logs the given stream at severity "sev", which must be a
41 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
43 // LOG_F(sev) Like LOG(), but includes the name of the current function.
91 // LOG(LS_ERROR) << "LibraryFunc returned: "
273 #ifndef LOG
296 #define LOG(sev) \ macro
308 #define LOG_F(sev) LOG(sev) << __PRETTY_FUNCTION__ << ": "
310 #define LOG_F(sev) LOG(se
332 #define LOG macro
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dlogging.h28 // LOG(...) an ostream target that can be used to send formatted
35 // There are several variations on the LOG macro which facilitate logging
38 // LOG(sev) logs the given stream at severity "sev", which must be a
41 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
43 // LOG_F(sev) Like LOG(), but includes the name of the current function.
91 // LOG(LS_ERROR) << "LibraryFunc returned: "
269 #ifndef LOG
292 #define LOG(sev) \ macro
304 #define LOG_F(sev) LOG(sev) << __PRETTY_FUNCTION__ << ": "
306 #define LOG_F(sev) LOG(se
328 #define LOG macro
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.h259 #define LOG(type) LogMessage(#type).stream() macro
260 #define VLOG(level) if ((level) <= FLAGS_v) LOG(INFO)
/external/webkit/Source/WebCore/bridge/
H A Dtestbindings.cpp35 #define LOG(formatAndArgs...) { \ macro
/external/chromium/base/
H A Dlogging.h46 // things to LOG(<a particular severity level>). E.g.,
48 // LOG(INFO) << "Found " << num_cookies << " cookies";
59 // effectively performs a LOG(FATAL) which terminates the process and
299 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
328 // wingdi.h defines ERROR to be 0. When we call LOG(ERROR), it gets
360 // LOG(INFO) becomes the token COMPACT_GOOGLE_LOG_INFO. There's some funny
369 #define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity)) macro
373 #define SYSLOG(severity) LOG(severity)
720 // though. You should use the LOG() macro (and variants thereof)
727 // LOG cal
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DDB_Results.java48 static final boolean LOG = false; field in class:DB_Results
393 if (LOG) {
813 if (LOG) {
1116 if (LOG) LOG_WRITER.ends(" -> " + count + " values read"); //$NON-NLS-1$ //$NON-NLS-2$
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...

Completed in 529 milliseconds