Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 244) sorted by relevance

12345678910

/packages/apps/Camera2/src/com/android/camera/debug/
DLog.java50 public Tag(String tag) { in Tag() argument
51 final int lenDiff = tag.length() - MAX_TAG_LEN; in Tag()
53 w(TAG, "Tag " + tag + " is " + lenDiff + " chars longer than limit."); in Tag()
55 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag); in Tag()
64 public static void d(Tag tag, String msg) { in d() argument
65 if (isLoggable(tag, android.util.Log.DEBUG)) { in d()
66 android.util.Log.d(tag.toString(), msg); in d()
70 public static void d(Tag tag, Object instance, String msg) { in d() argument
71 if (isLoggable(tag, android.util.Log.DEBUG)) { in d()
72 android.util.Log.d(tag.toString(), LogUtil.addTags(instance, msg)); in d()
[all …]
/packages/apps/Messaging/src/com/android/messaging/util/exif/
DExifParser.java344 mTag = tagEvent.tag; in next()
514 protected void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
515 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
516 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
550 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() local
552 int dataSize = tag.getDataSize(); in readTag()
565 tag.setValue(buf); in readTag()
567 tag.setOffset((int) offset); in readTag()
570 boolean defCount = tag.hasDefinedCount(); in readTag()
572 tag.setHasDefinedCount(false); in readTag()
[all …]
DExifOutputStream.java163 short tag = mBuffer.getShort(); in write() local
164 if (tag == JpegHeader.EOI) { in write()
289 for (ExifTag tag : tags) { in writeIfd()
290 dataOutputStream.writeShort(tag.getTagId()); in writeIfd()
291 dataOutputStream.writeShort(tag.getDataType()); in writeIfd()
292 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd()
294 Log.v(TAG, "\n" + tag.toString()); in writeIfd()
296 if (tag.getDataSize() > 4) { in writeIfd()
297 dataOutputStream.writeInt(tag.getOffset()); in writeIfd()
299 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd()
[all …]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
DExifParser.java343 mTag = tagEvent.tag; in next()
512 protected void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
513 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
514 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
548 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() local
550 int dataSize = tag.getDataSize(); in readTag()
563 tag.setValue(buf); in readTag()
565 tag.setOffset((int) offset); in readTag()
568 boolean defCount = tag.hasDefinedCount(); in readTag()
570 tag.setHasDefinedCount(false); in readTag()
[all …]
DExifOutputStream.java162 short tag = mBuffer.getShort(); in write() local
163 if (tag == JpegHeader.EOI) { in write()
285 for (ExifTag tag : tags) { in writeIfd()
286 dataOutputStream.writeShort(tag.getTagId()); in writeIfd()
287 dataOutputStream.writeShort(tag.getDataType()); in writeIfd()
288 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd()
290 Log.v(TAG, "\n" + tag.toString()); in writeIfd()
292 if (tag.getDataSize() > 4) { in writeIfd()
293 dataOutputStream.writeInt(tag.getOffset()); in writeIfd()
295 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd()
[all …]
/packages/apps/Camera2/src/com/android/camera/exif/
DExifParser.java343 mTag = tagEvent.tag; in next()
512 protected void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
513 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
514 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
548 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() local
550 int dataSize = tag.getDataSize(); in readTag()
563 tag.setValue(buf); in readTag()
565 tag.setOffset((int) offset); in readTag()
568 boolean defCount = tag.hasDefinedCount(); in readTag()
570 tag.setHasDefinedCount(false); in readTag()
[all …]
DExifOutputStream.java162 short tag = mBuffer.getShort(); in write() local
163 if (tag == JpegHeader.EOI) { in write()
285 for (ExifTag tag : tags) { in writeIfd()
286 dataOutputStream.writeShort(tag.getTagId()); in writeIfd()
287 dataOutputStream.writeShort(tag.getDataType()); in writeIfd()
288 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd()
290 Log.v(TAG, "\n" + tag.toString()); in writeIfd()
292 if (tag.getDataSize() > 4) { in writeIfd()
293 dataOutputStream.writeInt(tag.getOffset()); in writeIfd()
295 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd()
[all …]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
DExifParser.java343 mTag = tagEvent.tag; in next()
512 protected void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
513 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
514 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
548 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() local
550 int dataSize = tag.getDataSize(); in readTag()
563 tag.setValue(buf); in readTag()
565 tag.setOffset((int) offset); in readTag()
568 boolean defCount = tag.hasDefinedCount(); in readTag()
570 tag.setHasDefinedCount(false); in readTag()
[all …]
DExifOutputStream.java162 short tag = mBuffer.getShort(); in write() local
163 if (tag == JpegHeader.EOI) { in write()
285 for (ExifTag tag : tags) { in writeIfd()
286 dataOutputStream.writeShort(tag.getTagId()); in writeIfd()
287 dataOutputStream.writeShort(tag.getDataType()); in writeIfd()
288 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd()
290 Log.v(TAG, "\n" + tag.toString()); in writeIfd()
292 if (tag.getDataSize() > 4) { in writeIfd()
293 dataOutputStream.writeInt(tag.getOffset()); in writeIfd()
295 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DLogUtils.java95 protected static boolean isDebugLoggingEnabled(String tag) { in isDebugLoggingEnabled() argument
102 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG); in isDebugLoggingEnabled()
117 public static String contentUriToString(String tag, Uri uri) { in contentUriToString() argument
118 if (isDebugLoggingEnabled(tag)) { in contentUriToString()
154 public static String sanitizeName(final String tag, final String name) { in sanitizeName() argument
159 if (isDebugLoggingEnabled(tag)) { in sanitizeName()
169 public static boolean isLoggable(String tag, int level) { in isLoggable() argument
173 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level); in isLoggable()
186 public static int v(String tag, String format, Object... args) { in v() argument
187 if (isLoggable(tag, VERBOSE)) { in v()
[all …]
/packages/services/Telephony/src/com/android/phone/common/mail/utils/
DLogUtils.java94 protected static boolean isDebugLoggingEnabled(String tag) { in isDebugLoggingEnabled() argument
101 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG); in isDebugLoggingEnabled()
116 public static String contentUriToString(String tag, Uri uri) { in contentUriToString() argument
117 if (isDebugLoggingEnabled(tag)) { in contentUriToString()
153 public static String sanitizeName(final String tag, final String name) { in sanitizeName() argument
158 if (isDebugLoggingEnabled(tag)) { in sanitizeName()
168 public static boolean isLoggable(String tag, int level) { in isLoggable() argument
172 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level); in isLoggable()
185 public static int v(String tag, String format, Object... args) { in v() argument
186 if (isLoggable(tag, VERBOSE)) { in v()
[all …]
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
79 # This tag implements a quasi-intelligent brief description abbreviator
[all …]
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
79 # This tag implements a quasi-intelligent brief description abbreviator
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
79 # This tag implements a quasi-intelligent brief description abbreviator
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
79 # This tag implements a quasi-intelligent brief description abbreviator
[all …]
/packages/apps/Messaging/src/com/android/messaging/util/
DLogUtil.java76 public static void v(final String tag, final String msg) { in v() argument
77 println(android.util.Log.VERBOSE, tag, msg); in v()
87 public static void v(final String tag, final String msg, final Throwable tr) { in v() argument
88 println(android.util.Log.VERBOSE, tag, msg + '\n' in v()
98 public static void d(final String tag, final String msg) { in d() argument
99 println(android.util.Log.DEBUG, tag, msg); in d()
109 public static void d(final String tag, final String msg, final Throwable tr) { in d() argument
110 println(android.util.Log.DEBUG, tag, msg + '\n' in d()
120 public static void i(final String tag, final String msg) { in i() argument
121 println(android.util.Log.INFO, tag, msg); in i()
[all …]
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java236 public void onRemoteEndpointDiscovered(TagEndpoint tag) { in onRemoteEndpointDiscovered() argument
237 sendMessage(NfcService.MSG_NDEF_TAG, tag); in onRemoteEndpointDiscovered()
925 public void dispatch(Tag tag) throws RemoteException { in dispatch() argument
927 mNfcDispatcher.dispatchTag(tag); in dispatch()
1043 TagEndpoint tag = null; in close() local
1050 tag = (TagEndpoint) findObject(nativeHandle); in close()
1051 if (tag != null) { in close()
1054 tag.disconnect(); in close()
1066 TagEndpoint tag = null; in connect() local
1073 tag = (TagEndpoint) findObject(nativeHandle); in connect()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DLog.java20 public static int v(String tag, String msg) { in v() argument
21 return android.util.Log.v(tag, msg); in v()
23 public static int v(String tag, String msg, Throwable tr) { in v() argument
24 return android.util.Log.v(tag, msg, tr); in v()
26 public static int d(String tag, String msg) { in d() argument
27 return android.util.Log.d(tag, msg); in d()
29 public static int d(String tag, String msg, Throwable tr) { in d() argument
30 return android.util.Log.d(tag, msg, tr); in d()
32 public static int i(String tag, String msg) { in i() argument
33 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLog.java20 public static int v(String tag, String msg) { in v() argument
21 return android.util.Log.v(tag, msg); in v()
23 public static int v(String tag, String msg, Throwable tr) { in v() argument
24 return android.util.Log.v(tag, msg, tr); in v()
26 public static int d(String tag, String msg) { in d() argument
27 return android.util.Log.d(tag, msg); in d()
29 public static int d(String tag, String msg, Throwable tr) { in d() argument
30 return android.util.Log.d(tag, msg, tr); in d()
32 public static int i(String tag, String msg) { in i() argument
33 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DLog.java21 public static int v(String tag, String msg) { in v() argument
22 return android.util.Log.v(tag, msg); in v()
24 public static int v(String tag, String msg, Throwable tr) { in v() argument
25 return android.util.Log.v(tag, msg, tr); in v()
27 public static int d(String tag, String msg) { in d() argument
28 return android.util.Log.d(tag, msg); in d()
30 public static int d(String tag, String msg, Throwable tr) { in d() argument
31 return android.util.Log.d(tag, msg, tr); in d()
33 public static int i(String tag, String msg) { in i() argument
34 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DLog.java20 public static int v(String tag, String msg) { in v() argument
21 return android.util.Log.v(tag, msg); in v()
23 public static int v(String tag, String msg, Throwable tr) { in v() argument
24 return android.util.Log.v(tag, msg, tr); in v()
26 public static int d(String tag, String msg) { in d() argument
27 return android.util.Log.d(tag, msg); in d()
29 public static int d(String tag, String msg, Throwable tr) { in d() argument
30 return android.util.Log.d(tag, msg, tr); in d()
32 public static int i(String tag, String msg) { in i() argument
33 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardBuilder.java225 final String tag = parser.getName(); in parseKeyboard() local
226 if (TAG_KEYBOARD.equals(tag)) { in parseKeyboard()
232 throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_KEYBOARD); in parseKeyboard()
303 final String tag = parser.getName(); in parseKeyboardContent() local
304 if (TAG_ROW.equals(tag)) { in parseKeyboardContent()
311 } else if (TAG_GRID_ROWS.equals(tag)) { in parseKeyboardContent()
314 } else if (TAG_INCLUDE.equals(tag)) { in parseKeyboardContent()
316 } else if (TAG_SWITCH.equals(tag)) { in parseKeyboardContent()
318 } else if (TAG_KEY_STYLE.equals(tag)) { in parseKeyboardContent()
321 throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_ROW); in parseKeyboardContent()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/perf/
DTimer.java98 public void start(String tag) { in start() argument
100 ArrayList<PerformancePoint> values = mPoints.get(tag); in start()
103 mPoints.put(tag, values); in start()
115 public void pause(String tag) { in pause() argument
117 ArrayList<PerformancePoint> values = mPoints.get(tag); in pause()
125 public void count(String tag) { in count() argument
127 Integer counts = mCounts.get(tag); in count()
131 mCounts.put(tag, counts + 1); in count()
150 String tag = entry.getKey(); in dumpResults() local
167 dumpTimings(tag, 1, cpuDurationNanos, wallDurationMillis); in dumpResults()
[all …]
/packages/apps/Email/tests/src/com/android/email/
DLegacyConversionsTests.java288 private void checkAttachment(String tag, Part expected, EmailContent.Attachment actual, in checkAttachment() argument
292 assertEquals(tag, expected.getMimeType(), actual.mMimeType); in checkAttachment()
297 assertEquals(tag, expectedSize, actual.mSize); in checkAttachment()
298 assertEquals(tag, expected.getContentId(), actual.mContentId); in checkAttachment()
302 assertEquals(tag, expectedName, actual.mFileName); in checkAttachment()
305 assertNull(tag, actual.getContentUri()); in checkAttachment()
307 assertTrue(tag, 0 != actual.mMessageKey); in checkAttachment()
315 assertEquals(tag, expectedPartId, actual.mLocation); in checkAttachment()
316 assertEquals(tag, "B", actual.mEncoding); in checkAttachment()
317 assertEquals(tag, accountKey, actual.mAccountKey); in checkAttachment()
[all …]
/packages/apps/InCallUI/src/com/android/incallui/
DInCallActivity.java664 private void showFragment(String tag, boolean show, boolean executeImmediately) { in showFragment() argument
665 Trace.beginSection("showFragment - " + tag); in showFragment()
666 final FragmentManager fm = getFragmentManagerForTag(tag); in showFragment()
669 Log.w(TAG, "Fragment manager is null for : " + tag); in showFragment()
673 Fragment fragment = fm.findFragmentByTag(tag); in showFragment()
682 fragment = createNewFragmentForTag(tag); in showFragment()
683 transaction.add(getContainerIdForFragment(tag), fragment, tag); in showFragment() local
698 private Fragment createNewFragmentForTag(String tag) { in createNewFragmentForTag() argument
699 if (TAG_DIALPAD_FRAGMENT.equals(tag)) { in createNewFragmentForTag()
702 } else if (TAG_ANSWER_FRAGMENT.equals(tag)) { in createNewFragmentForTag()
[all …]

12345678910