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

123

/external/clang/test/PCH/
H A Dformat-strings.c10 #define LOG printf(FOOBAR "%f", __LINE__) macro
15 LOG;
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_debug.h22 #define LOG(...) ::crazy::Log(__VA_ARGS__) macro
27 #define LOG(...) ((void)0)
36 LOG(__VA_ARGS__); \
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
H A DVersion.java12 private static final Logger LOG = Logger.getLogger(Version.class.getName()); field in class:Version
21 LOG.warning(e.getMessage());
/external/smack/src/com/kenai/jbosh/
H A DBodyParserXmlPull.java39 private static final Logger LOG = field in class:BodyParserXmlPull
71 if (LOG.isLoggable(Level.FINEST)) {
72 LOG.finest("Start tag: " + xpp.getName());
86 if (LOG.isLoggable(Level.FINEST)) {
87 LOG.finest("Start element: ");
88 LOG.finest(" prefix: " + prefix);
89 LOG.finest(" URI: " + uri);
90 LOG.finest(" local: " + localName);
115 if (LOG.isLoggable(Level.FINEST)) {
116 LOG
[all...]
H A DHTTPExchange.java36 private static final Logger LOG = field in class:HTTPExchange
117 LOG.log(Level.FINEST, "Interrupted", intx);
H A DServiceLib.java40 private static final Logger LOG = field in class:ServiceLib
75 if (LOG.isLoggable(Level.FINEST)) {
76 LOG.finest("Selected " + ofType.getSimpleName()
124 LOG.log(Level.WARNING,
147 if (LOG.isLoggable(Level.FINEST)) {
148 LOG.finest("Attempting service load: " + className);
155 if (LOG.isLoggable(Level.WARNING)) {
156 LOG.warning(clazz.getName() + " is not assignable to "
172 LOG.log(level,
190 LOG
[all...]
H A DBodyParserSAX.java44 private static final Logger LOG = field in class:BodyParserSAX
92 if (LOG.isLoggable(Level.FINEST)) {
93 LOG.finest("Start element: " + qName);
94 LOG.finest(" URI: " + uri);
95 LOG.finest(" local: " + localName);
118 if (LOG.isLoggable(Level.FINEST)) {
119 LOG.finest(" Attribute: {" + attrURI + "}"
141 if (LOG.isLoggable(Level.FINEST)) {
142 LOG.finest("Prefix mapping: <DEFAULT> => " + uri);
146 if (LOG
[all...]
/external/chromium_org/chrome/browser/diagnostics/
H A Ddiagnostics_writer.h22 LOG, enumerator in enum:diagnostics::DiagnosticsWriter::FormatType
36 // UTF8 encoded. A newline will be added for non-LOG output formats.
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DAbstractBoxParser.java35 private static Logger LOG = Logger.getLogger(AbstractBoxParser.class.getName()); field in class:AbstractBoxParser
55 LOG.severe("Plausibility check failed: size < 8 (size = " + size + "). Stop parsing!");
89 LOG.finest("Parsing " + box.getType());
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAppleCoverBox.java9 private static Logger LOG = Logger.getLogger(AppleCoverBox.class.getName()); field in class:AppleCoverBox
37 LOG.warning("---");
H A DAbstractAppleMetaDataBox.java22 private static Logger LOG = Logger.getLogger(AbstractAppleMetaDataBox.class.getName()); field in class:AbstractAppleMetaDataBox
130 LOG.warning("Don't know how to handle appleDataBox with flag=" + appleDataBox.getFlags());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DAbstractManifestWriter.java25 private static final Logger LOG = Logger.getLogger(AbstractManifestWriter.class.getName()); field in class:AbstractManifestWriter
101 LOG.warning(log);
110 LOG.warning(log);
H A DFlatPackageWriterImpl.java37 private static Logger LOG = Logger.getLogger(FlatPackageWriterImpl.class.getName()); field in class:FlatPackageWriterImpl
138 LOG.finer("Created : " + bitRateOutputDir.getCanonicalPath());
174 LOG.fine("Removed track " + track);
/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/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Ddefault_logger.h77 inline LoggerHandler LOG(int n) { function in namespace:i18n::phonenumbers
87 // VLOG(1) is the next logging level after LOG(DEBUG).
89 return LOG(n);
/external/chromium_org/third_party/libxml/src/
H A Dcheck-xinclude-test-suite.py14 LOG="check-xinclude-test-suite.log" variable
16 log = open(LOG, "w")
H A Dcheck-relaxng-test-suite.py20 LOG="check-relaxng-test-suite.log" variable
23 log = open(LOG, "w")
H A Dcheck-relaxng-test-suite2.py19 LOG="check-relaxng-test-suite2.log" variable
21 log = open(LOG, "w")
H A Dcheck-xml-test-suite.py18 LOG="check-xml-test-suite.log" variable
20 log = open(LOG, "w")
H A Dcheck-xsddata-test-suite.py20 LOG="check-xsddata-test-suite.log" variable
22 log = open(LOG, "w")
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dlogging.h22 // LOG(...) an ostream target that can be used to send formatted
29 // There are several variations on the LOG macro which facilitate logging
32 // LOG(sev) logs the given stream at severity "sev", which must be a
35 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
37 // LOG_F(sev) Like LOG(), but includes the name of the current function.
94 #ifndef LOG
123 #define LOG(sev) \ macro
135 #define LOG_F(sev) LOG(sev) << __PRETTY_FUNCTION__ << ": "
137 #define LOG_F(sev) LOG(sev) << __FUNCTION__ << ": "
147 #define LOG_FERR0(sev, func) LOG(se
[all...]
/external/chromium_org/tools/relocation_packer/src/
H A Ddebug.h7 // LOG(tag) prints messages. Tags are INFO, WARNING, ERROR and FATAL.
89 // LOG(severity) prints a message with the given severity, and aborts if
93 #define LOG(severity) \ macro
111 #define NOTREACHED(_) (LOG(FATAL) \
/external/lldb/test/pexpect-2.4/examples/
H A Dchess2.py102 def LOG (s): function
120 LOG ( 'move white:'+ move_white )
125 LOG ( 'move black:'+ move_black )
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DSyncSampleIntersectFinderImpl.java36 private static Logger LOG = Logger.getLogger(SyncSampleIntersectFinderImpl.class.getName()); field in class:SyncSampleIntersectFinderImpl
205 LOG.warning(log);
213 LOG.warning(log);
214 LOG.warning("There are less than 25% of common sync samples in the given track.");
217 LOG.fine("There are less than 50% of common sync samples in the given track. This is implausible but I'm ok to continue.");
219 LOG.finest("Common SyncSample positions vs. this tracks SyncSample positions: " + nuSyncSamples.size() + " vs. " + syncSamples.length);
/external/webrtc/src/system_wrappers/source/
H A Dcritical_section_unittest.cc33 #define LOG(...) WEBRTC_TRACE(kTraceStateInfo, kTraceUtility, -1, __VA_ARGS__); macro
53 LOG("Inc to %d", count_);
82 LOG("Test looped %d times\n", loop_counter);
91 LOG("Wait starting");
93 LOG("Wait incrementing");
95 LOG("Wait returning");
122 LOG("Wait starting");
124 LOG("Wait incrementing");
127 LOG("Wait returning");

Completed in 3205 milliseconds

123