Searched refs:label (Results 201 - 225 of 337) sorted by relevance

1234567891011>>

/frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
H A DDirectedAcyclicGraphTest.java197 TestNode(@NonNull String label) { argument
198 mLabel = label;
/frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
H A DTexture2dProgram.java315 * Checks to see if the location we obtained is valid. GLES returns -1 if a label
320 public static void checkLocation(int location, String label) { argument
322 throw new RuntimeException("Unable to locate '" + label + "' in program");
/frameworks/support/navigation/common/src/main/java/androidx/navigation/
H A DNavDestination.java137 * Sets the descriptive label of this destination.
139 * @param label A descriptive label of this destination.
141 public void setLabel(@Nullable CharSequence label) { argument
142 mLabel = label;
146 * Gets the descriptive label of this destination.
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileAdapter.java272 R.string.accessibility_qs_edit_add_tile_label, info.state.label);
278 R.string.accessibility_qs_edit_tile_label, position + 1, info.state.label);
330 mContext.getString(R.string.accessibility_qs_edit_move_tile, info.state.label),
331 mContext.getString(R.string.accessibility_qs_edit_remove_tile, info.state.label),
375 CharSequence fromLabel = mTiles.get(from).state.label;
403 // The first null is the edit tiles label, the second null is the tile divider.
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DWifiTile.java189 state.label = r.getString(R.string.quick_settings_wifi_label);
194 state.label = r.getString(R.string.quick_settings_wifi_label);
197 state.label = removeDoubleQuotes(cb.ssid);
200 state.label = r.getString(R.string.quick_settings_wifi_label);
203 state.label = r.getString(R.string.quick_settings_wifi_label);
H A DBluetoothTile.java136 state.label = mContext.getString(R.string.quick_settings_bluetooth_label);
143 state.label = mController.getConnectedDeviceName();
146 mContext.getString(R.string.accessibility_bluetooth_name, state.label)
171 * Returns the secondary label to use for the given bluetooth connection in the form of the
H A DFlashlightTile.java104 state.label = mHost.getContext().getString(R.string.quick_settings_flashlight_label);
H A DNightDisplayTile.java104 state.label = state.contentDescription =
113 * Returns a {@link String} for the secondary label that reflects when the light will be turned
143 // user-selected toggle time). This helps reduce how much space the label takes.
150 // No secondary label when auto mode is disabled.
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_advsimd_Blur.S1356 .macro prefill_list, macro, nextmacro, max_r, step, label
1357 .macro ifneeded macro, nextmacro, line, nextline, ra, rb, step, label
1360 \label\macro\line:
1361 prefill_\macro \label\nextmacro\line, \label\nextmacro\nextline, \ra, \rb, \step
1364 ifneeded \macro \nextmacro, 13, 12, xx, xx, \step, \label
1365 ifneeded \macro \nextmacro, 12, 11, xx, xx, \step, \label
1366 ifneeded \macro \nextmacro, 11, 10, xx, v17.16b, \step, \label
1367 ifneeded \macro \nextmacro, 10, 9, v18.16b, v19.16b, \step, \label
1368 ifneeded \macro \nextmacro, 9, 8, v20.16b, v21.16b, \step, \label
[all...]
/frameworks/base/cmds/statsd/src/
H A DStatsService.cpp678 int32_t label; local
684 label = atoi(args[1].c_str());
692 label = atoi(args[2].c_str());
702 fprintf(out, "Logging AppBreadcrumbReported(%d, %d, %d) to statslog.\n", uid, label, state);
703 android::util::stats_write(android::util::APP_BREADCRUMB_REPORTED, uid, label, state);
997 Status StatsService::sendAppBreadcrumbAtom(int32_t label, int32_t state) { argument
1001 IPCThreadState::self()->getCallingUid(), label,
/frameworks/base/services/core/java/com/android/server/job/
H A DJobPackageTracker.java585 final String label;
587 case EVENT_START_JOB: label = " START"; break;
588 case EVENT_STOP_JOB: label = " STOP"; break;
589 case EVENT_START_PERIODIC_JOB: label = "START-P"; break;
590 case EVENT_STOP_PERIODIC_JOB: label = " STOP-P"; break;
591 default: label = " ??"; break;
596 pw.print(label);
/frameworks/base/core/java/android/widget/
H A DCalendarViewLegacyDelegate.java731 TextView label = (TextView) mDayNamesHeader.getChildAt(0);
733 label.setVisibility(View.VISIBLE);
735 label.setVisibility(View.GONE);
738 label = (TextView) mDayNamesHeader.getChildAt(i);
740 label.setTextAppearance(mWeekDayTextAppearanceResId);
743 label.setText(mDayNamesShort[i - 1]);
744 label.setContentDescription(mDayNamesLong[i - 1]);
745 label.setVisibility(View.VISIBLE);
747 label.setVisibility(View.GONE);
/frameworks/base/core/java/com/android/internal/accessibility/
H A DAccessibilityShortcutController.java328 String label = serviceInfo.getResolveInfo().loadLabel(pm).toString();
331 return label;
333 return String.format("%s\n%s", label, summary);
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
H A DPluginManagerImpl.java224 String label = pkg;
227 label = pm.getApplicationInfo(pkg, 0).loadLabel(pm).toString();
239 .setContentTitle("Plugin \"" + label + "\" has updated")
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DCustomTile.java112 // Update the label if there is no label.
290 return getState().label;
317 state.label = mTile.getLabel();
321 state.contentDescription = state.label;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCastControllerImpl.java213 final CharSequence label = appInfo.loadLabel(pm);
214 if (!TextUtils.isEmpty(label)) {
215 return label.toString();
218 Log.w(TAG, "No label found for package: " + packageName);
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DLockscreenFragment.java127 shortcut.setSummary(info != null ? info.label : null);
186 return mShortcut.label;
362 mIconState.contentDescription = mShortcut.label;
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DGarbageMonitor.java378 return getState().label;
388 state.label = mContext.getString(R.string.heap_dump_tile_name);
396 state.label = "Dump SysUI";
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
H A DLockFindingClassVisitor.java147 // The instruction after a monitor_exit should be a label for the end of the implicit
151 "Expected to find label after monitor exit");
156 LabelNode label = (LabelNode)instructions.get(labelIndex);
160 checkState(handlersMap.get(i).get(0).end == label,
161 "Expected label to be the end of monitor exit's try block");
166 insertMethodCallAfter(mn, frameMap, handlersMap, label, labelIndex, call);
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java134 CharSequence label = mInfo.loadLabel(context.getPackageManager());
135 mLabel = label != null ? label.toString() : mInfo.packageName;
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java134 CharSequence label = mInfo.loadLabel(context.getPackageManager());
135 mLabel = label != null ? label.toString() : mInfo.packageName;
/frameworks/base/apct-tests/perftests/core/src/android/text/
H A DBoringLayoutCreateDrawPerfTest.java71 public BoringLayoutCreateDrawPerfTest(String label, int length, TextType textType, argument
H A DStaticLayoutCreateDrawPerfTest.java73 public StaticLayoutCreateDrawPerfTest(String label, int length, TextType textType, argument
H A DTextViewSetTextMeasurePerfTest.java74 public TextViewSetTextMeasurePerfTest(String label, int length, TextType textType, argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DSegmentedButtons.java33 private static final int LABEL_RES_KEY = R.id.label;

Completed in 613 milliseconds

1234567891011>>