Searched refs:tag (Results 226 - 250 of 451) sorted by relevance

1234567891011>>

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOTree.java198 private static XMLNode getNextNode(XMLNode node, String tag) throws IOException { argument
200 throw new IOException("No node for " + tag);
204 if (!child.getTag().equals(tag))
205 throw new IOException("Expected " + node.getTag() + " to have child '" + tag +
H A DXMLNode.java37 public XMLNode(XMLNode parent, String tag, Attributes attributes) throws SAXException { argument
38 mTag = tag;
54 public XMLNode(XMLNode parent, String tag, Map<String, String> attributes) { argument
55 mTag = tag;
164 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
172 throw new OMAException("Non-namespaced tag: '" + mTag + "'");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSms7BitEncodingTranslator.java189 String tag = parser.getName();
191 Rlog.d(TAG, "tag: " + tag);
193 if (XML_TRANSLATION_TYPE_TAG.equals(tag)) {
207 } else if (XML_CHARACTOR_TAG.equals(tag) && mTranslationTable != null) {
H A DIccProvider.java63 protected static final String STR_TAG = "tag";
199 String tag = initialValues.getAsString("tag");
202 boolean success = addIccRecordToEf(efType, tag, number, null, pin2, subId);
293 String tag = null;
315 tag = normalizeValue(val);
330 boolean success = deleteIccRecordFromEf(efType, tag, number, emails, pin2, subId);
376 String tag = values.getAsString("tag");
383 boolean success = updateIccRecordInEf(efType, tag, numbe
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java126 * fragment to it with the given tag, and committing it. This does
131 * @param tag The tag for this fragment, as per
134 public void show(FragmentManager manager, String tag) { argument
138 ft.add(this, tag);
146 * @param tag The tag for this fragment, as per
151 public int show(FragmentTransaction transaction, String tag) { argument
154 transaction.add(this, tag);
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java571 final String tag = in.getName();
577 if (TAG_ROOT_PATH.equals(tag)) {
579 } else if (TAG_FILES_PATH.equals(tag)) {
581 } else if (TAG_CACHE_PATH.equals(tag)) {
583 } else if (TAG_EXTERNAL.equals(tag)) {
691 // Encode the tag and path separately
702 final String tag = Uri.decode(path.substring(1, splitIndex));
705 final File root = mRoots.get(tag);
/frameworks/base/core/jni/
H A Dandroid_app_admin_SecurityLog.cpp24 // The size of the tag number comes out of the payload size.
54 jint tag, jstring value) {
70 return __android_log_security_bwrite(tag, buf, 2 + sizeof(len) + len);
74 jint tag, jobjectArray value) {
76 return android_app_admin_SecurityLog_writeEvent_String(env, clazz, tag, NULL);
81 size_t pos = 2; // Save room for type tag & array count
126 return __android_log_security_bwrite(tag, buf, pos);
52 android_app_admin_SecurityLog_writeEvent_String(JNIEnv* env, jobject , jint tag, jstring value) argument
73 android_app_admin_SecurityLog_writeEvent_Array(JNIEnv* env, jobject clazz, jint tag, jobjectArray value) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DBluetoothTile.java263 item.tag = device;
272 if (item == null || item.tag == null) return;
273 final CachedBluetoothDevice device = (CachedBluetoothDevice) item.tag;
282 if (item == null || item.tag == null) return;
283 final CachedBluetoothDevice device = (CachedBluetoothDevice) item.tag;
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java64 * Intent to start an activity when a tag with NDEF payload is discovered.
72 * disrupt the interaction with the tag as the user interacts with the screen.
74 * <p>If the tag has an NDEF payload this intent is started before
85 * Intent to start an activity when a tag is discovered and activities are registered for the
86 * specific technologies on the tag.
107 * <p>A tag matches if any of the
110 * activity is considered a match is any single <code>tech-list</code> matches the tag that was
112 * example that will match any tag using {@link NfcF} or any tag using {@link NfcA},
141 * Intent to start an activity when a tag i
332 onTagDiscovered(Tag tag) argument
413 onUnlockAttempted(Tag tag) argument
1546 ignore(final Tag tag, int debounceMs, final OnTagRemovedListener tagRemovedListener, final Handler handler) argument
1586 dispatch(Tag tag) argument
[all...]
H A DINfcAdapter.aidl61 void dispatch(in Tag tag);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCarrierPrivilegeRules.java148 private String tag; field in class:UiccCarrierPrivilegeRules.TLV
158 public TLV(String tag) { argument
159 this.tag = tag;
168 int offset = tag.length();
183 log("Parse TLV: " + tag);
184 if (!data.startsWith(tag)) {
187 int index = tag.length();
205 log("Got TLV: " + tag + "," + length + "," + value);
/frameworks/base/core/java/android/app/
H A DINotificationManager.aidl44 void enqueueNotificationWithTag(String pkg, String opPkg, String tag, int id,
46 void cancelNotificationWithTag(String pkg, String tag, int id, int userId);
68 void cancelNotificationFromListener(in INotificationListener token, String pkg, String tag, int id);
H A DNotificationManager.java68 * {@link String} tag parameter, which may be {@code null}. These parameters
69 * are used to form a pair (tag, id), or ({@code null}, id) if tag is
72 * of the notify methods with a (tag, id) pair that is currently active and
75 * be replaced with the new one. This is also the same tag and id you pass
273 * the same tag and id has already been posted by your application and has not yet been
276 * @param tag A string identifier for this notification. May be {@code null}.
277 * @param id An identifier for this notification. The pair (tag, id) must be unique
282 public void notify(String tag, int id, Notification notification) argument
284 notifyAsUser(tag, i
290 notifyAsUser(String tag, int id, Notification notification, UserHandle user) argument
344 cancel(String tag, int id) argument
352 cancelAsUser(String tag, int id, UserHandle user) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCastControllerImpl.java142 device.tag = mProjection;
158 device.tag = route;
167 if (device == null || device.tag == null) return;
168 final RouteInfo route = (RouteInfo) device.tag;
175 final boolean isProjection = device.tag instanceof MediaProjectionInfo;
178 final MediaProjectionInfo projection = (MediaProjectionInfo) device.tag;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp48 // An unknown tag encounterred.
342 // There's nothing to do for this tag. It doesn't have an actual value.
376 // value in this tag are definitely incompatible.)
445 // 1. For tag N where N >= 128, tag N has the same properties as
446 // tag N % 128.
971 TagType tag = static_cast<TagType>(i); local
972 const ELFAttributeValue& value = m_Attrs[tag];
975 result += leb128::size(static_cast<uint32_t>(tag));
985 TagType tag local
1029 TagType tag = static_cast<TagType>(i); local
1039 TagType tag = static_cast<TagType>(i); local
1052 TagType tag = unknown_attr_it->first; local
[all...]
/frameworks/base/core/java/android/content/
H A DUndoManager.java89 public UndoOwner getOwner(String tag, Object data) { argument
90 if (tag == null) {
91 throw new NullPointerException("tag can't be null");
96 UndoOwner owner = mOwners.get(tag);
108 owner = new UndoOwner(tag, this);
110 mOwners.put(tag, owner);
198 String tag = in.readString();
200 owner = new UndoOwner(tag, this);
203 mOwners.put(tag, owner);
/frameworks/base/core/java/android/print/
H A DIPrintSpooler.aidl105 void setPrintJobTag(in PrintJobId printJobId, String tag, IPrintSpoolerCallbacks callback,
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DSegmentedButtons.java65 final Object tag = c.getTag();
66 final boolean selected = Objects.equals(mSelectedValue, tag);
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java58 // Starts by looking for the entry tag
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
84 // to their respective &quot;read&quot; methods for processing. Otherwise, skips the tag.
120 String tag = parser.getName();
122 if (tag.equals("link")) {
151 // if the next tag after a START_TAG isn't a matching END_TAG, it keeps going until it
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiUtils.java132 * @param tag the tag of caller module (for log message)
135 static boolean checkCommandSource(HdmiCecMessage cmd, int expectedAddress, String tag) { argument
138 Slog.w(tag, "Invalid source [Expected:" + expectedAddress + ", Actual:" + src + "]");
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DJobStatus.java86 final String tag; field in class:JobStatus
130 int sourceUserId, String tag, int numFailures, long earliestRunTimeElapsedMillis,
153 this.sourceTag = tag;
159 this.tag = "*job*/" + this.batteryName;
231 int sourceUserId, String tag) {
243 return new JobStatus(job, callingUid, sourcePackageName, sourceUserId, tag, 0,
298 return tag;
579 pw.print(" tag="); pw.println(tag);
129 JobStatus(JobInfo job, int callingUid, String sourcePackageName, int sourceUserId, String tag, int numFailures, long earliestRunTimeElapsedMillis, long latestRunTimeElapsedMillis) argument
230 createFromJobInfo(JobInfo job, int callingUid, String sourcePackageName, int sourceUserId, String tag) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimPhoneBookManager.java87 // Phonebook reference file constructed tag defined in 3GPP TS 31.102
94 // The order of this tag showing in the PBR record.
263 // If the tag is type 2 and EF_IAP exists, we need to build tpe 2 email list
591 int tag;
595 tag = tlv.getTag();
596 switch(tag) {
602 parseEfAndSFI(tlvEfSfi, tag);
609 int tag;
613 tag = tlv.getTag();
614 switch(tag) {
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DSupportActionModeWrapper.java57 public void setTag(Object tag) { argument
58 mWrappedObject.setTag(tag);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DFrameProcessor.h68 bool updatePendingState(const CameraMetadata& result, int32_t tag, T* value,
/frameworks/base/core/java/com/android/internal/net/
H A DNetworkStatsFactory.java106 entry.tag = TAG_NONE;
164 entry.tag = TAG_NONE;
292 entry.tag = kernelToTag(reader.nextString());
302 && (limitTag == TAG_ALL || limitTag == entry.tag)) {

Completed in 1150 milliseconds

1234567891011>>