Searched defs:LOG (Results 26 - 50 of 68) sorted by relevance

123

/external/chromium_org/third_party/re2/util/
H A Dlogging.h52 #define LOG(severity) LOG_ ## severity.stream() macro
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DMediaDataBox.java50 private static Logger LOG = Logger.getLogger(MediaDataBox.class.getName()); field in class:MediaDataBox
172 LOG.fine("Even mapping just 10MB of the source file into the memory failed. " + e1);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
H A DAbstractBox.java50 private static Logger LOG = Logger.getLogger(AbstractBox.class.getName()); field in class:AbstractBox
238 LOG.severe(this.getType() + ": remaining differs " + content.remaining() + " vs. " + bb.remaining());
246 LOG.severe(String.format("%s: buffers differ at %d: %2X/%2X", this.getType(), i, v1, v2));
H A DAbstractContainerBox.java39 private static Logger LOG = Logger.getLogger(AbstractContainerBox.class.getName()); field in class:AbstractContainerBox
152 LOG.warning("Something's wrong with the sizes. There are dead bytes in a container box.");
H A DFullContainerBox.java38 private static Logger LOG = Logger.getLogger(FullContainerBox.class.getName()); field in class:FullContainerBox
114 LOG.severe("Some sizes are wrong");
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DFlatManifestWriterImpl.java51 private static final Logger LOG = Logger.getLogger(FlatManifestWriterImpl.class.getName()); field in class:FlatManifestWriterImpl
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DChangeTimeScaleTrack.java34 private static final Logger LOG = Logger.getLogger(ChangeTimeScaleTrack.class.getName()); field in class:ChangeTimeScaleTrack
172 LOG.finest(String.format("Sample %d %d / %d - correct by %d", i, summedDurations, syncSampleTimes[ssIndex], correction));
/external/qemu/android/
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/webrtc/src/system_wrappers/source/
H A Dcondition_variable_unittest.cc27 #define LOG(...) WEBRTC_TRACE(kTraceStateInfo, kTraceUtility, -1, __VA_ARGS__); macro
56 LOG("Locking giver_sect");
58 LOG("Locked giver_sect, locking crit_sect");
64 LOG("Pass count is %d", pass_count_);
90 LOG("Wait waiting");
92 LOG("Wait timeout");
104 LOG("Signal waking");
117 LOG("Takeback waiting");
126 LOG("Takeback grab");
149 LOG("Threa
[all...]
/external/chromium_org/build/android/rezip/
H A Drezip.cc49 #define LOG(tag) (LogStream().stream() << #tag << ":") macro
65 LOG(ERROR) << "failed to read from " << in_filename << " in zipfile "
75 LOG(ERROR) << "failed to write from " << out_filename << " in zipfile "
108 LOG(ERROR) << "failed to open zipfile " << z_filename_;
116 LOG(ERROR) << "failed to close input zipfile " << z_filename_;
135 LOG(ERROR) << "failed to open zipfile " << z_filename_;
143 LOG(ERROR) << "failed to close output zipfile" << z_filename_;
286 LOG(ERROR) << "failed to get filename" << out_zip_filename;
295 LOG(ERROR)
307 LOG(ERRO
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/
H A Ddevtools.js9 LOG: "log",
89 case "LOG":
/external/chromium_org/native_client_sdk/src/tools/
H A Dcommon.mk343 # Define a LOG macro that allow a command to be run in quiet mode where
354 define LOG macro
359 define LOG macro
363 define LOG macro
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlogging.h240 // LOG(FATAL) indicates a big problem, so don't run atexit() calls
263 inline void LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); } function
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlogging.h208 abort(); // LOG(FATAL) indicates a big problem, so don't run atexit() calls
229 inline void LOG(int lvl, const char* pat, ...) { LOG_PRINTF(lvl, pat); } function
/external/chromium_org/third_party/webrtc/overrides/webrtc/base/
H A Dlogging.h52 // LOG(LS_ERROR) << "LibraryFunc returned: "
190 #undef LOG macro
191 #define LOG(sev) DIAGNOSTIC_LOG(rtc::sev, NONE, 0) macro
195 #define LOG_F(sev) LOG(sev) << __PRETTY_FUNCTION__ << ": "
197 #define LOG_F(sev) LOG(sev) << __FUNCTION__ << ": "
/external/chromium_org/v8/src/
H A Dlog.h68 #undef LOG macro
69 #define LOG(isolate, Call) \ macro
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DDefaultMp4Builder.java73 private static Logger LOG = Logger.getLogger(DefaultMp4Builder.class.getName()); field in class:DefaultMp4Builder
87 LOG.fine("Creating movie " + movie);
196 LOG.info("Creating Mp4TrackImpl " + track);
338 if (LOG.isLoggable(Level.FINE)) {
339 LOG.fine("Calculating chunk offsets for track_" + track.getTrackMetaData().getTrackId());
347 if (LOG.isLoggable(Level.FINER)) {
348 LOG.finer("Calculating chunk offsets for track_" + track.getTrackMetaData().getTrackId() + " chunk " + i);
351 if (LOG.isLoggable(Level.FINEST)) {
352 LOG.finest("Adding offsets of track_" + current.getTrackMetaData().getTrackId());
H A DFragmentedMp4Builder.java41 private static final Logger LOG = Logger.getLogger(FragmentedMp4Builder.class.getName()); field in class:FragmentedMp4Builder
157 LOG.fine("Creating movie " + movie);
708 LOG.fine("Creating Track " + track);
/external/qemu/android/base/
H A DLog.h56 // LogMessage instance every time a LOG() or CHECK() statement is
59 // - For LOG() statements, when the corresponding log level is enabled.
63 // LOG(severity) << some_stuff << some_more_stuff;
65 // This means LOG(severity) should expand to something that can take
85 // LOG(INFO) << "Starting flux capacitor";
87 // LOG(INFO) << "Flux capacitor started";
93 #define LOG(severity) \ macro
97 // A variant of LOG() that only performs logging if a specific condition
101 // LOG(INFO) << "Starting fuel injector";
103 // LOG(INF
[all...]
/external/ceres-solver/internal/ceres/miniglog/glog/
H A Dlogging.h37 // LOG(INFO), VLOG(0), LG
38 // LOG(WARNING),
39 // LOG(ERROR),
40 // LOG(FATAL),
170 // use of the log macros LG, LOG, or VLOG.
186 ANDROID_LOG_FATAL, // LOG(FATAL)
187 ANDROID_LOG_ERROR, // LOG(ERROR)
188 ANDROID_LOG_WARN, // LOG(WARNING)
189 ANDROID_LOG_INFO, // LOG(INFO), LG, VLOG(0)
302 // LG is a convenient shortcut for LOG(INF
306 # define LOG macro
311 # define LOG macro
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dlogging.h11 // LOG(...) an ostream target that can be used to send formatted
18 // There are several variations on the LOG macro which facilitate logging
21 // LOG(sev) logs the given stream at severity "sev", which must be a
24 // LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
26 // LOG_F(sev) Like LOG(), but includes the name of the current function.
27 // LOG_T(sev) Like LOG(), but includes the this pointer.
76 // LOG(LS_ERROR) << "LibraryFunc returned: "
249 #ifndef LOG
271 #define LOG(sev) \ macro
283 #define LOG_F(sev) LOG(se
[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/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dsampler_test.cc81 #undef LOG // defined in base/logging.h macro
84 #define LOG(level) std::cerr << "\n" macro
190 LOG(INFO) << StringPrintf("AD stat = %f, n=%d\n", ad_statistic, n);
204 LOG(INFO) << StringPrintf("Testing the AD test. n=%d, ad_stat = %f",
214 LOG(INFO) << "x= " << x << " adpv= "
248 LOG(INFO) << StringPrintf("pvalue for AndersonDarlingTest "
291 LOG(INFO) << StringPrintf("pvalue for geometric AndersonDarlingTest "
322 LOG(INFO) << current_value;
345 LOG(INFO) << StringPrintf("Fastlog2: max_ratio_error = %f\n",
370 LOG(INF
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dsampler_test.cc81 #undef LOG // defined in base/logging.h macro
84 #define LOG(level) std::cerr << "\n" macro
190 LOG(INFO) << StringPrintf("AD stat = %f, n=%d\n", ad_statistic, n);
204 LOG(INFO) << StringPrintf("Testing the AD test. n=%d, ad_stat = %f",
214 LOG(INFO) << "x= " << x << " adpv= "
248 LOG(INFO) << StringPrintf("pvalue for AndersonDarlingTest "
291 LOG(INFO) << StringPrintf("pvalue for geometric AndersonDarlingTest "
322 LOG(INFO) << current_value;
345 LOG(INFO) << StringPrintf("Fastlog2: max_ratio_error = %f\n",
370 LOG(INF
[all...]

Completed in 839 milliseconds

123