Searched refs:label (Results 51 - 75 of 117) sorted by relevance

12345

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter2.java356 public void visitLabel(Label label) { argument
358 mOrgWriter.visitLabel(label);
405 public void visitJumpInsn(int opcode, Label label) { argument
407 mOrgWriter.visitJumpInsn(opcode, label);
H A DStubMethodAdapter.java271 public void visitLabel(Label label) { argument
273 mParentVisitor.visitLabel(label);
320 public void visitJumpInsn(int opcode, Label label) { argument
322 mParentVisitor.visitJumpInsn(opcode, label);
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerInfo.java71 int label = 0;
97 label = sa.getResourceId(com.android.internal.R.styleable.SpellChecker_label, 0);
131 mLabel = label;
203 * Load the user-displayed label for this spell checker.
/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/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java828 final String label = contentValues.getAsString(Phone.LABEL);
846 phoneNumber, type, label, isPrimary);
849 appendTelLine(type, label, phoneNumber, isPrimary);
857 appendTelLine(type, label, phoneNumber, isPrimary);
904 appendTelLine(type, label, formatted, isPrimary);
980 final String label = contentValues.getAsString(Email.LABEL);
987 appendEmailLine(type, label, emailAddress, isPrimary);
1060 final String label = currentContentValues.getAsString(StructuredPostal.LABEL);
1061 appendPostalLine(currentType, label, currentContentValues, false, true);
1072 final String label
1479 appendPostalLine(final int type, final String label, final ContentValues contentValues, final boolean isPrimary, final boolean emitEveryTime) argument
1557 appendEmailLine(final int type, final String label, final String rawValue, final boolean isPrimary) argument
1607 appendTelLine(final Integer typeAsInteger, final String label, final String encodedValue, boolean isPrimary) argument
[all...]
H A DVCardUtils.java192 * when not, which should be set to label.
200 String label = null;
250 label = labelCandidate;
273 return label;
280 public static boolean isMobilePhoneLabel(final String label) { argument
283 // To support mobile type at that time, this custom label had been used.
284 return ("_AUTO_CELL".equals(label) || sMobilePhoneLabelSet.contains(label));
287 public static boolean isValidInV21ButUnknownToContactsPhoteType(final String label) { argument
288 return sPhoneTypesUnknownToContactsSet.contains(label);
[all...]
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp50 const char* label; member in struct:android::Modifier
209 result = key->label;
569 char16_t label = parcel->readInt32(); local
576 key->label = label;
617 parcel->writeInt32(key->label);
635 label(0), number(0), firstBehavior(NULL) {
639 label(other.label), number(other.number),
779 ALOGE("%s: Expected keyboard type label, go
[all...]
/frameworks/base/tools/orientationplot/
H A Dorientationplot.py221 for label in axes.get_xticklabels():
222 label.set_fontsize(9)
223 for label in axes.get_yticklabels():
224 label.set_fontsize(9)
229 def _add_timeseries_line(self, axes, label, color, linewidth=1):
230 return axes.plot([], label=label, color=color, linewidth=linewidth)[0]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java120 private static native int nativeOpen(String path, int openFlags, String label, argument
210 mConfiguration.label,
339 + mConfiguration.label + "' from '" + value + "' to '" + newValue
386 throw new SQLiteException("Failed to change locale for db '" + mConfiguration.label
1133 String label = " (attached) " + name;
1135 label += ": " + path;
1137 dbStatsList.add(new DbStats(label, pageCount, pageSize, 0, 0, 0, 0));
1159 String label = mConfiguration.path;
1161 label += " (" + mConnectionId + ")";
1163 return new DbStats(label, pageCoun
[all...]
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java642 * @param pm A PackageManager from which the label can be loaded; usually
650 CharSequence label = pm.getText(packageName, descriptionRes, this);
651 if (label != null) {
652 return label;
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
H A DDpiTestActivity.java153 TextView label = new TextView(this);
154 label.setText(text);
155 root.addView(label, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/
H A DDirListActivity.java154 * A custom adapter that sets the proper icon and label in the list view.
172 TextView label = (TextView)row.findViewById(R.id.label);
173 label.setText(mItems[position].getName());
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java245 CharSequence label = service.loadLabel(pm);
246 engine.label = TextUtils.isEmpty(label) ? engine.name : label.toString();
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp82 const String8 label; member in struct:android::SQLiteConnection
86 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) : argument
87 db(db), openFlags(openFlags), path(path), label(label), canceled(false) { }
94 connection->label.string(), sql);
101 connection->label.string(), sql, tm * 0.000001f);
127 String8 label(labelChars);
161 SQLiteConnection* connection = new SQLiteConnection(db, openFlags, path, label);
171 ALOGV("Opened connection %p with label '%s'", db, label
[all...]
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DTaskSwitcherActivity.java71 CharSequence label; field in class:TaskSwitcherActivity.ActivityDescription
81 label = _label;
89 label = null;
161 canvas.drawText(item.label.toString(),0, DETAIL_TEXTURE_HEIGHT/2, mPaint);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java576 private CharSequence adjustCase(CharSequence label) { argument
577 if (mKeyboard.isShifted() && label != null && label.length() < 3
578 && Character.isLowerCase(label.charAt(0))) {
579 label = label.toString().toUpperCase();
581 return label;
687 String label = key.label == null? null : adjustCase(key.label)
[all...]
H A DKeyboard.java81 /** Keyboard label **/
238 public CharSequence label; field in class:Keyboard.Key
240 /** Icon to display instead of a label. Icon takes precedence over a label */
385 label = a.getText(com.android.internal.R.styleable.Keyboard_Key_keyLabel);
388 if (codes == null && !TextUtils.isEmpty(label)) {
389 codes = new int[] { label.charAt(0) };
599 key.label = String.valueOf(c);
/frameworks/base/core/java/android/os/
H A DINetworkManagementService.aidl332 * {@code label} usually represents the network type of {@code iface}.
333 * Caller should ensure that {@code label} for an {@code iface} remains the
339 void addIdleTimer(String iface, int timeout, String label);
/frameworks/base/core/java/android/widget/
H A DCalendarView.java1038 TextView label = (TextView) mDayNamesHeader.getChildAt(0);
1040 label.setVisibility(View.VISIBLE);
1042 label.setVisibility(View.GONE);
1045 label = (TextView) mDayNamesHeader.getChildAt(i);
1047 label.setTextAppearance(mContext, mWeekDayTextAppearanceResId);
1050 label.setText(mDayLabels[i - 1]);
1051 label.setVisibility(View.VISIBLE);
1053 label.setVisibility(View.GONE);
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboard.java93 // Log.w(TAG, "Key code for " + key.label + " is not latin-1");
94 key.label = " ";
127 mEnterKey.label = res.getText(labelId);
/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/services/java/com/android/server/
H A DNetworkManagementService.java167 public final String label; field in class:NetworkManagementService.IdleTimerParams
170 IdleTimerParams(int timeout, String label) { argument
172 this.label = label;
308 private void notifyInterfaceClassActivity(String label, boolean active) { argument
312 mObservers.getBroadcastItem(i).interfaceClassDataActivityChanged(label, active);
451 * Format: "NNN IfaceClass <active/idle> <label>"
1076 public void addIdleTimer(String iface, int timeout, String label) { argument
1090 mConnector.execute("idletimer", "add", iface, Integer.toString(timeout), label);
1094 mActiveIdleTimers.put(iface, new IdleTimerParams(timeout, label));
[all...]
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java739 String descriptor, String label, String collection, int keyboardLayoutResId) {
773 String descriptor, String label, String collection, int keyboardLayoutResId) {
774 list.add(new KeyboardLayout(descriptor, label, collection));
790 String descriptor, String label, String collection, int keyboardLayoutResId) {
791 result[0] = new KeyboardLayout(descriptor, label, collection);
860 String label = a.getString(
865 if (name == null || label == null || keyboardLayoutResId == 0) {
866 Log.w(TAG, "Missing required 'name', 'label' or 'keyboardLayout' "
875 label, collection, keyboardLayoutResId);
1442 String descriptor, String label, Strin
1587 visitKeyboardLayout(Resources resources, String descriptor, String label, String collection, int keyboardLayoutResId) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DToggleSlider.java73 mLabel = (TextView)findViewById(R.id.label);
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java224 CharSequence label, String settingsActivity) {
235 si.nonLocalizedLabel = label;
285 * Load the user-displayed label for this input method.
223 InputMethodInfo(String packageName, String className, CharSequence label, String settingsActivity) argument

Completed in 452 milliseconds

12345