/development/samples/browseable/RuntimePermissions/src/common.activities/ |
SampleActivityBase.java | 19 import com.example.android.common.logger.Log; 44 /** Set up targets to receive log data */ 46 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 47 // Wraps Android's native log framework 49 Log.setLogNode(logWrapper); 51 Log.i(TAG, "Ready");
|
/development/samples/browseable/ScreenCapture/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/ScreenCapture/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/SlidingTabsColors/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/SlidingTabsColors/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/StorageClient/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/StorageClient/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/StorageProvider/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/StorageProvider/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.common/activities/ |
SampleActivityBase.java | 22 import com.example.android.common.logger.Log; 43 /** Set up targets to receive log data */ 45 // Using Log, front-end to the logging chain, emulates android.util.log method signatures. 46 // Wraps Android's native log framework 48 Log.setLogNode(logWrapper); 50 Log.i(TAG, "Ready");
|
/development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.common/logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/TextLinkify/src/com.example.android.common.logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/development/samples/browseable/TextSwitcher/src/com.example.android.common.logger/ |
LogWrapper.java | 18 import android.util.Log; 21 * Helper class which wraps Android's native Log utility in the Logger interface. This way 26 // For piping: The next node to receive Log data after this one has done its work. 44 * Prints data out to the console using Android's native log mechanism. 45 * @param priority Log level of the data being logged. Verbose, Error, etc. 46 * @param tag Tag for for the log data. Can be used to organize log statements. 53 // There actually are log methods that don't take a msg parameter. For now, 63 msg += "\n" + Log.getStackTraceString(tr); 66 // This is functionally identical to Log.x(tag, useMsg) [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
DebugLog.java | 19 import android.util.Log; 35 result = Log.v(tag, msg); 43 result = Log.v(tag, msg, tr); 51 result = Log.d(tag, msg); 59 result = Log.d(tag, msg, tr); 67 result = Log.i(tag, msg); 75 result = Log.i(tag, msg, tr); 83 result = Log.w(tag, msg); 91 result = Log.w(tag, msg, tr); 99 result = Log.w(tag, tr) [all...] |
/cts/tests/tests/location/src/android/location/cts/ |
TestLocationManager.java | 27 import android.util.Log; 52 Log.i(TAG, "Remove Location updates."); 63 Log.i(TAG, "Add Gnss Measurement Callback."); 68 Log.i(TAG, TestMeasurementUtil.REGISTRATION_ERROR_MESSAGE); 81 Log.i(TAG, "Add Gnss Measurement Callback."); 86 Log.i(TAG, TestMeasurementUtil.REGISTRATION_ERROR_MESSAGE); 98 Log.i(TAG, "Remove Gnss Measurement Callback."); 109 Log.i(TAG, "Request Location updates."); 134 Log.i(TAG, "Request Network Location updates."); 150 Log.i(TAG, "Request Passive Location updates.") [all...] |
/developers/build/prebuilts/gradle/AgendaData/Wearable/src/main/java/com/example/android/wearable/agendadata/ |
DeleteService.java | 24 import android.util.Log; 65 if (Log.isLoggable(TAG, Log.VERBOSE)) { 66 Log.v(TAG, "DeleteService.onHandleIntent=" + dataItemUri); 76 if (Log.isLoggable(TAG, Log.VERBOSE)) { 77 Log.v(TAG, "DeleteService.onHandleIntent: Failed to delete dataItem:" 87 Log.e(TAG, "Failed to delete data item: " + dataItemUri 108 if (Log.isLoggable(TAG, Log.DEBUG)) [all...] |
/developers/samples/android/deprecated/wearable/wear/AgendaData/Wearable/src/main/java/com/example/android/wearable/agendadata/ |
DeleteService.java | 24 import android.util.Log; 65 if (Log.isLoggable(TAG, Log.VERBOSE)) { 66 Log.v(TAG, "DeleteService.onHandleIntent=" + dataItemUri); 76 if (Log.isLoggable(TAG, Log.VERBOSE)) { 77 Log.v(TAG, "DeleteService.onHandleIntent: Failed to delete dataItem:" 87 Log.e(TAG, "Failed to delete data item: " + dataItemUri 108 if (Log.isLoggable(TAG, Log.DEBUG)) [all...] |