Searched refs:label (Results 101 - 125 of 282) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/specs/gles11/
H A Dchecks.spec89 glObjectLabelKHR nullAllowed label
90 glObjectLabel nullAllowed label check label length
/frameworks/base/core/java/android/provider/
H A DContacts.java903 * The user provided label for the phone number, only used if TYPE is TYPE_CUSTOM.
908 public static final String LABEL = "label";
954 CharSequence label, CharSequence[] labelArray) {
967 if (!TextUtils.isEmpty(label)) {
968 display = label;
979 CharSequence label) {
980 return getDisplayLabel(context, type, label, null);
1189 * The user defined label for the the contact method.
1194 public static final String LABEL = "label";
1391 int type, CharSequence label) {
953 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
978 getDisplayLabel(Context context, int type, CharSequence label) argument
1390 getDisplayLabel(Context context, int kind, int type, CharSequence label) argument
1755 getDisplayLabel(Context context, int type, CharSequence label) argument
[all...]
H A DContactsContract.java1071 * The package containing resources for this status: label and icon.
1077 * The resource ID of the label describing the source of contact
1490 * <td> The package containing resources for this status: label and icon.</td>
1496 * <td>The resource ID of the label describing the source of contact status,
3226 * The package containing resources for this status: label and icon.
3232 * The resource ID of the label describing the source of the status update, e.g. "Google
3692 * The resource name of the label describing the source of the status update, e.g. "Google
3701 public static final String RES_LABEL = "label";
4637 * <td>The package containing resources for this status: label and icon.</td>
4643 * <td>The resource ID of the label describin
6100 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
6110 getDisplayLabel(Context context, int type, CharSequence label) argument
6150 getTypeLabel(Resources res, int type, CharSequence label) argument
6361 getTypeLabel(Resources res, int type, CharSequence label) argument
6569 getTypeLabel(Resources res, int type, CharSequence label) argument
6707 getTypeLabel(Resources res, int type, CharSequence label) argument
6741 getProtocolLabel(Resources res, int type, CharSequence label) argument
6914 getTypeLabel(Resources res, int type, CharSequence label) argument
7041 getTypeLabel(Resources res, int type, CharSequence label) argument
7137 getTypeLabel(Resources res, int type, CharSequence label) argument
7466 getTypeLabel(Resources res, int type, CharSequence label) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DAirplaneModeTile.java92 state.label = mContext.getString(R.string.airplane_mode);
99 state.contentDescription = state.label;
H A DDataSaverTile.java104 state.label = mContext.getString(R.string.data_saver);
105 state.contentDescription = state.label;
H A DHotspotTile.java119 state.label = mContext.getString(R.string.quick_settings_hotspot_label);
141 state.contentDescription = state.label;
H A DLocationTile.java107 state.label = mContext.getString(R.string.quick_settings_location_label);
112 state.label = mContext.getString(R.string.quick_settings_location_label);
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java881 public void writeBeginSnapshot(String label) { argument
891 public void writeStartTiming(String label) { argument
913 public void writeMeasurement(String label, long value) { argument
914 mTestResult.putLong(label, value);
917 public void writeMeasurement(String label, float value) { argument
918 mTestResult.putFloat(label, value);
921 public void writeMeasurement(String label, String value) { argument
922 mTestResult.putString(label, value);
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DItem.java139 TextView label = (TextView) view.findViewById(R.id.suw_items_title);
140 label.setText(getTitle());
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
H A DBandwidthTest.java301 * @param label to attach to this given stats.
306 public void addStatsToResults(String label, NetworkStats stats, Bundle results, int uid){ argument
330 results.putInt(label + "uid", totalStats.uid);
331 results.putLong(label + "tx", totalStats.txBytes);
332 results.putLong(label + "rx", totalStats.rxBytes);
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DAutomaticActivity.java122 TestResult(String label, float error) { argument
123 mLabel = label;
177 private static void logTestResultHash(String label, HashMap<String, TestResult> map) { argument
179 Log.d(LOG_TAG, label + ":");
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter.java361 public void visitLabel(Label label) { argument
363 mOrgWriter.visitLabel(label);
410 public void visitJumpInsn(int opcode, Label label) { argument
412 mOrgWriter.visitJumpInsn(opcode, label);
H A DStubMethodAdapter.java278 public void visitLabel(Label label) { argument
280 mParentVisitor.visitLabel(label);
327 public void visitJumpInsn(int opcode, Label label) { argument
329 mParentVisitor.visitJumpInsn(opcode, label);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaNotificationManager.java292 String label;
296 label = mService.getString(R.string.label_pause);
300 label = mService.getString(R.string.label_play);
304 builder.addAction(new NotificationCompat.Action(icon, label, intent));
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaNotificationManager.java292 String label;
296 label = mService.getString(R.string.label_pause);
300 label = mService.getString(R.string.label_play);
304 builder.addAction(new NotificationCompat.Action(icon, label, intent));
/frameworks/base/core/java/android/content/
H A DClipData.java52 * For display to the user, it also has a label.</p>
672 * @param label Label to show to the user describing this clip.
676 public ClipData(CharSequence label, String[] mimeTypes, Item item) { argument
677 mClipDescription = new ClipDescription(label, mimeTypes);
736 * @param label User-visible label for the clip data.
740 static public ClipData newPlainText(CharSequence label, CharSequence text) { argument
742 return new ClipData(label, MIMETYPES_TEXT_PLAIN, item);
749 * @param label User-visible label fo
755 newHtmlText(CharSequence label, CharSequence text, String htmlText) argument
769 newIntent(CharSequence label, Intent intent) argument
785 newUri(ContentResolver resolver, CharSequence label, Uri uri) argument
832 newRawUri(CharSequence label, Uri uri) argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerInfo.java73 int label = 0;
99 label = sa.getResourceId(com.android.internal.R.styleable.SpellChecker_label, 0);
137 mLabel = label;
209 * Load the user-displayed label for this spell checker.
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/accounts/
H A DAuthenticatorHelper.java123 * Gets the label associated with a particular account type. If none found, return null.
125 * @return a CharSequence for the label or null if one cannot be found.
128 CharSequence label = null;
134 label = authContext.getResources().getText(desc.labelId);
136 Log.w(TAG, "No label name for account type " + accountType);
138 Log.w(TAG, "No label icon for account type " + accountType);
141 return label;
158 * Gets the resource id of the label associated with a particular account type. If none found,
161 * @return a resource id for the label or -1 if none found;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHwTests.java87 String label = labelSeq != null
91 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
93 String[] labelPath = label.split("/");
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DInputTypeActivity.java142 private View buildEntryView(int inputType, int label) { argument
150 TextView textView = (TextView) view.findViewById(R.id.label);
151 textView.setText(label);
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DMainActivity.java111 String label = labelSeq != null
115 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
117 String[] labelPath = label.split("/");
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
H A DVectorDrawableTest.java86 String label = labelSeq != null
90 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
92 String[] labelPath = label.split("/");
/frameworks/support/frameworks/support/samples/Support13Demos/src/com/example/android/supportv13/
H A DSupport13Demos.java84 String label = labelSeq != null
88 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
90 String[] labelPath = label.split("/");
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/
H A DSupport4Demos.java84 String label = labelSeq != null
88 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
90 String[] labelPath = label.split("/");
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/
H A DSupport7Demos.java84 String label = labelSeq != null
88 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
90 String[] labelPath = label.split("/");

Completed in 703 milliseconds

1234567891011>>