Searched defs:tag (Results 26 - 50 of 242) sorted by relevance

12345678910

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DAndroidLocale.java52 public static Locale forLanguageTag(String tag) { argument
53 return ULocale.forLanguageTag(tag).toLocale();
/frameworks/support/v4/eclair/android/support/v4/app/
H A DNotificationManagerCompatEclair.java23 static void cancelNotification(NotificationManager notificationManager, String tag, argument
25 notificationManager.cancel(tag, id);
28 public static void postNotification(NotificationManager notificationManager, String tag, int id, argument
30 notificationManager.notify(tag, id, notification);
/frameworks/support/v4/ics/android/support/v4/net/
H A DTrafficStatsCompatIcs.java40 public static void incrementOperationCount(int tag, int operationCount) { argument
41 TrafficStats.incrementOperationCount(tag, operationCount);
44 public static void setThreadStatsTag(int tag) { argument
45 TrafficStats.setThreadStatsTag(tag);
/frameworks/support/v4/java/android/support/v4/util/
H A DLogWriter.java35 * and tag.
37 * @param tag A string tag to associate with each printed log statement.
39 public LogWriter(String tag) { argument
40 mTag = tag;
/frameworks/base/core/java/android/nfc/tech/
H A DBasicTagTechnology.java28 * A base class for tag technologies that are built on top of transceive().
38 BasicTagTechnology(Tag tag, int tech) throws RemoteException { argument
39 mTag = tag;
77 // Store this in the tag object
119 /* Note that we don't want to physically disconnect the tag,
H A DIsoDep.java52 * Get an instance of {@link IsoDep} for the given tag.
55 * This indicates the tag does not support ISO-DEP.
57 * @param tag an ISO-DEP compatible tag
60 public static IsoDep get(Tag tag) { argument
61 if (!tag.hasTech(TagTechnology.ISO_DEP)) return null;
63 return new IsoDep(tag);
70 public IsoDep(Tag tag) argument
72 super(tag, TagTechnology.ISO_DEP);
73 Bundle extras = tag
[all...]
H A DNfcA.java49 * Get an instance of {@link NfcA} for the given tag.
51 * This indicates the tag does not support NFC-A.
54 * @param tag an NFC-A compatible tag
57 public static NfcA get(Tag tag) { argument
58 if (!tag.hasTech(TagTechnology.NFC_A)) return null;
60 return new NfcA(tag);
67 public NfcA(Tag tag) throws RemoteException { argument
68 super(tag, TagTechnology.NFC_A);
69 Bundle extras = tag
[all...]
H A DNfcF.java49 * Get an instance of {@link NfcF} for the given tag.
51 * This indicates the tag does not support NFC-F.
54 * @param tag an NFC-F compatible tag
57 public static NfcF get(Tag tag) { argument
58 if (!tag.hasTech(TagTechnology.NFC_F)) return null;
60 return new NfcF(tag);
67 public NfcF(Tag tag) throws RemoteException { argument
68 super(tag, TagTechnology.NFC_F);
69 Bundle extras = tag
[all...]
H A DMifareUltralight.java36 * The primary operations on an Ultralight tag are {@link #readPages} and
55 * In either case, {@link NfcA} will also be enumerated on the tag,
64 /** A MIFARE Ultralight compatible tag of unknown type */
66 /** A MIFARE Ultralight tag */
68 /** A MIFARE Ultralight C tag */
83 * Get an instance of {@link MifareUltralight} for the given tag.
85 * {@link Tag#getTechList} - this indicates the tag is not MIFARE
90 * @param tag an MIFARE Ultralight compatible tag
93 public static MifareUltralight get(Tag tag) { argument
103 MifareUltralight(Tag tag) argument
[all...]
/frameworks/base/core/java/android/util/
H A DLogWriter.java30 * and tag.
38 * @param tag A string tag to associate with each printed log statement.
40 public LogWriter(int priority, String tag) { argument
42 mTag = tag;
50 public LogWriter(int priority, String tag, int buffer) { argument
52 mTag = tag;
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerInternal.java23 String tag, int id, Notification notification, int[] idReceived, int userId);
22 enqueueNotification(String pkg, String basePkg, int callingUid, int callingPid, String tag, int id, Notification notification, int[] idReceived, int userId) argument
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
H A DBandwidthEnforcementTestService.java62 public static void dumpResult(String tag, boolean result, String outputFile) { argument
71 out.append(tag + ":fail\n");
73 out.append(tag + ":pass\n");
78 Log.e(TAG, tag + " FAILURE ====================");
79 Log.e(TAG, tag + " FAILURE was able to use data");
80 Log.e(TAG, tag + " FAILURE ====================");
82 Log.d(TAG, tag + " success; unable to use data");
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAbstractLayoutTest.java54 public abstract String tag(); method in class:AbstractLayoutTest
69 Log.d(tag(), "Time: " + (float) (System.currentTimeMillis() - start) / N * 1000 + "mics");
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DTestActivity.java40 protected abstract String tag(); method in class:TestActivity
69 Log.d(tag(), "Test: " + t.name);
/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLog.cpp54 EventLog::TagBuffer::TagBuffer(int32_t tag) argument
55 : mPos(0), mTag(tag), mOverflow(false) {
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompatSideChannelService.java61 public abstract void notify(String packageName, int id, String tag, Notification notification); argument
66 public abstract void cancel(String packageName, int id, String tag); argument
75 public void notify(String packageName, int id, String tag, Notification notification) argument
80 NotificationCompatSideChannelService.this.notify(packageName, id, tag, notification);
87 public void cancel(String packageName, int id, String tag) throws RemoteException { argument
91 NotificationCompatSideChannelService.this.cancel(packageName, id, tag);
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp39 static const char* vendor_tag_descriptor_get_section_name(const vendor_tag_ops_t* v, uint32_t tag);
40 static const char* vendor_tag_descriptor_get_tag_name(const vendor_tag_ops_t* v, uint32_t tag);
41 static int vendor_tag_descriptor_get_tag_type(const vendor_tag_ops_t* v, uint32_t tag);
68 ALOGE("%s: tag count %d from vendor ops is invalid.", __FUNCTION__, tagCount);
85 uint32_t tag = tagArray[i]; local
86 if (tag < CAMERA_METADATA_VENDOR_TAG_BOUNDARY) {
87 ALOGE("%s: vendor tag %d not in vendor tag section.", __FUNCTION__, tag);
90 const char *tagName = vOps->get_tag_name(vOps, tag);
118 uint32_t tag = tagArray[i]; local
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, argument
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
/frameworks/av/media/libstagefright/
H A DESDS.cpp71 uint8_t *tag, size_t *data_offset, size_t *data_size) const {
76 *tag = mData[offset++];
94 ALOGV("tag=0x%02x data_size=%zu", *tag, *data_size);
106 uint8_t tag; local
110 skipDescriptorHeader(0, mSize, &tag, &data_offset, &data_size);
116 if (tag != kTag_ESDescriptor) {
173 uint8_t tag; local
176 offset, size, &tag, &sub_offset, &sub_size);
182 if (tag !
69 skipDescriptorHeader( size_t offset, size_t size, uint8_t *tag, size_t *data_offset, size_t *data_size) const argument
207 uint8_t tag; local
[all...]
/frameworks/base/core/java/android/app/
H A DKeyguardManager.java95 KeyguardLock(String tag) { argument
96 mTag = tag;
173 * @param tag A tag that informally identifies who you are (for debugging who
180 public KeyguardLock newKeyguardLock(String tag) { argument
181 return new KeyguardLock(tag);
H A DNotificationManager.java48 * {@link String} tag parameter, which may be {@code null}. These parameters
49 * are used to form a pair (tag, id), or ({@code null}, id) if tag is
52 * of the notify methods with a (tag, id) pair that is currently active and
55 * be replaced with the new one. This is also the same tag and id you pass
128 * the same tag and id has already been posted by your application and has not yet been
131 * @param tag A string identifier for this notification. May be {@code null}.
132 * @param id An identifier for this notification. The pair (tag, id) must be unique
137 public void notify(String tag, int id, Notification notification) argument
152 service.enqueueNotificationWithTag(pkg, mContext.getOpPackageName(), tag, i
164 notifyAsUser(String tag, int id, Notification notification, UserHandle user) argument
203 cancel(String tag, int id) argument
217 cancelAsUser(String tag, int id, UserHandle user) argument
[all...]
H A DTabActivity.java65 * @param tag the name of the default tab
67 public void setDefaultTab(String tag) { argument
68 mDefaultTab = tag;
/frameworks/base/core/java/android/os/
H A DTokenWatcher.java40 * @param tag A debugging tag for this TokenWatcher
42 public TokenWatcher(Handler h, String tag) argument
45 mTag = tag != null ? tag : "TokenWatcher";
65 * @param tag A string used by the {@link #dump} method for debugging,
68 public void acquire(IBinder token, String tag) argument
75 Death d = new Death(token, tag);
140 a.add("[" + i + "] " + mTokens.get(b).tag + " - " + b);
183 String tag; field in class:TokenWatcher.Death
185 Death(IBinder token, String tag) argument
[all...]
H A DUpdateLock.java73 * @param tag An arbitrary string used to identify this lock instance in dump output.
75 public UpdateLock(String tag) { argument
76 mTag = tag;
/frameworks/base/core/java/android/transition/
H A DTransitionInflater.java129 // Make sure we are on a start tag.
195 private Object createCustom(AttributeSet attrs, Class expectedType, String tag) { argument
199 throw new InflateException(tag + " tag must have a 'class' attribute");
237 // Make sure we are on a start tag.
291 // Make sure we are on a start tag.

Completed in 7041 milliseconds

12345678910