Searched refs:label (Results 1 - 25 of 337) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglObjectPtrLabel.java1 // C function void glObjectPtrLabel ( const void *ptr, GLsizei length, const GLchar *label )
3 public static native void glObjectPtrLabel(long ptr, String label); argument
H A DglObjectPtrLabelKHR.java1 // C function void glObjectPtrLabelKHR ( const void *ptr, GLsizei length, const GLchar *label )
3 public static native void glObjectPtrLabelKHR(long ptr, String label); argument
H A DglObjectPtrLabel.cpp1 /* void glObjectPtrLabel ( const void *ptr, GLsizei length, const GLchar *label ) */
3 android_glObjectPtrLabel(JNIEnv *_env, jobject _this, jlong ptr, jstring label) { argument
H A DglObjectPtrLabelKHR.cpp1 /* void glObjectPtrLabelKHR ( const void *ptr, GLsizei length, const GLchar *label ) */
3 android_glObjectPtrLabelKHR(JNIEnv *_env, jobject _this, jlong ptr, jstring label) { argument
/frameworks/base/core/java/android/gesture/
H A DPrediction.java24 Prediction(String label, double predictionScore) { argument
25 name = label;
H A DInstance.java21 * An instance represents a sample if the label is available or a query if the
22 * label is null.
38 // the label can be null
39 final String label; field in class:Instance
47 label = sampleName;
69 * @param label
72 static Instance createInstance(int sequenceType, int orientationType, Gesture gesture, String label) { argument
77 instance = new Instance(gesture.getID(), pts, label);
81 instance = new Instance(gesture.getID(), pts, label);
H A DLearner.java74 // the label can be null, as specified in Instance
75 if ((instance.label == null && name == null)
76 || (instance.label != null && instance.label.equals(name))) {
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DDocActivity.java24 static final String LABEL = "label";
29 String label = getIntent().getStringExtra(LABEL);
30 if (label != null) {
31 setTaskDescription(new ActivityManager.TaskDescription(label));
32 setTitle(label);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
H A DUidDetail.java22 public CharSequence label; field in class:UidDetail
/frameworks/base/core/java/android/view/
H A DKeyboardShortcutGroup.java40 * @param label The title to be used for this group, or null if there is none.
43 public KeyboardShortcutGroup(@Nullable CharSequence label, argument
45 mLabel = label;
50 * @param label The title to be used for this group, or null if there is none.
52 public KeyboardShortcutGroup(@Nullable CharSequence label) { argument
53 this(label, Collections.<KeyboardShortcutInfo>emptyList());
57 * @param label The title to be used for this group, or null if there is none.
63 public KeyboardShortcutGroup(@Nullable CharSequence label, argument
65 mLabel = label;
71 * @param label Th
76 KeyboardShortcutGroup(@ullable CharSequence label, boolean isSystemGroup) argument
[all...]
H A DKeyboardShortcutInfo.java38 * @param label The label that identifies the action performed by this shortcut.
51 @Nullable CharSequence label, @Nullable Icon icon, int keycode, int modifiers) {
52 mLabel = label;
61 * @param label The label that identifies the action performed by this shortcut.
70 public KeyboardShortcutInfo(CharSequence label, int keycode, int modifiers) { argument
71 this(label, null, keycode, modifiers);
75 * @param label The label tha
50 KeyboardShortcutInfo( @ullable CharSequence label, @Nullable Icon icon, int keycode, int modifiers) argument
83 KeyboardShortcutInfo(CharSequence label, char baseCharacter, int modifiers) argument
[all...]
/frameworks/base/core/java/android/util/
H A DStatsLog.java38 * @param label developer-chosen label.
41 public static boolean logStart(int label) { argument
49 service.sendAppBreadcrumbAtom(label,
63 * @param label developer-chosen label.
66 public static boolean logStop(int label) { argument
74 service.sendAppBreadcrumbAtom(label, StatsLog.APP_BREADCRUMB_REPORTED__STATE__STOP);
87 * @param label developer-chosen label
90 logEvent(int label) argument
[all...]
H A DTimingLogger.java56 /** A label to be included in every log. */
74 * @param label a string to be displayed with each log
76 public TimingLogger(String tag, String label) { argument
77 reset(tag, label);
86 * @param label a string to be displayed with each log
88 public void reset(String tag, String label) { argument
90 mLabel = label;
96 * the tag and label that was specified previously, either via
97 * the constructor or a call to reset(tag, label). If the
120 * @param splitLabel a label t
[all...]
/frameworks/base/core/java/android/os/storage/
H A DDiskInfo.java55 public String label; field in class:DiskInfo
69 label = parcel.readString();
78 private boolean isInteresting(String label) { argument
79 if (TextUtils.isEmpty(label)) {
82 if (label.equalsIgnoreCase("ata")) {
85 if (label.toLowerCase().contains("generic")) {
88 if (label.toLowerCase().startsWith("usb")) {
91 if (label.toLowerCase().startsWith("multiple")) {
100 if (isInteresting(label)) {
101 return res.getString(com.android.internal.R.string.storage_sd_card_label, label);
[all...]
/frameworks/base/core/java/android/os/
H A DPerformanceCollector.java29 * with name of test as the label, e.g. EmailPerformanceTest.
34 * with the name of test case as the label, e.g. testSimpleSendMailSequence.
71 * @param label description of code block between beginSnapshot and
75 public void writeBeginSnapshot(String label); argument
93 * @param label description of code block between startTiming and
97 public void writeStartTiming(String label); argument
116 * @param label short description of the metric that was measured
119 public void writeMeasurement(String label, long value); argument
126 * @param label short description of the metric that was measured
129 public void writeMeasurement(String label, floa argument
139 writeMeasurement(String label, String value) argument
305 beginSnapshot(String label) argument
362 startTiming(String label) argument
387 addIteration(String label) argument
411 stopTiming(String label) argument
424 addMeasurement(String label, long value) argument
435 addMeasurement(String label, float value) argument
446 addMeasurement(String label, String value) argument
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DAction.java49 * @param label The label to display for the Action.
51 public Action(long id, CharSequence label) { argument
52 this(id, label, null);
59 * @param label1 The label to display on the first line of the Action.
60 * @param label2 The label to display on the second line of the Action.
70 * @param label1 The label to display on the first line of the Action.
71 * @param label2 The label to display on the second line of the Action.
96 * Sets the first line label for this Action.
98 public final void setLabel1(CharSequence label) { argument
112 setLabel2(CharSequence label) argument
[all...]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DTitleBar.java30 public TitleBar(BridgeContext context, String label, int simulatedPlatformVersion) { argument
37 mTextView = setText(0, label, true);
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
H A DSimpleJobIntentService.java51 String label = intent.getStringExtra("label");
52 if (label == null) {
53 label = intent.toString();
55 toast("Executing: " + label);
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
H A DSimpleJobIntentService.java51 String label = intent.getStringExtra("label");
52 if (label == null) {
53 label = intent.toString();
55 toast("Executing: " + label);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DQueries.java45 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) {
46 return Phone.getTypeLabel(res, type, label);
65 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) {
66 return Email.getTypeLabel(res, type, label);
105 public abstract CharSequence getTypeLabel(Resources res, int type, CharSequence label); argument
/frameworks/base/core/proto/android/content/
H A Dclipdescription.proto30 optional string label = 2 [ (.android.privacy).dest = DEST_EXPLICIT ];
/frameworks/base/core/proto/android/server/
H A Dstatlogger.proto34 optional string label = 2;
/frameworks/base/telecomm/java/android/telecom/
H A DDisconnectCause.java28 * cause of the disconnect. Optionally, it may include a label and/or description to display to the
30 * the label and description. It also may contain a reason for the disconnect, which is intended for
123 * @param label The localized label to show to the user to explain the disconnect.
127 public DisconnectCause(int code, CharSequence label, CharSequence description, String reason) { argument
128 this(code, label, description, reason, ToneGenerator.TONE_UNKNOWN);
135 * @param label The localized label to show to the user to explain the disconnect.
140 public DisconnectCause(int code, CharSequence label, CharSequence description, String reason, argument
143 mDisconnectLabel = label;
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabaseConfiguration.java39 // when constructing a label to use in log messages.
54 * The label to use to describe the database when it appears in logs.
57 public final String label; field in class:SQLiteDatabaseConfiguration
139 label = stripPathForLogs(path);
158 this.label = other.label;

Completed in 585 milliseconds

1234567891011>>