HomeSort by relevance Sort by last modified time
    Searched refs:tag (Results 151 - 175 of 7965) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/main/java/libcore/io/
DropBox.java 49 public void addData(String tag, byte[] data, int flags);
50 public void addText(String tag, String data);
58 public void addData(String tag, byte[] data, int flags) {
59 System.out.println(tag + ": " + Base64.getEncoder().encodeToString(data));
62 public void addText(String tag, String data) {
63 System.out.println(tag + ": " + data);
67 public static void addData(String tag, byte[] data, int flags) {
68 getReporter().addData(tag, data, flags);
71 public static void addText(String tag, String data) {
72 getReporter().addText(tag, data)
    [all...]
  /system/core/libcutils/include/cutils/
klog.h 40 #define KLOG_ERROR(tag,x...) klog_write(KLOG_ERROR_LEVEL, "<3>" tag ": " x)
41 #define KLOG_WARNING(tag,x...) klog_write(KLOG_WARNING_LEVEL, "<4>" tag ": " x)
42 #define KLOG_NOTICE(tag,x...) klog_write(KLOG_NOTICE_LEVEL, "<5>" tag ": " x)
43 #define KLOG_INFO(tag,x...) klog_write(KLOG_INFO_LEVEL, "<6>" tag ": " x)
44 #define KLOG_DEBUG(tag,x...) klog_write(KLOG_DEBUG_LEVEL, "<7>" tag ": " x
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERApplicationSpecificParser.java 11 private final int tag; field in class:BERApplicationSpecificParser
14 BERApplicationSpecificParser(int tag, ASN1StreamParser parser)
16 this.tag = tag;
40 return new BERApplicationSpecific(tag, parser.readVector());
  /system/core/liblog/include/log/
log_safetynet.h 31 #define android_errorWriteLog(tag, subTag) \
32 __android_log_error_write(tag, subTag, -1, NULL, 0)
34 #define android_errorWriteWithInfoLog(tag, subTag, uid, data, dataLen) \
35 __android_log_error_write(tag, subTag, uid, data, dataLen)
37 int __android_log_error_write(int tag, const char* subTag, int32_t uid,
log_main.h 60 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
62 #define android_printLog(prio, tag, ...) \
63 __android_log_print(prio, tag, __VA_ARGS__)
65 #define android_vprintLog(prio, cond, tag, ...) \
66 __android_log_vprint(prio, tag, __VA_ARGS__)
72 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__)
79 #define LOG_PRI_VA(priority, tag, fmt, args) \
80 android_vprintLog(priority, NULL, tag, fmt, args
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
Log.java 21 * All Camera logging using this class will use this tag prefix.
26 * adb shell setprop log.tag.CAM2PORT_ VERBOSE
27 * adb shell setprop log.tag.CAM2PORT_ ""
30 private static final Log.Tag TAG = new Log.Tag("Log");
33 * This class restricts the length of the log tag to be less than the
34 * framework limit and also prepends the common tag prefix defined by
37 public static final class Tag {
44 public Tag(String tag)
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/
Handle.java 49 final int tag; field in class:Handle
70 * @param tag
88 public Handle(int tag, String owner, String name, String desc) {
89 this.tag = tag;
106 return tag;
147 return tag == h.tag && owner.equals(h.owner) && name.equals(h.name)
153 return tag + owner.hashCode() * name.hashCode() * desc.hashCode();
161 * owner '.' name desc ' ' '(' tag ')'
    [all...]
  /external/clang/lib/Analysis/
ProgramPoint.cpp 23 const ProgramPointTag *tag){
28 return PreStmt(S, LC, tag);
30 return PostStmt(S, LC, tag);
32 return PreLoad(S, LC, tag);
34 return PostLoad(S, LC, tag);
36 return PreStore(S, LC, tag);
38 return PostLValue(S, LC, tag);
40 return PostStmtPurgeDeadSymbols(S, LC, tag);
42 return PreStmtPurgeDeadSymbols(S, LC, tag);
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
UnknownFieldData.java 44 final int tag; field in class:UnknownFieldData
51 UnknownFieldData(int tag, byte[] bytes) {
52 this.tag = tag;
58 size += CodedOutputByteBufferNano.computeRawVarint32Size(tag);
64 output.writeRawVarint32(tag);
78 return tag == other.tag && Arrays.equals(bytes, other.bytes);
84 result = 31 * result + tag;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLog.java 17 public static void e(String tag, String msg) {
18 e(tag, msg, null);
22 public static void e(String tag, String msg, Throwable throwable) {
23 addLog(Log.ERROR, tag, msg, throwable);
27 public static void d(String tag, String msg) {
28 d(tag, msg, null);
32 public static void d(String tag, String msg, Throwable throwable) {
33 addLog(Log.DEBUG, tag, msg, throwable);
37 public static void i(String tag, String msg) {
38 i(tag, msg, null)
122 public final String tag; field in class:ShadowLog.LogItem
    [all...]
  /frameworks/multidex/library/test/src/android/util/
Log.java 63 * @param tag Used to identify the source of a log message. It usually identifies
67 public static int v(String tag, String msg) {
68 return println(LOG_ID_MAIN, VERBOSE, tag, msg);
73 * @param tag Used to identify the source of a log message. It usually identifies
78 public static int v(String tag, String msg, Throwable tr) {
79 return println(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
84 * @param tag Used to identify the source of a log message. It usually identifies
88 public static int d(String tag, String msg) {
89 return println(LOG_ID_MAIN, DEBUG, tag, msg);
94 * @param tag Used to identify the source of a log message. It usually identifie
    [all...]
  /hardware/libhardware/modules/camera/3_0/
Metadata.h 34 int addUInt8(uint32_t tag, int count, const uint8_t *data);
35 int add1UInt8(uint32_t tag, const uint8_t data);
36 int addInt32(uint32_t tag, int count, const int32_t *data);
37 int addFloat(uint32_t tag, int count, const float *data);
38 int addInt64(uint32_t tag, int count, const int64_t *data);
39 int addDouble(uint32_t tag, int count, const double *data);
40 int addRational(uint32_t tag, int count,
52 // Validate the tag, type and count for a metadata entry
53 bool validate(uint32_t tag, int tag_type, int count);
54 // Add a verified tag with dat
    [all...]
  /hardware/libhardware/modules/usbcamera/
Metadata.h 34 int addUInt8(uint32_t tag, int count, const uint8_t *data);
35 int add1UInt8(uint32_t tag, const uint8_t data);
36 int addInt32(uint32_t tag, int count, const int32_t *data);
37 int addFloat(uint32_t tag, int count, const float *data);
38 int addInt64(uint32_t tag, int count, const int64_t *data);
39 int addDouble(uint32_t tag, int count, const double *data);
40 int addRational(uint32_t tag, int count,
52 // Validate the tag, type and count for a metadata entry
53 bool validate(uint32_t tag, int tag_type, int count);
54 // Add a verified tag with dat
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/log/
L.java 27 public L(String tag) {
28 mTag = tag;
47 public static L logger(String tag) {
48 return new L(tag);
51 public static void v(String tag, String msg) {
52 if (Log.isLoggable(tag, Log.VERBOSE)) {
53 Log.v(tag, msg);
57 public static void d(String tag, String msg) {
58 if (Log.isLoggable(tag, Log.DEBUG)) {
59 Log.d(tag, msg)
    [all...]
  /external/ImageMagick/MagickCore/
exception-private.h 29 #define ThrowBinaryException(severity,tag,context) \
33 tag == (const char *) NULL ? "unknown" : tag,"`%s'",context); \
36 #define ThrowFatalException(severity,tag) \
47 tag == (const char *) NULL ? "unknown" : tag,"`%s'",fatal_message); \
54 #define ThrowFileException(exception,severity,tag,context) \
61 tag == (const char *) NULL ? "unknown" : tag,"'%s': %s",context, \
65 #define ThrowImageException(severity,tag) \
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
CollectionStartEvent.java 24 private final String tag; field in class:CollectionStartEvent
25 // The implicit flag of a collection start event indicates if the tag may be
31 public CollectionStartEvent(String anchor, String tag, boolean implicit, Mark startMark,
34 this.tag = tag;
40 * Tag of this collection.
42 * @return The tag of this collection, or <code>null</code> if no explicit
43 * tag is available.
46 return this.tag;
50 * <code>true</code> if the tag can be omitted while this collection i
    [all...]
  /frameworks/base/core/java/android/security/keymaster/
KeymasterDateArgument.java 28 public KeymasterDateArgument(int tag, Date date) {
29 super(tag);
30 switch (KeymasterDefs.getTagType(tag)) {
34 throw new IllegalArgumentException("Bad date tag " + tag);
39 public KeymasterDateArgument(int tag, Parcel in) {
40 super(tag);
KeymasterIntArgument.java 27 public KeymasterIntArgument(int tag, int value) {
28 super(tag);
29 switch (KeymasterDefs.getTagType(tag)) {
36 throw new IllegalArgumentException("Bad int tag " + tag);
41 public KeymasterIntArgument(int tag, Parcel in) {
42 super(tag);
KeymasterArgument.java 31 public final int tag; field in class:KeymasterArgument
38 final int tag = in.readInt();
39 switch (KeymasterDefs.getTagType(tag)) {
44 return new KeymasterIntArgument(tag, in);
47 return new KeymasterLongArgument(tag, in);
49 return new KeymasterDateArgument(tag, in);
52 return new KeymasterBlobArgument(tag, in);
54 return new KeymasterBooleanArgument(tag, in);
56 throw new ParcelFormatException("Bad tag: " + tag + " at " + pos)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/debug/
Log.java 25 * All Camera logging using this class will use this tag prefix.
30 * adb shell setprop log.tag.CAM_ VERBOSE
31 * adb shell setprop log.tag.CAM_ ""
34 private static final Log.Tag TAG = new Log.Tag("Log");
39 * This class restricts the length of the log tag to be less than the
40 * framework limit and also prepends the common tag prefix defined by
43 public static final class Tag {
50 public Tag(String tag)
    [all...]
  /frameworks/base/core/java/android/util/
Slog.java 27 public static int v(String tag, String msg) {
28 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
31 public static int v(String tag, String msg, Throwable tr) {
32 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
36 public static int d(String tag, String msg) {
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg);
40 public static int d(String tag, String msg, Throwable tr) {
41 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag,
45 public static int i(String tag, String msg) {
46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, msg)
    [all...]
Log.java 42 * <p><b>Tip:</b> A good convention is to declare a <code>TAG</code> constant
45 * <pre>private static final String TAG = "MyActivity";</pre>
51 * <pre>Log.v(TAG, "index=" + i);</pre>
105 void onTerribleFailure(String tag, TerribleFailure what, boolean system);
109 public void onTerribleFailure(String tag, TerribleFailure what, boolean system) {
110 RuntimeInit.wtf(tag, what, system);
119 * @param tag Used to identify the source of a log message. It usually identifies
123 public static int v(String tag, String msg) {
124 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
129 * @param tag Used to identify the source of a log message. It usually identifie
448 private String tag; field in class:Log.ImmediateLogWriter
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
XmlParseUtils.java 40 public IllegalStartTag(final XmlPullParser parser, final String tag, final String parent) {
41 super("Illegal start tag " + tag + " in " + parent, parser);
47 public IllegalEndTag(final XmlPullParser parser, final String tag, final String parent) {
48 super("Illegal end tag " + tag + " in " + parent, parser);
54 public IllegalAttribute(final XmlPullParser parser, final String tag,
56 super("Tag " + tag + " has illegal attribute " + attribute, parser);
62 public NonEmptyTag(final XmlPullParser parser, final String tag) {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
Logt.java 22 public static void i(String tag, String msg) {
24 Log.i(tag, String.format("[%d] %s", t, msg));
26 public static void e(String tag, String msg) {
28 Log.e(tag, String.format("[%d] %s", t, msg));
30 public static void w(String tag, String msg) {
32 Log.w(tag, String.format("[%d] %s", t, msg));
34 public static void e(String tag, String msg, Throwable tr) {
36 Log.e(tag, String.format("[%d] %s", t, msg), tr);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
TagTester.java 19 import android.nfc.Tag;
21 /** Tag tester that writes data to the tag and returns a way to confirm a successful write. */
24 /** @return true if the tag is testable by this {@link TagTester} */
25 boolean isTestableTag(Tag tag);
27 /** Writes some data to the tag and returns a {@link TagVerifier} to confirm it. */
28 TagVerifier writeTag(Tag tag) throws Exception;

Completed in 624 milliseconds

1 2 3 4 5 67 8 91011>>