Searched refs:tag (Results 126 - 150 of 222) sorted by relevance

123456789

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLEnvironment.java40 private GLEnvironment(NativeAllocatorTag tag) { argument
/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.h216 camera_metadata_ro_entry_t staticInfo(uint32_t tag,
347 camera_metadata_ro_entry_t staticInfo(uint32_t tag, argument
349 return mParameters.staticInfo(tag, minCount, maxCount);
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java202 * @param tag semantic meaning tag string.
204 public void addWordToSlot(String slot, String word, String pron, int weight, String tag) { argument
205 SR_GrammarAddWordToSlot(mGrammar, slot, word, pron, weight, tag);
354 * in a grxml file, or in the <code>tag</code> slot of
664 String word, String pronunciation, int weight, String tag);
667 // const struct SR_Nametag_t* nametag, int weight, String tag);
663 SR_GrammarAddWordToSlot(int grammar, String slot, String word, String pronunciation, int weight, String tag) argument
/frameworks/base/core/java/com/android/internal/net/
H A DNetworkStatsFactory.java85 entry.tag = TAG_NONE;
145 entry.tag = TAG_NONE;
202 entry.tag = kernelToTag(reader.nextString());
/frameworks/base/core/jni/android/graphics/
H A DHarfbuzzSkia.cpp191 HB_Error harfbuzzSkiaGetTable(void* font, const HB_Tag tag, HB_Byte* buffer, HB_UInt* len) argument
199 const size_t tableSize = SkFontHost::GetTableSize(typeface->uniqueID(), tag);
210 SkFontHost::GetTableData(typeface->uniqueID(), tag, 0, tableSize, buffer);
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DNotificationPlayer.java241 * @param tag a string to use for debugging
243 public NotificationPlayer(String tag) { argument
244 if (tag != null) {
245 mTag = tag;
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java378 public FragmentTransaction add(Fragment fragment, String tag) { argument
379 doAddOp(0, fragment, tag, OP_ADD);
388 public FragmentTransaction add(int containerViewId, Fragment fragment, String tag) { argument
389 doAddOp(containerViewId, fragment, tag, OP_ADD);
393 private void doAddOp(int containerViewId, Fragment fragment, String tag, int opcmd) { argument
396 if (tag != null) {
397 if (fragment.mTag != null && !tag.equals(fragment.mTag)) {
398 throw new IllegalStateException("Can't change tag of fragment "
400 + " now " + tag);
402 fragment.mTag = tag;
424 replace(int containerViewId, Fragment fragment, String tag) argument
[all...]
H A DFragmentBreadCrumbs.java294 Object tag = v.getTag();
295 if (tag != bse) {
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java378 public FragmentTransaction add(Fragment fragment, String tag) { argument
379 doAddOp(0, fragment, tag, OP_ADD);
388 public FragmentTransaction add(int containerViewId, Fragment fragment, String tag) { argument
389 doAddOp(containerViewId, fragment, tag, OP_ADD);
393 private void doAddOp(int containerViewId, Fragment fragment, String tag, int opcmd) { argument
396 if (tag != null) {
397 if (fragment.mTag != null && !tag.equals(fragment.mTag)) {
398 throw new IllegalStateException("Can't change tag of fragment "
400 + " now " + tag);
402 fragment.mTag = tag;
424 replace(int containerViewId, Fragment fragment, String tag) argument
[all...]
H A DFragmentActivity.java55 * <li> <p>When using the &lt;fragment> tag, this implementation can not
57 * specify an ID (or tag) in the &lt;fragment>.</p>
233 * Add support for inflating the &lt;fragment> tag.
247 String tag = a.getString(FragmentTag.Fragment_tag);
252 if (containerId == View.NO_ID && id == View.NO_ID && tag == null) {
254 + ": Must specify unique android:id, android:tag, or have a parent with an id for " + fname);
261 if (fragment == null && tag != null) {
262 fragment = mFragments.findFragmentByTag(tag);
276 fragment.mTag = tag;
287 + ", tag "
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp223 fprintf(stderr, "%s:%d: No start tag found\n",
228 fprintf(stderr, "%s:%d: Invalid start tag %s, expected <manifest>\n",
744 fprintf(stderr, "No <manifest> tag.\n");
814 String8 tag(child->getElementName());
815 if (tag == "activity" || tag == "service" || tag == "receiver" || tag == "provider") {
817 } else if (tag == "activity-alias") {
832 String8 tag(chil
2492 addTagAttrPair(KeyedVector<String8, Vector<NamespaceAttributePair> >* dest, const char* tag, const char* ns, const char* attr) argument
[all...]
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java349 && strEquals(info.tag, peOther.info.tag)
370 code *= hash(info.tag);
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java60 * tag in the "uses-policies" section of its meta-data.
71 * tag in the "uses-policies" section of its meta-data.
81 * tag in the "uses-policies" section of its meta-data.
92 * tag in the "uses-policies" section of its meta-data.
102 * tag in the "uses-policies" section of its meta-data.
111 * tag in the "uses-policies" section of its meta-data.
121 * tag in the "uses-policies" section of its meta-data.
129 * tag in the "uses-policies" section of its meta-data.
137 * tag in the "uses-policies" section of its meta-data.
145 * tag i
152 final public String tag; field in class:DeviceAdminInfo.PolicyInfo
[all...]
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DToastTest.java48 protected String tag() { method in class:ToastTest
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java64 gr.tag(
H A DSettingsPanelView.java106 gr.tag(
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java324 * @param tag to record with the error
327 public static void wtf(String tag, Throwable t) { argument
330 mApplicationObject, tag, new ApplicationErrorReport.CrashInfo(t))) {
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DAndroidJUnitRunner.java203 private boolean getBooleanArgument(Bundle arguments, String tag) { argument
204 String tagString = arguments.getString(tag);
/frameworks/base/services/java/com/android/server/power/
H A DPowerManagerService.java561 public void acquireWakeLock(IBinder lock, int flags, String tag, WorkSource ws) { argument
565 PowerManager.validateWakeLockParameters(flags, tag);
579 acquireWakeLockInternal(lock, flags, tag, ws, uid, pid);
585 private void acquireWakeLockInternal(IBinder lock, int flags, String tag, WorkSource ws, argument
591 + ", tag=\"" + tag + "\", ws=" + ws + ", uid=" + uid + ", pid=" + pid);
598 if (!wakeLock.hasSameProperties(flags, tag, ws, uid, pid)) {
601 wakeLock.updateProperties(flags, tag, ws, uid, pid);
605 wakeLock = new WakeLock(lock, flags, tag, ws, uid, pid);
2384 public WakeLock(IBinder lock, int flags, String tag, WorkSourc argument
2399 hasSameProperties(int flags, String tag, WorkSource workSource, int ownerUid, int ownerPid) argument
2408 updateProperties(int flags, String tag, WorkSource workSource, int ownerUid, int ownerPid) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DWifiService.java1272 WifiLock(int lockMode, String tag, IBinder binder, WorkSource ws) { argument
1273 super(lockMode, tag, binder, ws);
1355 public boolean acquireWifiLock(IBinder binder, int lockMode, String tag, WorkSource ws) { argument
1373 WifiLock wifiLock = new WifiLock(lockMode, tag, binder, ws);
1511 DeathRecipient(int mode, String tag, IBinder binder, WorkSource ws) { argument
1513 mTag = tag;
1530 Multicaster(String tag, IBinder binder) { argument
1531 super(Binder.getCallingUid(), tag, binder, null);
1566 public void acquireMulticastLock(IBinder binder, String tag) { argument
1571 mMulticasters.add(new Multicaster(tag, binde
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java57 * Intent to start an activity when a tag with NDEF payload is discovered.
65 * disrupt the interaction with the tag as the user interacts with the screen.
67 * <p>If the tag has an NDEF payload this intent is started before
78 * Intent to start an activity when a tag is discovered and activities are registered for the
79 * specific technologies on the tag.
100 * <p>A tag matches if any of the
103 * activity is considered a match is any single <code>tech-list</code> matches the tag that was
105 * example that will match any tag using {@link NfcF} or any tag using {@link NfcA},
134 * Intent to start an activity when a tag i
1204 dispatch(Tag tag) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java502 public int getSpanStart(Object tag) { argument
507 public int getSpanEnd(Object tag) { argument
508 return nonEmptySpans.contains(tag) ? 1 : 0;
512 public int getSpanFlags(Object tag) { argument
/frameworks/base/services/java/com/android/server/net/
H A DNetworkPolicyManagerService.java673 for (String tag : beforeNotifs) {
674 if (!mActiveNotifs.contains(tag)) {
675 cancelNotification(tag);
720 * Build unique tag that identifies an active {@link NetworkPolicy}
732 final String tag = buildNotificationTag(policy, type);
834 packageName, tag, 0x0, builder.getNotification(), idReceived,
836 mActiveNotifs.add(tag);
846 private void enqueueRestrictedNotification(String tag) { argument
869 mNotifManager.enqueueNotificationWithTag(packageName, tag,
871 mActiveNotifs.add(tag);
877 cancelNotification(String tag) argument
[all...]
/frameworks/base/media/libdrm/mobile1/include/xml/
H A Dxml_tinyParser.h153 uint8_t tag[XML_MAX_PROPERTY_LEN]; member in struct:_XML_TREE
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl115 void disableKeyguard(IBinder token, String tag);

Completed in 481 milliseconds

123456789