Searched refs:rawValue (Results 1 - 9 of 9) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DAccountType.java358 public int rawValue; field in class:AccountType.EditType
368 public EditType(int rawValue, int labelRes) { argument
369 this.rawValue = rawValue;
393 return other.rawValue == rawValue;
400 return rawValue;
406 + " rawValue=" + rawValue
417 public EventEditType(int rawValue, in argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DContactsSource.java245 public int rawValue; field in class:ContactsSource.EditType
253 public EditType(int rawValue, int labelRes) { argument
254 this.rawValue = rawValue;
278 return other.rawValue == rawValue;
285 return rawValue;
/packages/apps/Browser/src/com/android/browser/
H A DBrowserSettings.java561 public static int getAdjustedMinimumFontSize(int rawValue) { argument
562 rawValue++; // Preference starts at 0, min font at 1
563 if (rawValue > 1) {
564 rawValue += (MIN_FONT_SIZE_OFFSET - 2);
566 return rawValue;
569 public int getAdjustedTextZoom(int rawValue) { argument
570 rawValue = (rawValue - TEXT_ZOOM_START_VAL) * TEXT_ZOOM_STEP;
571 return (int) ((rawValue + 100) * mFontSizeMult);
578 public int getAdjustedDoubleTapZoom(int rawValue) { argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/model/
H A DRawContactModifier.java190 .get(type.rawValue) < type.specificMax);
207 * {@link EditType#rawValue} to counts, with the total overall count stored
225 final int count = typeCount.get(type.rawValue);
226 typeCount.put(type.rawValue, count + 1);
247 final Long rawValue = entry.getAsLong(kind.typeColumn);
248 if (rawValue == null) return null;
249 return getType(kind, rawValue.intValue());
258 final Integer rawValue = entry.getAsInteger(kind.typeColumn);
259 if (rawValue == null) return null;
260 return getType(kind, rawValue);
278 getType(DataKind kind, int rawValue) argument
291 getTypePrecedence(DataKind kind, int rawValue) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapVcardManager.java502 String rawValue, int type, String label, boolean isPrimary) {
506 String numberWithControlSequence = rawValue
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DLabeledEditorView.java410 mEntry.put(mKind.typeColumn, mType.rawValue);
475 mEntry.put(mKind.typeColumn, mType.rawValue);
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DDataAction.java85 if (type.rawValue == typeValue) {
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DRawContactModifierTests.java473 before.put(kindPhone.typeColumn, typeHome.rawValue);
589 first.put(kindPhone.typeColumn, typeHome.rawValue);
595 second.put(kindPhone.typeColumn, typeHome.rawValue);
661 first.put(kindPhone.typeColumn, typeHome.rawValue);
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailFragment.java1295 if (type.rawValue == entry.type) {

Completed in 230 milliseconds