Searched defs:log (Results 276 - 300 of 397) sorted by relevance

<<111213141516

/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.java286 // Store log info
297 void starts(String log) { argument
304 buffer.append(log);
308 void ends(String log) { argument
311 this.buffers[this.depth].append(log);
816 LOG_WRITER.println("Database log information stored while processing"); //$NON-NLS-1$
896 PerformanceTestPlugin.log(e);
907 PerformanceTestPlugin.log(e1);
915 PerformanceTestPlugin.log(e);
920 PerformanceTestPlugin.log(
[all...]
/external/icu4c/test/intltest/
H A Dtzfmttst.cpp351 : log(tlog), data(ld), index(i) {}
381 log.dataerrln("TimeZone::createTimeZoneIDEnumeration failed - %s", u_errorName(status));
384 log.errln("TimeZone::createTimeZoneIDEnumeration failed: %s", u_errorName(status));
412 log.logln((UnicodeString) "Thread " + index + " is done.");
416 log.logln((UnicodeString) "\nThread " + index + ": Locale: " + UnicodeString(data.locales[locidx].getName()));
419 log.logln((UnicodeString) " Pattern: " + PATTERNS[patidx]);
427 log.errcheckln(status, (UnicodeString) "new SimpleDateFormat failed for pattern " +
515 log.errln((UnicodeString) "Parse failure for text=" + text + ", tzid=" + *tzid + ", locale=" + data.locales[locidx].getName()
529 log.errln((UnicodeString) "FAIL: " + msg);
531 log
560 IntlTest& log; member in class:TestTimeRoundTripThread
[all...]
H A Dintltest.cpp114 // 53*log(2)/log(10) = 15.95
455 IntlTest::gTest->log( message );
786 * Adds given string to the log if we are in verbose mode.
788 void IntlTest::log( const UnicodeString &message ) function in class:IntlTest
796 * Adds given string to the log if we are in verbose mode. Adds a new line to
814 * Unconditionally adds given string to the log.
822 * Unconditionally adds given string to the log. Adds a new line to
900 void IntlTest::log(const char *fmt, ...) function in class:IntlTest
910 log(UnicodeStrin
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java91 return (int) Math.pow(2, Math.ceil(Math.log(number) / Math.log(2)));
598 * Returns the log base E of a value.
599 * @param fValue The value to log.
600 * @return The log of fValue base E
601 * @see java.lang.Math#log(double)
603 public static float log(float fValue) { method in class:FastMath
604 return (float) Math.log(fValue);
608 * Returns the logarithm of value with given base, calculated as log(value)/log(bas
614 public static float log(float value, float base) { method in class:FastMath
[all...]
/external/libogg/src/
H A Dframing.c666 ogg_page log; local
672 log.header=page;
673 log.header_len=oy->headerbytes;
674 log.body=page+oy->headerbytes;
675 log.body_len=oy->bodybytes;
676 ogg_page_checksum_set(&log);
/external/qemu-pc-bios/bochs/
H A Dbochs.h273 // default log actions for all devices, declared and initialized
316 class logfunctions *log; member in class:iofunctions
/external/v8/src/
H A Dpreparser.cc56 i::LanguageMode mode, i::ParserRecorder* log) {
57 log_ = log;
55 PreParseLazyFunction( i::LanguageMode mode, i::ParserRecorder* log) argument
H A Dpreparser.h116 i::ParserRecorder* log,
122 log_(log),
141 i::ParserRecorder* log,
147 return PreParser(scanner, log, stack_limit, allow_lazy,
160 i::ParserRecorder* log);
115 PreParser(i::Scanner* scanner, i::ParserRecorder* log, uintptr_t stack_limit, bool allow_lazy, bool allow_natives_syntax, bool allow_modules) argument
140 PreParseProgram(i::Scanner* scanner, i::ParserRecorder* log, int flags, uintptr_t stack_limit) argument
/external/v8/test/cctest/
H A Dtest-parsing.cc261 i::CompleteParserRecorder log; local
268 &log,
272 i::ScriptDataImpl data(log.ExtractData());
297 i::CompleteParserRecorder log; local
304 &log,
308 i::ScriptDataImpl data(log.ExtractData());
399 i::CompleteParserRecorder log; local
406 &log,
1048 i::CompleteParserRecorder log; local
1055 &scanner, &log, flag
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar ... IStatus status org.eclipse.osgi.framework.log.FrameworkLog log private static org.eclipse.osgi ...
H A Dorg.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.logging_1.0.4.v201005080501.jar ... .txt about_files/NOTICE.txt org/apache/commons/logging/Log.class Log.java package org.apache. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
H A Drepository-tools-ant.jar ... IQuery iuQuery java.util.Iterator queryResult protected void log (org.eclipse.core.runtime.IStatus) org ...
/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
3048 public void log(LogRecord record) { method in class:LoggerTest.MockParentLogger
[all...]
/external/bison/
H A Dmaint.mk1364 define emit-commit-log
1444 $(AM_V_at)msg=$$($(emit-commit-log)) || exit 1; \
/external/chromium/net/http/
H A Dhttp_cache_unittest.cc756 const net::BoundNetLog& log) {
758 cache, trans_info, MockHttpRequest(trans_info), NULL, log);
1076 net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded);
1077 log.SetLogLevel(net::NetLog::LOG_BASIC);
1081 log.bound());
1086 log.GetEntries(&entries);
1205 net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded);
1208 log.SetLogLevel(net::NetLog::LOG_BASIC);
1212 log.bound());
1216 log
754 RunTransactionTestWithLog(net::HttpCache* cache, const MockTransaction& trans_info, const net::BoundNetLog& log) argument
[all...]
/external/chromium/net/spdy/
H A Dspdy_network_transaction_unittest.cc71 const BoundNetLog& log,
77 log_(log),
437 BoundNetLog log; local
441 scoped_refptr<SpdySession> spdy_session(pool->Get(pair, log));
654 BoundNetLog log; local
679 out.rv = trans1->Start(&httpreq1, &callback1, log);
681 out.rv = trans2->Start(&httpreq2, &callback2, log);
683 out.rv = trans3->Start(&httpreq3, &callback3, log);
742 BoundNetLog log; local
762 out.rv = trans1->Start(&httpreq1, &callback1, log);
70 NormalSpdyTransactionHelper(const HttpRequestInfo& request, const BoundNetLog& log, SpdyNetworkTransactionTestTypes test_type) argument
829 BoundNetLog log; local
952 BoundNetLog log; local
1092 BoundNetLog log; local
1229 BoundNetLog log; local
1350 BoundNetLog log; local
4436 BoundNetLog log; local
4438 log, GetParam()); local
[all...]
/external/chromium_org/net/socket/
H A Dclient_socket_pool_base_unittest.cc765 CapturingNetLog log; local
779 &log);
785 log.GetEntries(&entries);
809 CapturingBoundNetLog log; local
818 log.bound()));
827 log.GetEntries(&entries);
846 CapturingBoundNetLog log; local
861 log.bound()));
868 log.GetEntries(&entries);
1682 CapturingBoundNetLog log; local
1724 CapturingBoundNetLog log; local
2209 CapturingBoundNetLog log; local
2289 CapturingBoundNetLog log; local
2368 CapturingBoundNetLog log; local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dintltest.cpp114 // 53*log(2)/log(10) = 15.95
440 IntlTest::gTest->log( message );
760 * Adds given string to the log if we are in verbose mode.
762 void IntlTest::log( const UnicodeString &message ) function in class:IntlTest
770 * Adds given string to the log if we are in verbose mode. Adds a new line to
788 * Unconditionally adds given string to the log.
796 * Unconditionally adds given string to the log. Adds a new line to
874 void IntlTest::log(const char *fmt, ...) function in class:IntlTest
884 log(UnicodeStrin
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc3983 ScopedMemoryLog log; local
3985 errors = log.GetMessages(ERROR);
4256 ScopedMemoryLog log; local
4258 errors = log.GetMessages(ERROR);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAAHairLinePathRenderer.cpp289 int log = get_float_exp(dsqd/(gSubdivTol*gSubdivTol)) + 1; local
290 log = GrMin(GrMax(0, log), kMaxSub);
291 return log;
293 SkScalar log = SkScalarLog(
297 log = SkScalarMul(log, conv);
298 return GrMin(GrMax(0, SkScalarCeilToInt(log)),kMaxSub);
/external/chromium_org/v8/src/
H A Dpreparser.h121 i::ParserRecorder* log,
124 log_(log),
188 i::ParserRecorder* log);
120 PreParser(i::Scanner* scanner, i::ParserRecorder* log, uintptr_t stack_limit) argument
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h330 friend const mpreal log (const mpreal& v, mp_rnd_t rnd_mode = mpreal::default_rnd);
684 // bits = ceil(digits*log[2](10))
685 // digits = floor(bits*log[10](2))
1413 // bits = ceil(digits*log[2](10))
1414 // digits = floor(bits*log[10](2))
1726 inline const mpreal log (const mpreal& v, mp_rnd_t rnd_mode) function in namespace:mpfr
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DOGLESShaderRenderer.java111 logger.log(Level.INFO, "use_VBO [{0}] -> [{1}]", new Object[]{useVBO, !value});
116 logger.log(Level.INFO, "verboseLogging [{0}] -> [{1}]", new Object[]{verboseLogging, value});
140 private boolean log(String message) { method in class:OGLESShaderRenderer
155 logger.log(Level.INFO, "Vendor: {0}", GLES20.glGetString(GLES20.GL_VENDOR));
156 logger.log(Level.INFO, "Renderer: {0}", GLES20.glGetString(GLES20.GL_RENDERER));
157 logger.log(Level.INFO, "Version: {0}", GLES20.glGetString(GLES20.GL_VERSION));
162 logger.log(Level.INFO, "GLES20.Shading Language Version: {0}", versionStr);
202 logger.log(Level.INFO, "VTF Units: {0}", vertexTextureUnits);
209 logger.log(Level.INFO, "Texture Units: {0}", fragTextureUnits);
213 logger.log(Leve
[all...]
/external/libvpx/libvpx/tools/
H A Dcpplint.py81 import math # for log namespace
714 error_level = int(math.log(self.lines_in_function / base_trigger, 2))
854 We log where the error was found, and also our confidence in the error,

Completed in 1022 milliseconds

<<111213141516