/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | Log.java | 20 public static int v(String tag, String msg) { in v() 23 public static int v(String tag, String msg, Throwable tr) { in v() 26 public static int d(String tag, String msg) { in d() 29 public static int d(String tag, String msg, Throwable tr) { in d() 32 public static int i(String tag, String msg) { in i() 35 public static int i(String tag, String msg, Throwable tr) { in i() 38 public static int w(String tag, String msg) { in w() 41 public static int w(String tag, String msg, Throwable tr) { in w() 44 public static int w(String tag, Throwable tr) { in w() 47 public static int e(String tag, String msg) { in e() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
D | Log.java | 20 public static int v(String tag, String msg) { in v() 23 public static int v(String tag, String msg, Throwable tr) { in v() 26 public static int d(String tag, String msg) { in d() 29 public static int d(String tag, String msg, Throwable tr) { in d() 32 public static int i(String tag, String msg) { in i() 35 public static int i(String tag, String msg, Throwable tr) { in i() 38 public static int w(String tag, String msg) { in w() 41 public static int w(String tag, String msg, Throwable tr) { in w() 44 public static int w(String tag, Throwable tr) { in w() 47 public static int e(String tag, String msg) { in e() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
D | Log.java | 21 public static int v(String tag, String msg) { in v() 24 public static int v(String tag, String msg, Throwable tr) { in v() 27 public static int d(String tag, String msg) { in d() 30 public static int d(String tag, String msg, Throwable tr) { in d() 33 public static int i(String tag, String msg) { in i() 36 public static int i(String tag, String msg, Throwable tr) { in i() 39 public static int w(String tag, String msg) { in w() 42 public static int w(String tag, String msg, Throwable tr) { in w() 45 public static int w(String tag, Throwable tr) { in w() 48 public static int e(String tag, String msg) { in e() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
D | Log.java | 20 public static int v(String tag, String msg) { in v() 23 public static int v(String tag, String msg, Throwable tr) { in v() 26 public static int d(String tag, String msg) { in d() 29 public static int d(String tag, String msg, Throwable tr) { in d() 32 public static int i(String tag, String msg) { in i() 35 public static int i(String tag, String msg, Throwable tr) { in i() 38 public static int w(String tag, String msg) { in w() 41 public static int w(String tag, String msg, Throwable tr) { in w() 44 public static int w(String tag, Throwable tr) { in w() 47 public static int e(String tag, String msg) { in e() [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/swipeablelistview/ |
D | LogUtils.java | 83 protected static boolean isDebugLoggingEnabled(String tag) { in isDebugLoggingEnabled() 96 public static boolean isLoggable(String tag, int level) { in isLoggable() 113 public static int v(String tag, String format, Object... args) { in v() 131 public static int v(String tag, Throwable tr, String format, Object... args) { in v() 148 public static int d(String tag, String format, Object... args) { in d() 166 public static int d(String tag, Throwable tr, String format, Object... args) { in d() 183 public static int i(String tag, String format, Object... args) { in i() 201 public static int i(String tag, Throwable tr, String format, Object... args) { in i() 218 public static int w(String tag, String format, Object... args) { in w() 236 public static int w(String tag, Throwable tr, String format, Object... args) { in w() [all …]
|
/packages/apps/Email/src/com/android/mail/utils/ |
D | LogUtils.java | 168 public static boolean isLoggable(String tag, int level) { in isLoggable() 185 public static int v(String tag, String format, Object... args) { in v() 203 public static int v(String tag, Throwable tr, String format, Object... args) { in v() 220 public static int d(String tag, String format, Object... args) { in d() 238 public static int d(String tag, Throwable tr, String format, Object... args) { in d() 255 public static int i(String tag, String format, Object... args) { in i() 273 public static int i(String tag, Throwable tr, String format, Object... args) { in i() 290 public static int w(String tag, String format, Object... args) { in w() 308 public static int w(String tag, Throwable tr, String format, Object... args) { in w() 325 public static int e(String tag, String format, Object... args) { in e() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | XmlParseUtils.java | 40 public IllegalStartTag(final XmlPullParser parser, final String tag, final String parent) { in IllegalStartTag() 47 public IllegalEndTag(final XmlPullParser parser, final String tag, final String parent) { in IllegalEndTag() 54 public IllegalAttribute(final XmlPullParser parser, final String tag, in IllegalAttribute() 62 public NonEmptyTag(final XmlPullParser parser, final String tag) { in NonEmptyTag() 67 public static void checkEndTag(final String tag, final XmlPullParser parser) in checkEndTag() 75 final String attrName, final String tag, final XmlPullParser parser) in checkAttributeExists()
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/ |
D | ExifTagTest.java | 128 private void checkTypeByte(ExifTag tag, byte[] buf) { in checkTypeByte() 134 private void checkTypeAscii(ExifTag tag, String str) { in checkTypeAscii() 140 private void checkTypeUnsignedShort(ExifTag tag, int[] intBuf) { in checkTypeUnsignedShort() 149 private void checkTypeUnsignedLong(ExifTag tag, int[] intBuf, long[] longBuf) { in checkTypeUnsignedLong() 167 private void checkTypeLong(ExifTag tag, int[] intBuf) { in checkTypeLong() 178 private void checkTypeRational(ExifTag tag, Rational rationalBuf[]) { in checkTypeRational() 198 private void checkTypeUnsignedRational(ExifTag tag, Rational rationalBuf[]) { in checkTypeUnsignedRational()
|
D | ExifParserTest.java | 57 ExifTag tag = parser.getTag(); in testParse() local 81 private void checkTag(ExifTag tag) { in checkTag() 111 ExifTag tag = parser.getTag(); in parseOneIfd() local 174 ExifTag tag = parser.getTag(); in testOnlyReadSomeTag() local 211 ExifTag tag = parser.getTag(); in testReadThumbnail() local
|
D | Util.java | 60 private static String tagUndefinedTypeValueToString(ExifTag tag) { in tagUndefinedTypeValueToString() 95 public static String tagValueToString(ExifTag tag) { in tagValueToString()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsTransaction.java | 102 public void startTransactionForDb(SQLiteDatabase db, String tag, in startTransactionForDb() 126 public boolean hasDbInTransaction(String tag) { in hasDbInTransaction() 136 public SQLiteDatabase getDbForTag(String tag) { in getDbForTag() 148 public SQLiteDatabase removeDbForTag(String tag) { in removeDbForTag()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/ |
D | PackedString.java | 58 public String get(String tag) { in get() 96 String tag; in explode() local 142 public void put(String tag, String value) { in put() 155 public String get(String tag) { in get()
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/ |
D | Serializer.java | 110 int tag = mPendingTag & Tags.PAGE_MASK; in checkPendingTag() local 126 public Serializer start(int tag) throws IOException { in start() 146 public Serializer tag(int t) throws IOException { in tag() method in Serializer 152 public Serializer data(int tag, String value) throws IOException { in data() 226 void writeStringValue (ContentValues cv, String key, int tag) throws IOException { in writeStringValue()
|
/packages/apps/Mms/src/com/android/mms/model/ |
D | RegionMediaModel.java | 29 public RegionMediaModel(Context context, String tag, Uri uri, in RegionMediaModel() 34 public RegionMediaModel(Context context, String tag, String contentType, in RegionMediaModel() 40 public RegionMediaModel(Context context, String tag, String contentType, in RegionMediaModel()
|
D | MediaModelFactory.java | 44 String tag = sme.getTagName(); in getMediaModel() local 91 String tag, String src, SMILRegionMediaElement srme, in getRegionMediaModel() 125 String tag, String src, SMILMediaElement sme, PduPart part, in getGenericMediaModel()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | LabelDialogFragment.java | 58 public static LabelDialogFragment newInstance(TimerObj timer, String label, String tag) { in newInstance() 81 final String tag = bundle.getString(KEY_TAG); in onCreateView() local 120 private void set(Alarm alarm, TimerObj timer, String tag) { in set() 143 void onDialogLabelSet(TimerObj timer, String label, String tag); in onDialogLabelSet()
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
D | ExifData.java | 159 protected ExifTag getTag(short tag, int ifd) { in getTag() 168 protected ExifTag addTag(ExifTag tag) { in addTag() 180 protected ExifTag addTag(ExifTag tag, int ifdId) { in addTag() 221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT)); in getUserComment() local 300 protected List<ExifTag> getAllTagsForTagId(short tag) { in getAllTagsForTagId()
|
D | ExifModifier.java | 42 TagOffset(ExifTag tag, int offset) { in TagOffset() 148 private void writeTagValue(ExifTag tag, int offset) { in writeTagValue() 193 public void modifyTag(ExifTag tag) { in modifyTag()
|
/packages/apps/Nfc/src/com/android/nfc/ |
D | NfcService.java | 281 public void onRemoteEndpointDiscovered(TagEndpoint tag) { in onRemoteEndpointDiscovered() 972 public void dispatch(Tag tag) throws RemoteException { in dispatch() 993 TagEndpoint tag = null; in close() local 1016 TagEndpoint tag = null; in connect() local 1046 TagEndpoint tag = null; in reconnect() local 1075 TagEndpoint tag = (TagEndpoint) findObject(nativeHandle); in getTechList() local 1084 TagEndpoint tag = null; in isPresent() local 1104 TagEndpoint tag = null; in isNdef() local 1125 TagEndpoint tag = null; in transceive() local 1159 TagEndpoint tag; in ndefRead() local [all …]
|
D | NfcDispatcher.java | 122 public DispatchInfo(Context context, Tag tag, NdefMessage message) { in DispatchInfo() 204 public boolean dispatchTag(Tag tag) { in dispatchTag() 259 …boolean tryOverrides(DispatchInfo dispatch, Tag tag, NdefMessage message, PendingIntent overrideIn… in tryOverrides() 320 boolean isTechMatch(Tag tag, String[][] techLists) { in isTechMatch() 408 boolean tryTech(DispatchInfo dispatch, Tag tag) { in tryTech()
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ |
D | SelectAccountDialogFragment.java | 92 public static Bundle createBundle(int tag) { in createBundle() 99 void onAccountChosen(Account account, String dataSet, int tag); in onAccountChosen()
|
/packages/apps/Nfc/nci/jni/ |
D | NfcTag.cpp | 70 static NfcTag tag; in getInstance() local 514 ScopedLocalRef<jobject> tag(e, e->NewObject(tag_cls.get(), ctor)); in createNativeNfcTag() local 560 void NfcTag::fillNativeNfcTagMembers1 (JNIEnv* e, jclass tag_cls, jobject tag) in fillNativeNfcTagMembers1() 612 void NfcTag::fillNativeNfcTagMembers2 (JNIEnv* e, jclass tag_cls, jobject tag, tNFA_ACTIVATED& /*ac… in fillNativeNfcTagMembers2() 636 void NfcTag::fillNativeNfcTagMembers3 (JNIEnv* e, jclass tag_cls, jobject tag, tNFA_ACTIVATED& acti… in fillNativeNfcTagMembers3() 755 void NfcTag::fillNativeNfcTagMembers4 (JNIEnv* e, jclass tag_cls, jobject tag, tNFA_ACTIVATED& acti… in fillNativeNfcTagMembers4() 892 void NfcTag::fillNativeNfcTagMembers5 (JNIEnv* e, jclass tag_cls, jobject tag, tNFA_ACTIVATED& acti… in fillNativeNfcTagMembers5()
|
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
D | ImapResponse.java | 27 /* package */ ImapResponse(String tag, boolean isContinuationRequest) { in ImapResponse() 125 String tag = mTag; in toString() local
|
/packages/apps/Contacts/tests/src/com/android/contacts/detail/ |
D | StreamItemAdapterTest.java | 121 Object tag = mView.getTag(); in assertStreamItemViewHasTag() local 131 Object tag = mView.getTag(); in assertStreamItemViewHasNoTag() local
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
D | TabsAdapter.java | 51 private final String tag; field in TabsAdapter.TabInfo 68 public View createTabContent(String tag) { in createTabContent() 87 String tag = tabSpec.getTag(); in addTab() local
|