Home
last modified time | relevance | path

Searched refs:Log (Results 1 – 25 of 780) sorted by relevance

12345678910>>...32

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DLogTest.java3 import android.util.Log;
22 Log.d("tag", "msg"); in d_shouldLogAppropriately()
24 assertLogged(Log.DEBUG, "tag", "msg", null); in d_shouldLogAppropriately()
31 Log.d("tag", "msg", throwable); in d_shouldLogAppropriately_withThrowable()
33 assertLogged(Log.DEBUG, "tag", "msg", throwable); in d_shouldLogAppropriately_withThrowable()
38 Log.e("tag", "msg"); in e_shouldLogAppropriately()
40 assertLogged(Log.ERROR, "tag", "msg", null); in e_shouldLogAppropriately()
47 Log.e("tag", "msg", throwable); in e_shouldLogAppropriately_withThrowable()
49 assertLogged(Log.ERROR, "tag", "msg", throwable); in e_shouldLogAppropriately_withThrowable()
54 Log.i("tag", "msg"); in i_shouldLogAppropriately()
[all …]
/external/libchrome/base/
Dlogging_unittest.cc52 MOCK_METHOD0(Log, const char*());
57 EXPECT_CALL(mock_log_source, Log()).Times(DEBUG_MODE ? 16 : 8). in TEST_F()
69 LOG(INFO) << mock_log_source.Log(); in TEST_F()
70 LOG_IF(INFO, true) << mock_log_source.Log(); in TEST_F()
71 PLOG(INFO) << mock_log_source.Log(); in TEST_F()
72 PLOG_IF(INFO, true) << mock_log_source.Log(); in TEST_F()
73 VLOG(0) << mock_log_source.Log(); in TEST_F()
74 VLOG_IF(0, true) << mock_log_source.Log(); in TEST_F()
75 VPLOG(0) << mock_log_source.Log(); in TEST_F()
76 VPLOG_IF(0, true) << mock_log_source.Log(); in TEST_F()
[all …]
/external/opencv3/modules/java/generator/src/java/
Dandroid+AsyncServiceHelper.java16 import android.util.Log;
75 Log.d(TAG, "Request new service installation"); in InstallService()
83 Log.d(TAG, "Trying to install OpenCV Manager via Google Play"); in InstallService()
89 Log.d(TAG, "Package installation started"); in InstallService()
93 Log.d(TAG, "OpenCV package was not installed!"); in InstallService()
95 Log.d(TAG, "Init finished with status " + Status); in InstallService()
96 Log.d(TAG, "Unbind from service"); in InstallService()
97 Log.d(TAG, "Calling using callback"); in InstallService()
104 Log.d(TAG, "OpenCV library installation was canceled"); in InstallService()
106 Log.d(TAG, "Init finished with status " + Status); in InstallService()
[all …]
Dandroid+StaticHelper.java6 import android.util.Log;
25 Log.d(TAG, "Trying to get library list"); in initOpenCV()
34 Log.e(TAG, "OpenCV error: Cannot load info library for OpenCV"); in initOpenCV()
37 Log.d(TAG, "Library list: \"" + libs + "\""); in initOpenCV()
38 Log.d(TAG, "First attempt to load libs"); in initOpenCV()
41 Log.d(TAG, "First attempt to load libs is OK"); in initOpenCV()
44 Log.i(TAG, str); in initOpenCV()
50 Log.d(TAG, "First attempt to load libs fails"); in initOpenCV()
61 Log.d(TAG, "Trying to load library " + Name); in loadLibrary()
65 Log.d(TAG, "Library " + Name + " loaded"); in loadLibrary()
[all …]
Dandroid+JavaCameraView.java12 import android.util.Log;
68 Log.d(TAG, "Initialize java camera"); in initializeCamera()
74 Log.d(TAG, "Trying to open camera with old open()"); in initializeCamera()
79Log.e(TAG, "Camera is not available (in use or does not exist): " + e.getLocalizedMessage()); in initializeCamera()
85Log.d(TAG, "Trying to open camera with new open(" + Integer.valueOf(camIdx) + ")"); in initializeCamera()
90Log.e(TAG, "Camera #" + camIdx + "failed to open: " + e.getLocalizedMessage()); in initializeCamera()
99 Log.i(TAG, "Trying to open back camera"); in initializeCamera()
109 Log.i(TAG, "Trying to open front camera"); in initializeCamera()
120 Log.e(TAG, "Back camera not found!"); in initializeCamera()
122 Log.e(TAG, "Front camera not found!"); in initializeCamera()
[all …]
/external/libweave/third_party/chromium/base/
Dlogging_unittest.cc53 MOCK_METHOD0(Log, const char*());
58 EXPECT_CALL(mock_log_source, Log()). in TEST_F()
70 LOG(INFO) << mock_log_source.Log(); in TEST_F()
71 LOG_IF(INFO, true) << mock_log_source.Log(); in TEST_F()
72 VLOG(0) << mock_log_source.Log(); in TEST_F()
73 VLOG_IF(0, true) << mock_log_source.Log(); in TEST_F()
75 DLOG(INFO) << mock_log_source.Log(); in TEST_F()
76 DLOG_IF(INFO, true) << mock_log_source.Log(); in TEST_F()
77 DVLOG(0) << mock_log_source.Log(); in TEST_F()
78 DVLOG_IF(0, true) << mock_log_source.Log(); in TEST_F()
[all …]
/external/v8/src/
Dlog-utils.cc18 const char* const Log::kLogToTemporaryFile = "&";
19 const char* const Log::kLogToConsole = "-";
22 Log::Log(Logger* logger) in Log() function in v8::internal::Log
30 void Log::Initialize(const char* log_file_name) { in Initialize()
48 if (Log::InitLogAtStart()) { in Initialize()
58 Log::MessageBuilder msg(this); in Initialize()
68 void Log::OpenStdout() { in OpenStdout()
74 void Log::OpenTemporaryFile() { in OpenTemporaryFile()
80 void Log::OpenFile(const char* name) { in OpenFile()
86 FILE* Log::Close() { in Close()
[all …]
/external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
DAndroidLoggerAdapter.java27 import android.util.Log;
99 return isLoggable(Log.VERBOSE); in isTraceEnabled()
109 log(Log.VERBOSE, msg, null); in trace()
127 formatAndLog(Log.VERBOSE, format, arg); in trace()
147 formatAndLog(Log.VERBOSE, format, arg1, arg2); in trace()
165 formatAndLog(Log.VERBOSE, format, argArray); in trace()
177 log(Log.VERBOSE, msg, t); in trace()
186 return isLoggable(Log.DEBUG); in isDebugEnabled()
196 log(Log.DEBUG, msg, null); in debug()
213 formatAndLog(Log.DEBUG, format, arg); in debug()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DImageHeaderParser.java9 import android.util.Log;
154 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment()
155 Log.d(TAG, "Unknown segmentId=" + segmentId); in getExifSegment()
165 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment()
166 Log.d(TAG, "Found MARKER_EOI in exif segment"); in getExifSegment()
176 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment()
177 Log.d(TAG, "Unable to skip enough data for type=" + segmentType); in getExifSegment()
185 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment()
186Log.d(TAG, "Unable to read segment data for type=" + segmentType + " length=" + segmentLength); in getExifSegment()
206 if (Log.isLoggable(TAG, Log.DEBUG)) { in parseExifSegment()
[all …]
DDownsampler.java7 import android.util.Log;
118 if (Log.isLoggable(TAG, Log.WARN)) { in decode()
119 Log.w(TAG, "Cannot determine the image orientation from header", e); in decode()
125 if (Log.isLoggable(TAG, Log.WARN)) { in decode()
126 Log.w(TAG, "Cannot reset the input stream", e); in decode()
218 if (Log.isLoggable(TAG, Log.WARN)) { in shouldUsePool()
219 Log.w(TAG, "Cannot determine the image type from header", e); in shouldUsePool()
225 if (Log.isLoggable(TAG, Log.WARN)) { in shouldUsePool()
226 Log.w(TAG, "Cannot reset the input stream", e); in shouldUsePool()
245 if (Log.isLoggable(TAG, Log.WARN)) { in getConfig()
[all …]
/external/droiddriver/src/io/appium/droiddriver/util/
DLogs.java20 import android.util.Log;
29 call(Log.DEBUG, self, method, args); in call()
33 if (Log.isLoggable(TAG, priority)) { in call()
34 Log.d( in call()
42 if (Log.isLoggable(TAG, priority)) { in log()
43 Log.println(priority, TAG, msg); in log()
48 if (Log.isLoggable(TAG, priority)) { in log()
49 Log.println(priority, TAG, Log.getStackTraceString(e)); in log()
54 if (Log.isLoggable(TAG, priority)) { in log()
55 Log.println(priority, TAG, msg + '\n' + Log.getStackTraceString(e)); in log()
[all …]
/external/sl4a/Utils/src/com/googlecode/android_scripting/
DLog.java27 public class Log { class
28 private Log() { in Log() method in Log
45 android.util.Log.v(getTag(), String.format("%s %s", contentTitle, message)); in notify()
64 android.util.Log.v(getTag(), String.format("%s %s", title, message)); in showDialog()
86 android.util.Log.v(getTag(), message); in v()
90 android.util.Log.v(getTag(), message, e); in v()
95 android.util.Log.v(getTag(), message); in v()
100 android.util.Log.v(getTag(), message, e); in v()
104 android.util.Log.e(getTag(), "Error", e); in e()
108 android.util.Log.e(getTag(), message); in e()
[all …]
DSimpleServer.java107 Log.v("Server thread " + getId() + " started."); in run()
110 Log.d("Handling RPC connection in "+getId()); in run()
113 Log.d("Handling Non-RPC connection in "+getId()); in run()
118 Log.e("Server error.", e); in run()
124 Log.v("Server thread " + getId() + " stopped."); in run()
133 Log.e(e.getMessage(), e); in close()
155 Log.d("local address " + address); in getPrivateInetAddress()
205 Log.e("Port " + port + " already in use."); in startLocal()
214 Log.e("Failed to start server.", e); in startLocal()
236 Log.e("Failed to start server.", e); in startPublic()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DInCallServiceImpl.java36 import com.googlecode.android_scripting.Log;
65 Log.d("CallListener:onCallAdded()"); in onCallAdded()
74 Log.d("CallListener:onCallRemoved()"); in onCallRemoved()
187 Log.d("CallCallback:onStateChanged()"); in onStateChanged()
198 Log.d("CallCallback:onParentChanged()"); in onParentChanged()
209 Log.d("CallCallback:onChildrenChanged()"); in onChildrenChanged()
226 Log.d("CallCallback:onDetailsChanged()"); in onDetailsChanged()
238 Log.d("CallCallback:onCannedTextResponsesLoaded()"); in onCannedTextResponsesLoaded()
249 Log.d("CallCallback:onPostDialWait()"); in onPostDialWait()
267 Log.d("CallCallback:onVideoCallChanged()"); in onVideoCallChanged()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
DLruBitmapPool.java8 import android.util.Log;
66 if (Log.isLoggable(TAG, Log.VERBOSE)) { in put()
67 Log.v(TAG, "Reject bitmap from pool=" + strategy.logBitmap(bitmap) + " is mutable=" in put()
80 if (Log.isLoggable(TAG, Log.VERBOSE)) { in put()
81 Log.v(TAG, "Put bitmap in pool=" + strategy.logBitmap(bitmap)); in put()
113 if (Log.isLoggable(TAG, Log.DEBUG)) { in getDirty()
114 Log.d(TAG, "Missing bitmap=" + strategy.logBitmap(width, height, config)); in getDirty()
125 if (Log.isLoggable(TAG, Log.VERBOSE)) { in getDirty()
126 Log.v(TAG, "Get bitmap=" + strategy.logBitmap(width, height, config)); in getDirty()
155 if (Log.isLoggable(TAG, Log.DEBUG)) { in trimToSize()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DDecodeJob.java3 import android.util.Log;
85 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeResultFromCache()
90 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeResultFromCache()
109 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeSourceFromCache()
139 if (Log.isLoggable(TAG, Log.VERBOSE)) { in transformEncodeAndTranscode()
147 if (Log.isLoggable(TAG, Log.VERBOSE)) { in transformEncodeAndTranscode()
160 if (Log.isLoggable(TAG, Log.VERBOSE)) { in writeTransformedToCache()
170 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeSource()
190 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeFromSourceData()
201 if (Log.isLoggable(TAG, Log.VERBOSE)) { in cacheAndDecodeSourceData()
[all …]
/external/slf4j/slf4j-migrator/jcl/
Djclcontent.java5 import org.apache.commons.logging.Log;
8 Log l = LogFactory.getLog(MyClass.class);
9 Log mylog=LogFactory.getLog(MyClass.class);
10 Log mylog1 = LogFactory.getLog(MyClass.class);
11 Log mylog2 = LogFactory.getLog(MyClass.class);
13 Log log3=LogFactory.getFactory().getInstance(MyClass.class);
14 Log mylog4 = LogFactory.getFactory().getInstance(MyClass.class);
15 Log mylog5 = LogFactory.getLog(MyClass.class);
17 Log myLog6;
/external/webrtc/webrtc/modules/video_coding/codecs/tools/
Dvideo_quality_measurement.cc132 int Log(const char* format, ...) { in Log() function
305 Log("Calculating SSIM...\n"); in CalculateSsimVideoMetrics()
309 Log(" Average: %3.2f\n", result->average); in CalculateSsimVideoMetrics()
310 Log(" Min : %3.2f (frame %d)\n", result->min, result->min_frame_number); in CalculateSsimVideoMetrics()
311 Log(" Max : %3.2f (frame %d)\n", result->max, result->max_frame_number); in CalculateSsimVideoMetrics()
316 Log("Calculating PSNR...\n"); in CalculatePsnrVideoMetrics()
320 Log(" Average: %3.2f\n", result->average); in CalculatePsnrVideoMetrics()
321 Log(" Min : %3.2f (frame %d)\n", result->min, result->min_frame_number); in CalculatePsnrVideoMetrics()
322 Log(" Max : %3.2f (frame %d)\n", result->max, result->max_frame_number); in CalculatePsnrVideoMetrics()
326 Log("Quality test with parameters:\n"); in PrintConfigurationSummary()
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DDebugLog.java19 import android.util.Log;
35 result = Log.v(tag, msg); in v()
43 result = Log.v(tag, msg, tr); in v()
51 result = Log.d(tag, msg); in d()
59 result = Log.d(tag, msg, tr); in d()
67 result = Log.i(tag, msg); in i()
75 result = Log.i(tag, msg, tr); in i()
83 result = Log.w(tag, msg); in w()
91 result = Log.w(tag, msg, tr); in w()
99 result = Log.w(tag, tr); in w()
[all …]
/external/parameter-framework/upstream/test/functional-tests/include/
DStoreLogger.hpp49 struct Log struct in parameterFramework::StoreLogger
58 bool operator==(const Log &other) const in operator ==() argument
63 using Logs = std::vector<Log>;
67 logs.push_back({Log::Level::warning, strLog}); in warning()
69 void info(const std::string &strLog) override { logs.push_back({Log::Level::info, strLog}); } in info()
73 const Logs filter(Log::Level level) const in filter()
75 return filter([&level](const Log &log) { return log.level == level; }); in filter()
81 [&pattern](const Log &log) { return log.msg.find(pattern) == std::string::npos; }); in match()
97 std::ostream &operator<<(std::ostream &os, const StoreLogger::Log::Level &level) in operator <<()
100 using L = StoreLogger::Log::Level; in operator <<()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowLog.java3 import android.util.Log;
11 @Implements(Log.class)
23 addLog(Log.ERROR, tag, msg, throwable); in e()
33 addLog(Log.DEBUG, tag, msg, throwable); in d()
43 addLog(Log.INFO, tag, msg, throwable); in i()
53 addLog(Log.VERBOSE, tag, msg, throwable); in v()
69 addLog(Log.WARN, tag, msg, throwable); in w()
79 addLog(Log.ASSERT, tag, msg, throwable); in wtf()
84 return stream != null || level >= Log.INFO; in isLoggable()
98 case Log.ASSERT: c = 'A'; break; in logToStream()
[all …]
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java16 import android.util.Log;
266 Log.e(TAG, "Creating peer connection without initializing factory."); in createPeerConnection()
301 Log.d(TAG, "Create peer connection factory. Use video: " + in createPeerConnectionFactoryInternal()
317 Log.d(TAG, "Pereferred video codec: " + preferredVideoCodec); in createPeerConnectionFactoryInternal()
328 Log.d(TAG, "Disable OpenSL ES audio even if device supports it"); in createPeerConnectionFactoryInternal()
331 Log.d(TAG, "Allow OpenSL ES audio if device supports it"); in createPeerConnectionFactoryInternal()
342 Log.d(TAG, "Factory networkIgnoreMask option: " + options.networkIgnoreMask); in createPeerConnectionFactoryInternal()
345 Log.d(TAG, "Peer connection factory created."); in createPeerConnectionFactoryInternal()
363 Log.w(TAG, "No camera on device. Switch to audio only call."); in createMediaConstraintsInternal()
410 Log.d(TAG, "Disabling audio processing"); in createMediaConstraintsInternal()
[all …]
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
DLog.java26 public class Log { class
28 …private static final boolean LOG_DEBUG = android.util.Log.isLoggable("dEQP", android.util.Log.DEB…
35 android.util.Log.d(tag, msg); in d()
40 android.util.Log.i(tag, msg); in i()
45 android.util.Log.w(tag, msg); in w()
50 android.util.Log.w(tag, msg, tr); in w()
55 android.util.Log.e(tag, msg); in e()
60 android.util.Log.e(tag, msg, tr); in e()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothConnectionFacade.java41 import com.googlecode.android_scripting.Log;
148 Log.d("Found device " + device.getAliasName() + " for connection."); in onReceive()
155 Log.d("Device " + mDeviceID + " not discovered."); in onReceive()
160 Log.d("Initiated ACL connection: " + status); in onReceive()
164 Log.d("Initiating connections."); in onReceive()
197 Log.d("Found device " + device.getAliasName() + " for connection."); in onReceive()
204 Log.d("Device " + mDeviceID + " was not discovered."); in onReceive()
210 Log.d("Bond with " + mDevice.getAliasName()); in onReceive()
213 Log.d("Bonding started."); in onReceive()
215 Log.e("Failed to bond with " + mDevice.getAliasName()); in onReceive()
[all …]
/external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
DPeerConnectionClientTest.java34 import android.util.Log;
95 Log.d(TAG, rendererName + " render frame: " in renderFrame()
98 Log.d(TAG, "Render frame: " + frame.rotatedWidth() + " x " + frame.rotatedHeight()); in renderFrame()
119 Log.d(TAG, "LocalSDP type: " + sdp.type); in onLocalDescription()
129 Log.d(TAG, "IceCandidate #" + iceCandidates.size() + " : " + candidate.toString()); in onIceCandidate()
147 Log.d(TAG, "ICE Connected"); in onIceConnected()
156 Log.d(TAG, "ICE Disconnected"); in onIceDisconnected()
165 Log.d(TAG, "PeerConnection closed"); in onPeerConnectionClosed()
209 Log.e(TAG, "ICE connection failure"); in waitForIceConnected()
287 Log.d(TAG, "testSetLocalOfferMakesVideoFlowLocally"); in testSetLocalOfferMakesVideoFlowLocally()
[all …]

12345678910>>...32