Searched refs:log (Results 251 - 275 of 2002) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
H A Dvoe_test_common.h15 #include <android/log.h>
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dmetrics.js67 if (metrics.log) {
68 console.log('chrome.metricsPrivate.' + name, args);
127 if (metrics.log) {
128 console.log('chrome.metricsPrivate.recordValue',
/external/chromium_org/v8/samples/
H A Dcount-hosts.js32 log("Processing " + request.host + request.path +
/external/deqp/framework/opengl/
H A DgluCallLogWrapper.hpp41 CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log);
/external/deqp/modules/gles3/functional/
H A Des3fSyncTests.cpp173 TestLog& log = m_testCtx.getLog(); local
178 log << TestLog::Section(header, header);
198 log << TestLog::Message << "// Primitives drawn." << TestLog::EndMessage;
204 log << TestLog::Message << "// Sync object created." << TestLog::EndMessage;
221 log << TestLog::Message << "// Wait command glWaitSync called with GL_TIMEOUT_IGNORED." << TestLog::EndMessage;
227 log << TestLog::Message << "// glClientWaitSync return value:" << TestLog::EndMessage;
230 case GL_ALREADY_SIGNALED: log << TestLog::Message << "// GL_ALREADY_SIGNALED" << TestLog::EndMessage; break;
231 case GL_TIMEOUT_EXPIRED: log << TestLog::Message << "// GL_TIMEOUT_EXPIRED" << TestLog::EndMessage; break;
232 case GL_CONDITION_SATISFIED: log << TestLog::Message << "// GL_CONDITION_SATISFIED" << TestLog::EndMessage; break;
233 case GL_WAIT_FAILED: log << TestLo
[all...]
/external/deqp/modules/internal/
H A DditTestLogTests.cpp21 * \brief Test log output tests.
49 TestLog& log = m_testCtx.getLog(); local
51 log << TestLog::SampleList("TestSamples", "Test Sample List")
58 log << TestLog::Sample << 1 << 2 << 2.3 << TestLog::EndSample
65 log << TestLog::EndSampleList;
/external/eigen/unsupported/doc/examples/
H A DMatrixLogarithm.cpp14 std::cout << "The matrix logarithm of A is:\n" << A.log() << "\n";
/external/lldb/source/Core/
H A DAddressResolverFileLine.cpp17 #include "lldb/lldb-private-log.h"
55 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
70 if (log)
74 //log->Printf ("Added address: %s\n", s.GetData());
79 if (log)
80 log->Printf ("error: Unable to resolve address at file address 0x%" PRIx64 " for %s:%d\n",
H A DListener.cpp21 #include "lldb/lldb-private-log.h"
35 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
36 if (log)
37 log->Printf ("%p Listener::Listener('%s')", this, m_name.c_str());
42 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
50 if (log)
51 log->Printf ("%p Listener::~Listener('%s')", this, m_name.c_str());
87 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS));
88 if (log)
89 log
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp303 DYLDRendezvous::DumpToLog(Log *log) const
307 if (!log)
310 log->PutCString("DYLDRendezvous:");
311 log->Printf(" Address: %" PRIx64, GetRendezvousAddress());
312 log->Printf(" Version: %" PRIu64, GetVersion());
313 log->Printf(" Link : %" PRIx64, GetLinkMapAddress());
314 log->Printf(" Break : %" PRIx64, GetBreakAddress());
315 log->Printf(" LDBase : %" PRIx64, GetLDBase());
316 log->Printf(" State : %s",
325 log
[all...]
/external/llvm/utils/
H A DGetSourceVersion22 git log -1 --pretty=format:%H
/external/skia/src/ports/
H A DSkDebug_android.cpp16 #include <android/log.h>
/external/valgrind/
H A Dmerge.upstream.sh49 echo "Merging valgrind... (in $valgrind_dir)" | tee $current_dir/merge.log
51 svn diff -r$valgrind_revision:$upstream_valgrind_revision $valgrind_svn_url | patch -Ep0 | tee -a $current_dir/merge.log
55 echo "Merging vex... (in $vex_dir)" | tee -a $current_dir/merge.log
57 svn diff -r$vex_revision:$upstream_vex_revision $vex_svn_url | patch -Ep0 | tee -a $current_dir/merge.log
64 echo " 1. Check $current_dir/merge.log for possible merge issues"
/external/apache-http/src/org/apache/http/impl/conn/
H A DWire.java52 private final Log log; field in class:Wire
54 public Wire(Log log) { argument
55 this.log = log;
69 log.debug(buffer.toString());
83 log.debug(buffer.toString());
89 return log.isDebugEnabled();
H A DSingleClientConnManager.java79 private final Log log = LogFactory.getLog(getClass()); field in class:SingleClientConnManager
219 if (log.isDebugEnabled()) {
220 log.debug("Get connection for route " + route);
251 log.debug("Problem shutting down connection.", iox);
267 log.debug("Problem tagging socket.", iox);
287 if (log.isDebugEnabled()) {
288 log.debug("Releasing connection " + conn);
314 if (log.isDebugEnabled()) {
315 log.debug
325 //@@@ log a
[all...]
/external/apache-http/src/org/apache/http/client/protocol/
H A DResponseProcessCookies.java69 private final Log log = LogFactory.getLog(getClass()); field in class:ResponseProcessCookies
88 this.log.info("Cookie store not available in HTTP context");
95 this.log.info("CookieSpec not available in HTTP context");
102 this.log.info("CookieOrigin not available in HTTP context");
131 if (this.log.isDebugEnabled()) {
133 this.log.debug("Cookie accepted: \""
138 if (this.log.isWarnEnabled()) {
140 this.log.warn("Cookie rejected: \""
147 if (this.log.isWarnEnabled()) {
148 this.log
[all...]
/external/lldb/source/API/
H A DSBCompileUnit.cpp77 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
91 if (log)
95 log->Printf ("SBCompileUnit(%p)::GetLineEntryAtIndex (idx=%u) => SBLineEntry(%p): '%s'",
112 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
131 if (log)
136 log->Printf ("SBCompileUnit(%p)::FindLineEntryIndex (start_idx=%u, line=%u, SBFileSpec(%p)) => NOT FOUND",
141 log->Printf ("SBCompileUnit(%p)::FindLineEntryIndex (start_idx=%u, line=%u, SBFileSpec(%p)) => %u",
190 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
200 if (log)
204 log
[all...]
H A DSBEvent.cpp84 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
91 if (log)
95 log->Printf ("SBEvent(%p)::GetType () => 0x%8.8x (%s)", get(), event_type, sstr.GetData());
97 log->Printf ("SBEvent(%p)::GetType () => 0x%8.8x", get(), event_type);
142 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API | LIBLLDB_LOG_VERBOSE));
143 if (log)
144 log->Printf ("SBEvent(%p)::BroadcasterMatchesRef (SBBroadcaster(%p): %s) => %i",
206 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
208 if (log)
209 log
[all...]
H A DSBTarget.cpp540 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
541 if (log)
543 log->Printf ("SBTarget(%p)::GetProcess () => SBProcess(%p)",
622 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
628 if (log)
630 log->Printf ("SBTarget(%p)::Launch (argv=%p, envp=%p, stdin=%s, stdout=%s, stderr=%s, working-dir=%s, launch_flags=0x%x, stop_at_entry=%i, &error (%p))...",
734 log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API);
735 if (log)
737 log->Printf ("SBTarget(%p)::Launch (...) => SBProcess(%p)",
747 Log *log(lldb_privat
[all...]
/external/lldb/source/Target/
H A DProcess.cpp14 #include "lldb/lldb-private-log.h"
669 Log *log,
688 if (log && (error.Fail() || log))
689 error.PutToLog(log, "posix_spawn_file_actions_addclose (action=%p, fd=%i)",
703 if (log && (error.Fail() || log))
704 error.PutToLog(log, "posix_spawn_file_actions_adddup2 (action=%p, fd=%i, dup_fd=%i)",
727 if (error.Fail() || log)
728 error.PutToLog(log,
667 AddPosixSpawnFileAction(posix_spawn_file_actions_t *file_actions, const FileAction *info, Log *log, Error& error) argument
[all...]
/external/lldb/source/Expression/
H A DClangASTSource.cpp172 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
177 if (log)
179 log->Printf(" CompleteTagDecl[%u] on (ASTContext*)%p Completing (TagDecl*)%p named %s",
185 log->Printf(" CTD[%u] Before:", current_id);
187 dumper.ToLog(log, " [CTD] ");
195 if (log)
196 log->Printf(" CTD[%u] Type could not be completed in the module in which it was first found.", current_id);
206 if (log && log->GetVerbose())
207 log
[all...]
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.hpp119 bool verifyTriangleGroupRasterization (const tcu::Surface& surface, const TriangleSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log, VerificationMode mode = VERIFICATIONMODE_STRICT);
130 bool verifyLineGroupRasterization (const tcu::Surface& surface, const LineSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
141 bool verifyPointGroupRasterization (const tcu::Surface& surface, const PointSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
152 bool verifyTriangleGroupInterpolation (const tcu::Surface& surface, const TriangleSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
163 bool verifyLineGroupInterpolation (const tcu::Surface& surface, const LineSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
/external/chromium_org/v8/tools/profviz/
H A Dprofviz.js85 "log" : log,
103 var other_elements = ["log",
138 this.log.value = "";
173 function log(text) { function
174 ui.log.value += text;
175 ui.log.scrollTop = ui.log.scrollHeight;
180 if (ui.log.value.length > 0 &&
181 ui.log
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DnetworkLogView.css31 .network-log-grid.data-grid {
51 .network-log-grid.data-grid table.data {
55 .network-log-grid .odd {
59 .network-log-grid.data-grid td {
66 .network-log-grid.data-grid.small td {
70 .network-log-grid.data-grid th {
76 .network-log-grid.data-grid .header-container {
80 .network-log-grid.data-grid .data-container {
84 .network-log-grid.data-grid.small .header-container {
88 .network-log
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLoggerTest.java79 * Reset the log manager.
245 Logger log = Logger.getLogger("testGetLogger_Normal_ANewLogger");
247 assertSame(log, Logger.getLogger("testGetLogger_Normal_ANewLogger"));
249 assertSame(log, LogManager.getLogManager().getLogger(
252 assertNull(log.getFilter());
253 assertEquals(0, log.getHandlers().length);
255 assertSame(Level.ALL, log.getLevel());
256 assertEquals("testGetLogger_Normal_ANewLogger", log.getName());
257 assertNull(log.getParent().getParent());
258 assertNull(log
3055 public void log(LogRecord record) { method in class:LoggerTest.MockParentLogger
[all...]

Completed in 4152 milliseconds

<<11121314151617181920>>