/packages/apps/Mms/src/com/android/mms/exif/ |
D | ExifParser.java | 345 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 …]
|
D | ExifOutputStream.java | 164 short tag = mBuffer.getShort(); in write() local 165 if (tag == JpegHeader.EOI) { in write() 287 for (ExifTag tag : tags) { in writeIfd() 288 dataOutputStream.writeShort(tag.getTagId()); in writeIfd() 289 dataOutputStream.writeShort(tag.getDataType()); in writeIfd() 290 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd() 292 Log.v(TAG, "\n" + tag.toString()); in writeIfd() 294 if (tag.getDataSize() > 4) { in writeIfd() 295 dataOutputStream.writeInt(tag.getOffset()); in writeIfd() 297 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd() [all …]
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/ |
D | ExifParser.java | 343 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 …]
|
D | ExifOutputStream.java | 162 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/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
D | ExifParser.java | 343 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 …]
|
D | ExifOutputStream.java | 162 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/ |
D | ExifParser.java | 343 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 …]
|
D | ExifOutputStream.java | 162 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/debug/ |
D | Log.java | 48 public Tag(String tag) { in Tag() argument 49 final int lenDiff = tag.length() - MAX_TAG_LEN; in Tag() 51 w(TAG, "Tag " + tag + " is " + lenDiff + " chars longer than limit."); in Tag() 53 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag); in Tag() 62 public static void d(Tag tag, String msg) { in d() argument 63 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 64 android.util.Log.d(tag.toString(), msg); in d() 68 public static void d(Tag tag, String msg, Throwable tr) { in d() argument 69 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 70 android.util.Log.d(tag.toString(), msg, tr); in d() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | LogUtils.java | 94 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_stab/doc/ |
D | dbreg_API_doxyfile | 17 # 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/ |
D | dbreg_API_doxyfile | 17 # 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_mos/doc/ |
D | feature_mos_API_doxyfile | 17 # 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/ |
D | feature_mos_API_doxyfile | 17 # 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/Nfc/src/com/android/nfc/ |
D | NfcService.java | 236 public void onRemoteEndpointDiscovered(TagEndpoint tag) { in onRemoteEndpointDiscovered() argument 237 sendMessage(NfcService.MSG_NDEF_TAG, tag); in onRemoteEndpointDiscovered() 921 public void dispatch(Tag tag) throws RemoteException { in dispatch() argument 923 mNfcDispatcher.dispatchTag(tag); in dispatch() 1030 TagEndpoint tag = null; in close() local 1037 tag = (TagEndpoint) findObject(nativeHandle); in close() 1038 if (tag != null) { in close() 1041 tag.disconnect(); in close() 1053 TagEndpoint tag = null; in connect() local 1060 tag = (TagEndpoint) findObject(nativeHandle); in connect() [all …]
|
/packages/apps/Exchange/src/com/android/exchange/eas/ |
D | EasSyncContacts.java | 197 s.tag(Tags.CONTACTS_FIRST_NAME); in setInitialSyncOptions() 198 s.tag(Tags.CONTACTS_LAST_NAME); in setInitialSyncOptions() 199 s.tag(Tags.CONTACTS_MIDDLE_NAME); in setInitialSyncOptions() 200 s.tag(Tags.CONTACTS_SUFFIX); in setInitialSyncOptions() 201 s.tag(Tags.CONTACTS_COMPANY_NAME); in setInitialSyncOptions() 202 s.tag(Tags.CONTACTS_JOB_TITLE); in setInitialSyncOptions() 203 s.tag(Tags.CONTACTS_EMAIL1_ADDRESS); in setInitialSyncOptions() 204 s.tag(Tags.CONTACTS_EMAIL2_ADDRESS); in setInitialSyncOptions() 205 s.tag(Tags.CONTACTS_EMAIL3_ADDRESS); in setInitialSyncOptions() 206 s.tag(Tags.CONTACTS_BUSINESS2_TELEPHONE_NUMBER); in setInitialSyncOptions() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/ |
D | KeyboardLayoutSetActionLabelBase.java | 34 final String tag = "unspecifiled " in testActionUnspecified() local 36 doTestActionKeyIcon(tag, subtype, EditorInfo.IME_ACTION_UNSPECIFIED, in testActionUnspecified() 43 final String tag = "none " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionNone() local 44 doTestActionKeyIcon(tag, subtype, EditorInfo.IME_ACTION_NONE, in testActionNone() 51 final String tag = "search " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionSearch() local 52 doTestActionKeyIcon(tag, subtype, EditorInfo.IME_ACTION_SEARCH, in testActionSearch() 65 final String tag = "custom " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionCustom() local 70 doTestActionKeyLabel(tag, subtype, editorInfo, customLabel); in testActionCustom() 74 private static void doTestActionKey(final String tag, final KeyboardLayoutSet layoutSet, in doTestActionKey() argument 78 assertNotNull(tag + " enter key on " + keyboard.mId, enterKey); in doTestActionKey() [all …]
|
D | KeyboardLayoutSetActionLabelKlpTests.java | 42 final String tag = "go " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionGo() local 43 doTestActionKeyLabelResId(tag, subtype, EditorInfo.IME_ACTION_GO, in testActionGo() 51 final String tag = "send " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionSend() local 52 doTestActionKeyLabelResId(tag, subtype, EditorInfo.IME_ACTION_SEND, in testActionSend() 60 final String tag = "next " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionNext() local 61 doTestActionKeyLabelResId(tag, subtype, EditorInfo.IME_ACTION_NEXT, in testActionNext() 69 final String tag = "done " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionDone() local 70 doTestActionKeyLabelResId(tag, subtype, EditorInfo.IME_ACTION_DONE, in testActionDone() 78 final String tag = "previous " + SubtypeLocaleUtils.getSubtypeNameForLogging(subtype); in testActionPrevious() local 79 doTestActionKeyLabelResId(tag, subtype, EditorInfo.IME_ACTION_PREVIOUS, in testActionPrevious() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | Log.java | 20 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/ |
D | Log.java | 21 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/ |
D | Log.java | 20 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/app/ |
D | Log.java | 20 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/ |
D | KeyboardBuilder.java | 221 final String tag = parser.getName(); in parseKeyboard() local 222 if (TAG_KEYBOARD.equals(tag)) { in parseKeyboard() 228 throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_KEYBOARD); in parseKeyboard() 299 final String tag = parser.getName(); in parseKeyboardContent() local 300 if (TAG_ROW.equals(tag)) { in parseKeyboardContent() 307 } else if (TAG_GRID_ROWS.equals(tag)) { in parseKeyboardContent() 310 } else if (TAG_INCLUDE.equals(tag)) { in parseKeyboardContent() 312 } else if (TAG_SWITCH.equals(tag)) { in parseKeyboardContent() 314 } else if (TAG_KEY_STYLE.equals(tag)) { in parseKeyboardContent() 317 throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_ROW); in parseKeyboardContent() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/perf/ |
D | Timer.java | 98 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/ |
D | LegacyConversionsTests.java | 288 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 …]
|