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

12345678

/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp114 jstring label) {
115 ScopedUtfChars keyLabel(env, label);
113 android_view_KeyEvent_nativeKeyCodeFromString(JNIEnv* env, jobject clazz, jstring label) argument
/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java65 public InternalSelectionView(Context context, int numRows, String label) { argument
68 mLabel = label;
/frameworks/base/libs/hwui/
H A DLayer.cpp31 #define ATRACE_LAYER_WORK(label) \
33 label, \
H A DMatrix.cpp514 void Matrix4::dump(const char* label) const {
515 ALOGD("%s[simple=%d, type=0x%x", label ? label : "Matrix4", isSimple(), getType());
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java189 * when not, which should be set to label.
197 String label = null;
247 label = labelCandidate;
270 return label;
277 public static boolean isMobilePhoneLabel(final String label) { argument
280 // To support mobile type at that time, this custom label had been used.
281 return ("_AUTO_CELL".equals(label) || sMobilePhoneLabelSet.contains(label));
284 public static boolean isValidInV21ButUnknownToContactsPhoteType(final String label) { argument
285 return sPhoneTypesUnknownToContactsSet.contains(label);
[all...]
/frameworks/base/core/java/android/widget/
H A DAppSecurityPermissions.java159 CharSequence label = perm.mLabel;
169 builder.append(label);
170 label = builder;
174 permNameView.setText(label);
177 + ": " + label + " in group " + grp.name);
/frameworks/base/core/java/android/app/
H A DActivityManager.java566 ATTR_TASKDESCRIPTION_PREFIX + "label";
580 * @param label A label and description of the current state of this task.
584 public TaskDescription(String label, Bitmap icon, int colorPrimary) { argument
589 mLabel = label;
595 public TaskDescription(String label, int colorPrimary, String iconFilename) { argument
596 this(label, null, colorPrimary);
603 * @param label A label and description of the current state of this activity.
606 public TaskDescription(String label, Bitma argument
615 TaskDescription(String label) argument
644 setLabel(String label) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java443 /** Returns the activity label */
447 // If we are mocking, then return a mock label
455 /** Returns the application label */
459 // If we are mocking, then return a mock label
465 CharSequence label = (ri != null) ? ri.loadLabel(mPm) : null;
466 return (label != null) ? label.toString() : null;
489 // If we are mocking, then return a mock label
509 * Returns the given label for a user, badging if necessary.
511 public String getBadgedLabel(String label, in argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java900 * @param pm A PackageManager from which the label can be loaded; usually
908 CharSequence label = pm.getText(packageName, descriptionRes, this);
909 if (label != null) {
910 return 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/settings/
H A DToggleSlider.java75 mLabel = (TextView) findViewById(R.id.label);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DSegmentedButtons.java33 private static final int LABEL_RES_KEY = R.id.label;
/frameworks/base/services/print/java/com/android/server/print/
H A DPrintManagerService.java595 String label = serviceInfo.loadLabel(mContext.getPackageManager())
597 showEnableInstalledPrintServiceNotification(component, label,
738 String label, int userId) {
758 label))
737 showEnableInstalledPrintServiceNotification(ComponentName component, String label, int userId) argument
/frameworks/native/libs/input/
H A DInput.cpp50 int32_t KeyEvent::getKeyCodeFromLabel(const char* label) { argument
51 return getKeyCodeByLabel(label);
534 int32_t MotionEvent::getAxisFromLabel(const char* label) { argument
535 return getAxisByLabel(label);
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java128 /** The human readable print job label. */
239 * Gets the human readable job label.
241 * @return The label.
248 * Sets the human readable job label.
250 * @param label The label.
254 public void setLabel(String label) { argument
255 mLabel = label;
619 builder.append("label: ").append(mLabel);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCellularTile.java113 state.label = cb.enabled
126 state.label);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DClusterManager.java313 String label = LocationStatsAggregator.UNKNOWN_LOCATION;
326 return label;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DUtils.java34 for (String label : labels) {
35 labelList.addFirst(label);
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java825 public void visitKeyboardLayout(Resources resources, String descriptor, String label,
859 public void visitKeyboardLayout(Resources resources, String descriptor, String label,
861 list.add(new KeyboardLayout(descriptor, label, collection, priority));
877 String label, String collection, int keyboardLayoutResId, int priority) {
878 result[0] = new KeyboardLayout(descriptor, label, collection, priority);
955 String label = a.getString(
960 if (name == null || label == null || keyboardLayoutResId == 0) {
961 Log.w(TAG, "Missing required 'name', 'label' or 'keyboardLayout' "
970 label, collection, keyboardLayoutResId, priority);
1577 public void visitKeyboardLayout(Resources resources, String descriptor, String label,
1726 visitKeyboardLayout(Resources resources, String descriptor, String label, String collection, int keyboardLayoutResId, int priority) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java82 /** Keyboard label **/
239 public CharSequence label; field in class:Keyboard.Key
241 /** Icon to display instead of a label. Icon takes precedence over a label */
386 label = a.getText(com.android.internal.R.styleable.Keyboard_Key_keyLabel);
389 if (codes == null && !TextUtils.isEmpty(label)) {
390 codes = new int[] { label.charAt(0) };
612 key.label = String.valueOf(c);
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java235 Object label = filterToLabel(filter);
236 int index = found.indexOfKey(label);
238 found.put(label, new MutableInt(1));
532 protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) { argument
533 out.print(prefix); out.print(label); out.print(": "); out.println(count);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java230 Log.i(TAG, "The connection pool for " + mConfiguration.label
489 + mConfiguration.label + "' was leaked! Please fix your application "
740 msg.append("The connection pool for database '").append(mConfiguration.label);
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DQsTuner.java137 state.label = getString(com.android.internal.R.string.delete);
154 state.label = getString(R.string.add_tile);
415 state.label = getLabel();
/frameworks/rs/api/
H A DGenerateDocumentation.cpp226 static void writeSummaryTableStart(GeneratedFile* file, const string& label, bool labelIsHeading) { argument
228 *file << "<h2 style='margin-bottom: 0px;'>" << label << "</h2>\n"; local
232 *file << " <tr><th colspan='2'>" << label << "</th></tr>\n"; local
/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java368 // C function void glObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label )
374 String label
377 // C function void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
381 // C function void glObjectPtrLabelKHR ( const void *ptr, GLsizei length, const GLchar *label )
383 public static native void glObjectPtrLabelKHR(long ptr, String label); argument
385 // C function void glGetObjectPtrLabelKHR ( const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label )

Completed in 535 milliseconds

12345678