Home
last modified time | relevance | path

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

123456

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
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/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/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 …]
DExif.java92 int tag = pack(jpeg, offset, 4, false); in getOrientation() local
93 if (tag != 0x49492A00 && tag != 0x4D4D002A) { in getOrientation()
97 boolean littleEndian = (tag == 0x49492A00); in getOrientation()
112 tag = pack(jpeg, offset, 2, littleEndian); in getOrientation()
113 if (tag == 0x0112) { in getOrientation()
/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/Email/src/com/android/mail/utils/
DLogUtils.java168 public static boolean isLoggable(String tag, int level) { in isLoggable() argument
172 return 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()
187 return Log.v(tag, String.format(format, args)); in v()
203 public static int v(String tag, Throwable tr, String format, Object... args) { in v() argument
204 if (isLoggable(tag, VERBOSE)) { in v()
205 return Log.v(tag, String.format(format, args), tr); in v()
220 public static int d(String tag, String format, Object... args) { in d() argument
221 if (isLoggable(tag, DEBUG)) { in d()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsTransaction.java98 public void startTransactionForDb(SQLiteDatabase db, String tag, in startTransactionForDb() argument
100 if (!hasDbInTransaction(tag)) { in startTransactionForDb()
102 mDatabaseTagMap.put(tag, db); in startTransactionForDb()
114 public boolean hasDbInTransaction(String tag) { in hasDbInTransaction() argument
115 return mDatabaseTagMap.containsKey(tag); in hasDbInTransaction()
124 public SQLiteDatabase getDbForTag(String tag) { in getDbForTag() argument
125 return mDatabaseTagMap.get(tag); in getDbForTag()
136 public SQLiteDatabase removeDbForTag(String tag) { in removeDbForTag() argument
137 SQLiteDatabase db = mDatabaseTagMap.get(tag); in removeDbForTag()
138 mDatabaseTagMap.remove(tag); in removeDbForTag()
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java243 public void onRemoteEndpointDiscovered(TagEndpoint tag) { in onRemoteEndpointDiscovered() argument
244 sendMessage(NfcService.MSG_NDEF_TAG, tag); in onRemoteEndpointDiscovered()
813 public void dispatch(Tag tag) throws RemoteException { in dispatch() argument
815 mNfcDispatcher.dispatchTag(tag); in dispatch()
834 TagEndpoint tag = null; in close() local
841 tag = (TagEndpoint) findObject(nativeHandle); in close()
842 if (tag != null) { in close()
845 tag.disconnect(); in close()
857 TagEndpoint tag = null; in connect() local
864 tag = (TagEndpoint) findObject(nativeHandle); in connect()
[all …]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
DPackedString.java58 public String get(String tag) { in get() argument
62 return mExploded.get(tag); in get()
96 String tag; in explode() local
102 tag = Integer.toString(map.size()); in explode()
105 tag = packed.substring(tagEndIndex + 1, elementEndIndex); in explode()
109 map.put(tag, value); in explode()
142 public void put(String tag, String value) { in put() argument
144 mMap.remove(tag); in put()
146 mMap.put(tag, value); in put()
155 public String get(String tag) { in get() argument
[all …]
/packages/apps/Email/tests/src/com/android/email/
DLegacyConversionsTests.java417 private void checkAttachment(String tag, Part expected, EmailContent.Attachment actual, in checkAttachment() argument
421 assertEquals(tag, expected.getMimeType(), actual.mMimeType); in checkAttachment()
426 assertEquals(tag, expectedSize, actual.mSize); in checkAttachment()
427 assertEquals(tag, expected.getContentId(), actual.mContentId); in checkAttachment()
431 assertEquals(tag, expectedName, actual.mFileName); in checkAttachment()
434 assertNull(tag, actual.mContentUri); in checkAttachment()
436 assertTrue(tag, 0 != actual.mMessageKey); in checkAttachment()
444 assertEquals(tag, expectedPartId, actual.mLocation); in checkAttachment()
445 assertEquals(tag, "B", actual.mEncoding); in checkAttachment()
446 assertEquals(tag, accountKey, actual.mAccountKey); in checkAttachment()
[all …]
/packages/apps/Tag/src/com/android/apps/tag/message/
DNdefMessageParser.java17 package com.android.apps.tag.message;
19 import com.android.apps.tag.record.ImageRecord;
20 import com.android.apps.tag.record.MimeRecord;
21 import com.android.apps.tag.record.ParsedNdefRecord;
22 import com.android.apps.tag.record.SmartPoster;
23 import com.android.apps.tag.record.TextRecord;
24 import com.android.apps.tag.record.UnknownRecord;
25 import com.android.apps.tag.record.UriRecord;
26 import com.android.apps.tag.record.VCardRecord;
DParsedNdefMessage.java17 package com.android.apps.tag.message;
19 import com.android.apps.tag.R;
20 import com.android.apps.tag.record.ParsedNdefRecord;
21 import com.android.apps.tag.record.SmartPoster;
22 import com.android.apps.tag.record.UriRecord;
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
DSerializer.java110 int tag = mPendingTag & Tags.PAGE_MASK; in checkPendingTag() local
117 mOutput.write(degenerated ? tag : tag | Wbxml.WITH_CONTENT); in checkPendingTag()
119 String name = Tags.pages[page][tag - 5]; in checkPendingTag()
126 public Serializer start(int tag) throws IOException { in start() argument
128 mPendingTag = tag; 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() argument
154 Log.e(TAG, "Writing null data for tag: " + tag); in data()
156 start(tag); in data()
226 void writeStringValue (ContentValues cv, String key, int tag) throws IOException { in writeStringValue() argument
[all …]
DSearch.java100 s.tag(Tags.SEARCH_REBUILD_RESULTS); in searchMessages()
103 s.tag(Tags.SEARCH_DEEP_TRAVERSAL); in searchMessages()
173 if (tag == Tags.SEARCH_STATUS) { in parse()
178 } else if (tag == Tags.SEARCH_RESPONSE) { in parse()
190 if (tag == Tags.SEARCH_STORE) { in parseResponse()
206 if (tag == Tags.SEARCH_STATUS) { in parseStore()
208 } else if (tag == Tags.SEARCH_TOTAL) { in parseStore()
210 } else if (tag == Tags.SEARCH_RESULT) { in parseStore()
236 if (tag == Tags.SYNC_CLASS) { in parseResult()
238 } else if (tag == Tags.SYNC_COLLECTION_ID) { in parseResult()
[all …]
DContactsSyncAdapter.java157 s.tag(Tags.CONTACTS_FIRST_NAME); in sendSyncOptions()
158 s.tag(Tags.CONTACTS_LAST_NAME); in sendSyncOptions()
159 s.tag(Tags.CONTACTS_MIDDLE_NAME); in sendSyncOptions()
160 s.tag(Tags.CONTACTS_SUFFIX); in sendSyncOptions()
161 s.tag(Tags.CONTACTS_COMPANY_NAME); in sendSyncOptions()
162 s.tag(Tags.CONTACTS_JOB_TITLE); in sendSyncOptions()
163 s.tag(Tags.CONTACTS_EMAIL1_ADDRESS); in sendSyncOptions()
164 s.tag(Tags.CONTACTS_EMAIL2_ADDRESS); in sendSyncOptions()
165 s.tag(Tags.CONTACTS_EMAIL3_ADDRESS); in sendSyncOptions()
166 s.tag(Tags.CONTACTS_BUSINESS2_TELEPHONE_NUMBER); in sendSyncOptions()
[all …]
DItemOperationsParser.java45 if (tag == Tags.ITEMS_DATA) { in parseProperties()
58 if (tag == Tags.ITEMS_PROPERTIES) { in parseFetch()
68 if (tag == Tags.ITEMS_FETCH) { in parseResponse()
83 if (tag == Tags.ITEMS_STATUS) { in parse()
86 } else if (tag == Tags.ITEMS_RESPONSE) { in parse()
/packages/apps/Mms/src/com/android/mms/model/
DMediaModelFactory.java46 String tag = sme.getTagName(); in getMediaModel() local
52 context, tag, src, (SMILRegionMediaElement) sme, layouts, part); in getMediaModel()
55 context, tag, src, sme, part, null); in getMediaModel()
93 String tag, String src, SMILRegionMediaElement srme, in getRegionMediaModel() argument
99 return getGenericMediaModel(context, tag, src, srme, part, region); in getRegionMediaModel()
104 if (tag.equals(SmilHelper.ELEMENT_TAG_TEXT)) { in getRegionMediaModel()
112 return getGenericMediaModel(context, tag, src, srme, part, region); in getRegionMediaModel()
127 String tag, String src, SMILMediaElement sme, PduPart part, in getGenericMediaModel() argument
137 if (tag.equals(SmilHelper.ELEMENT_TAG_TEXT)) { in getGenericMediaModel()
140 } else if (tag.equals(SmilHelper.ELEMENT_TAG_IMAGE)) { in getGenericMediaModel()
[all …]
DRegionMediaModel.java31 public RegionMediaModel(Context context, String tag, Uri uri, in RegionMediaModel() argument
33 this(context, tag, null, null, uri, region); in RegionMediaModel()
36 public RegionMediaModel(Context context, String tag, String contentType, in RegionMediaModel() argument
38 super(context, tag, contentType, src, uri); in RegionMediaModel()
42 public RegionMediaModel(Context context, String tag, String contentType, in RegionMediaModel() argument
44 super(context, tag, contentType, src, data); in RegionMediaModel()
/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/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/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/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DXmlParseUtils.java61 public NonEmptyTag(String tag, XmlPullParser parser) { in NonEmptyTag() argument
62 super(tag + " must be empty tag", parser); in NonEmptyTag()
66 public static void checkEndTag(String tag, XmlPullParser parser) in checkEndTag() argument
68 if (parser.next() == XmlPullParser.END_TAG && tag.equals(parser.getName())) in checkEndTag()
70 throw new NonEmptyTag(tag, parser); in checkEndTag()
74 String tag, XmlPullParser parser) throws XmlPullParserException { in checkAttributeExists() argument
78 "No " + attrName + " attribute found in <" + tag + "/>", parser); in checkAttributeExists()
/packages/apps/LegacyCamera/src/com/android/camera/
DExif.java75 int tag = pack(jpeg, offset, 4, false); in getOrientation() local
76 if (tag != 0x49492A00 && tag != 0x4D4D002A) { in getOrientation()
80 boolean littleEndian = (tag == 0x49492A00); in getOrientation()
95 tag = pack(jpeg, offset, 2, littleEndian); in getOrientation()
96 if (tag == 0x0112) { in getOrientation()
/packages/apps/Camera/src/com/android/camera/
DExif.java76 int tag = pack(jpeg, offset, 4, false); in getOrientation() local
77 if (tag != 0x49492A00 && tag != 0x4D4D002A) { in getOrientation()
81 boolean littleEndian = (tag == 0x49492A00); in getOrientation()
96 tag = pack(jpeg, offset, 2, littleEndian); in getOrientation()
97 if (tag == 0x0112) { in getOrientation()

123456