Searched defs:label (Results 76 - 100 of 132) sorted by relevance

123456

/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java170 CharSequence label; field in class:TrustManagerService.AgentInfo
287 agentInfo.label = resolveInfo.loadLabel(pm);
/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/native/libs/input/
H A DInput.cpp50 int32_t KeyEvent::getKeyCodeFromLabel(const char* label) { argument
51 return getKeyCodeByLabel(label);
536 int32_t MotionEvent::getAxisFromLabel(const char* label) { argument
537 return getAxisByLabel(label);
H A DKeyCharacterMap.cpp52 const char* label; member in struct:android::Modifier
211 result = key->label;
617 char16_t label = parcel->readInt32(); local
624 key->label = label;
667 parcel->writeInt32(key->label);
686 label(0), number(0), firstBehavior(NULL) {
690 label(other.label), number(other.number),
831 ALOGE("%s: Expected keyboard type label, go
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java793 final String label = contentValues.getAsString(Phone.LABEL);
811 phoneNumber, type, label, isPrimary);
814 appendTelLine(type, label, phoneNumber, isPrimary);
822 appendTelLine(type, label, phoneNumber, isPrimary);
869 appendTelLine(type, label, formatted, isPrimary);
945 final String label = contentValues.getAsString(Email.LABEL);
952 appendEmailLine(type, label, emailAddress, isPrimary);
1025 final String label = currentContentValues.getAsString(StructuredPostal.LABEL);
1026 appendPostalLine(currentType, label, currentContentValues, false, true);
1037 final String label
1444 appendPostalLine(final int type, final String label, final ContentValues contentValues, final boolean isPrimary, final boolean emitEveryTime) argument
1522 appendEmailLine(final int type, final String label, final String rawValue, final boolean isPrimary) argument
1572 appendTelLine(final Integer typeAsInteger, final String label, final String encodedValue, boolean isPrimary) argument
[all...]
/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/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);
H A DKeyboardView.java589 private CharSequence adjustCase(CharSequence label) { argument
590 if (mKeyboard.isShifted() && label != null && label.length() < 3
591 && Character.isLowerCase(label.charAt(0))) {
592 label = label.toString().toUpperCase();
594 return label;
700 String label = key.label == null? null : adjustCase(key.label)
[all...]
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessState.java915 String label, int[] screenStates, int[] memStates, int[] procStates,
926 if (label != null) {
927 pw.print(label);
914 dumpProcessSummaryDetails(PrintWriter pw, String prefix, String label, int[] screenStates, int[] memStates, int[] procStates, long now, long totalTime, boolean full) argument
/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java800 private void printProcessCPU(PrintWriter pw, String prefix, int pid, String label, argument
811 pw.print(label);
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp85 const String8 label; member in struct:android::SQLiteConnection
89 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) : argument
90 db(db), openFlags(openFlags), path(path), label(label), canceled(false) { }
97 connection->label.string(), sql);
104 connection->label.string(), sql, tm * 0.000001f);
130 String8 label(labelChars);
164 SQLiteConnection* connection = new SQLiteConnection(db, openFlags, path, label);
174 ALOGV("Opened connection %p with label '%s'", db, label
[all...]
H A Dandroid_view_MotionEvent.cpp748 jstring label) {
749 ScopedUtfChars axisLabel(env, label);
747 android_view_MotionEvent_nativeAxisFromString(JNIEnv* env, jclass clazz, jstring label) argument
/frameworks/base/libs/hwui/
H A DRenderNode.cpp100 void RenderNode::output(uint32_t level, const char* label) { argument
102 label,
/frameworks/base/media/java/android/media/tv/
H A DTvInputInfo.java159 * @param label The label of this TvInputInfo. If it is {@code null} or empty, {@code service}
160 * label will be loaded.
170 HdmiDeviceInfo hdmiDeviceInfo, String parentId, String label, Uri iconUri)
175 .setLabel(label)
188 * @param labelRes The label resource ID of this TvInputInfo. If it is {@code 0},
189 * {@code service} label will be loaded.
214 * @param label The label of this TvInputInfo. If it is {@code null} or empty, {@code service}
215 * label wil
169 createTvInputInfo(Context context, ResolveInfo service, HdmiDeviceInfo hdmiDeviceInfo, String parentId, String label, Uri iconUri) argument
224 createTvInputInfo(Context context, ResolveInfo service, TvInputHardwareInfo hardwareInfo, String label, Uri iconUri) argument
260 TvInputInfo(ResolveInfo service, String id, int type, boolean isHardwareInput, CharSequence label, int labelResId, Icon icon, Icon iconStandby, Icon iconDisconnected, String setupActivity, String settingsActivity, boolean canRecord, int tunerCount, HdmiDeviceInfo hdmiDeviceInfo, boolean isConnectedToHdmiSwitch, String parentId, Bundle extras) argument
767 setLabel(CharSequence label) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java690 * Returns the activity label, badging if necessary.
695 // If we are mocking, then return a mock label
704 * Returns the application label, badging if necessary.
709 // If we are mocking, then return a mock label
722 // If we are mocking, then return a mock label
742 // If we are mocking, then return a mock label
758 // If we are mocking, then return a mock label
773 // If we are mocking, then return a mock label
831 * Returns the given label for a user, badging if necessary.
833 private String getBadgedLabel(String label, in argument
[all...]
/frameworks/base/services/net/java/android/net/apf/
H A DApfGenerator.java54 JMP(14), // Jump, e.g. "jmp label"
55 JEQ(15), // Compare equal and branch, e.g. "jeq R0,5,label"
56 JNE(16), // Compare not equal and branch, e.g. "jne R0,5,label"
57 JGT(17), // Compare greater than and branch, e.g. "jgt R0,5,label"
58 JLT(18), // Compare less than and branch, e.g. "jlt R0,5,label"
59 JSET(19), // Compare any bits set and branch, e.g. "jset R0,5,label"
60 JNEBS(20), // Compare not equal byte sequence, e.g. "jnebs R0,5,label,0x1122334455"
136 void setLabel(String label) throws IllegalInstructionException { argument
137 if (mLabels.containsKey(label)) {
138 throw new IllegalInstructionException("duplicate label "
147 setTargetLabel(String label) argument
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java678 public void visitJumpInsn(int opcode, Label label) { argument
683 public void visitLabel(Label label) { argument
684 // pass -- a label target
H A DDependencyFinder.java556 public void visitJumpInsn(int opcode, Label label) { argument
561 public void visitLabel(Label label) { argument
562 // pass -- a label target
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java295 private static void appendNumbers(StringBuilder s, String label, argument
299 s.append(label);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardExporterTests.java1047 Integer type, String label) {
1050 + (label != null ? label : "") + ";;;;;;;;;;;;");
1046 getAndroidPropValue(final String mimeType, String value, Integer type, String label) argument
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java120 private static native long nativeOpen(String path, int openFlags, String label, argument
210 mConfiguration.label,
346 + mConfiguration.label + "' from '" + value + "' to '" + newValue
393 throw new SQLiteException("Failed to change locale for db '" + mConfiguration.label
1140 String label = " (attached) " + name;
1142 label += ": " + path;
1144 dbStatsList.add(new DbStats(label, pageCount, pageSize, 0, 0, 0, 0));
1166 String label = mConfiguration.path;
1168 label += " (" + mConnectionId + ")";
1170 return new DbStats(label, pageCoun
[all...]
/frameworks/base/core/java/android/os/
H A DUserManager.java1852 * is itself a managed profile, then this returns a copy of the label with
1856 * @param label The label to change.
1858 * @return A label that combines the original label and a badge as
1862 public CharSequence getBadgedLabelForUser(CharSequence label, UserHandle user) { argument
1863 return mContext.getPackageManager().getUserBadgedLabel(label, user);
/frameworks/base/core/java/android/print/
H A DPrintAttributes.java807 * @param labelResId The resource if of a human readable label.
811 * @throws IllegalArgumentException If the id is empty or the label
830 * @param label The <strong>localized</strong> human readable label.
834 * @throws IllegalArgumentException If the id is empty or the label is empty
838 public MediaSize(@NonNull String id, @NonNull String label, argument
840 this(id, label, null, widthMils, heightMils, 0);
865 * @param label The <strong>localized</strong> human readable label.
869 * @param labelResId The resource if of a human readable label
877 MediaSize(String id, String label, String packageName, int widthMils, int heightMils, int labelResId) argument
1091 Resolution(@onNull String id, @NonNull String label, @IntRange(from = 1) int horizontalDpi, @IntRange(from = 1) int verticalDpi) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DContacts.java909 * The user provided label for the phone number, only used if TYPE is TYPE_CUSTOM.
914 public static final String LABEL = "label";
960 CharSequence label, CharSequence[] labelArray) {
973 if (!TextUtils.isEmpty(label)) {
974 display = label;
985 CharSequence label) {
986 return getDisplayLabel(context, type, label, null);
1195 * The user defined label for the the contact method.
1200 public static final String LABEL = "label";
1397 int type, CharSequence label) {
959 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
984 getDisplayLabel(Context context, int type, CharSequence label) argument
1396 getDisplayLabel(Context context, int kind, int type, CharSequence label) argument
1761 getDisplayLabel(Context context, int type, CharSequence label) argument
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java2315 * Localized label for the engine.
2317 public String label; field in class:TextToSpeech.EngineInfo

Completed in 2582 milliseconds

123456