Home
last modified time | relevance | path

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

/packages/apps/Contacts/src/com/android/contacts/model/
DAccountType.java358 public int rawValue; field in AccountType.EditType
368 public EditType(int rawValue, int labelRes) { in EditType() argument
369 this.rawValue = rawValue; in EditType()
393 return other.rawValue == rawValue; in equals()
400 return rawValue; in hashCode()
406 + " rawValue=" + rawValue in toString()
417 public EventEditType(int rawValue, int labelRes) { in EventEditType() argument
418 super(rawValue, labelRes); in EventEditType()
DEntityModifier.java184 .get(type.rawValue) < type.specificMax); in getValidTypes()
219 final int count = typeCount.get(type.rawValue); in getTypeFrequencies()
220 typeCount.put(type.rawValue, count + 1); in getTypeFrequencies()
241 final Long rawValue = entry.getAsLong(kind.typeColumn); in getCurrentType() local
242 if (rawValue == null) return null; in getCurrentType()
243 return getType(kind, rawValue.intValue()); in getCurrentType()
252 final Integer rawValue = entry.getAsInteger(kind.typeColumn); in getCurrentType()
253 if (rawValue == null) return null; in getCurrentType()
254 return getType(kind, rawValue); in getCurrentType()
265 final int rawValue = cursor.getInt(index); in getCurrentType() local
[all …]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DContactsSource.java245 public int rawValue; field in ContactsSource.EditType
253 public EditType(int rawValue, int labelRes) { in EditType() argument
254 this.rawValue = rawValue; in EditType()
278 return other.rawValue == rawValue; in equals()
285 return rawValue; in hashCode()
/packages/apps/Browser/src/com/android/browser/
DBrowserSettings.java547 public static int getAdjustedMinimumFontSize(int rawValue) { in getAdjustedMinimumFontSize() argument
548 rawValue++; // Preference starts at 0, min font at 1 in getAdjustedMinimumFontSize()
549 if (rawValue > 1) { in getAdjustedMinimumFontSize()
550 rawValue += (MIN_FONT_SIZE_OFFSET - 2); in getAdjustedMinimumFontSize()
552 return rawValue; in getAdjustedMinimumFontSize()
555 public int getAdjustedTextZoom(int rawValue) { in getAdjustedTextZoom() argument
556 rawValue = (rawValue - TEXT_ZOOM_START_VAL) * TEXT_ZOOM_STEP; in getAdjustedTextZoom()
557 return (int) ((rawValue + 100) * mFontSizeMult); in getAdjustedTextZoom()
564 public int getAdjustedDoubleTapZoom(int rawValue) { in getAdjustedDoubleTapZoom() argument
565 rawValue = (rawValue - DOUBLE_TAP_ZOOM_START_VAL) * DOUBLE_TAP_ZOOM_STEP; in getAdjustedDoubleTapZoom()
[all …]
/packages/apps/Contacts/src/com/android/contacts/editor/
DLabeledEditorView.java411 mEntry.put(mKind.typeColumn, mType.rawValue); in createCustomDialog()
476 mEntry.put(mKind.typeColumn, mType.rawValue); in onTypeSelectionChange()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapVcardManager.java454 String rawValue, int type, String label, boolean isPrimary) { in composeAndSendVCards()
458 String numberWithControlSequence = rawValue in composeAndSendVCards()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DDataAction.java85 if (type.rawValue == typeValue) { in DataAction()
/packages/apps/Contacts/tests/src/com/android/contacts/
DEntityModifierTests.java472 before.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimEmptyAfterUpdate()
585 first.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimUpdateRemain()
591 second.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimUpdateRemain()
656 first.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimUpdateUpdate()
/packages/apps/Contacts/src/com/android/contacts/detail/
DContactDetailFragment.java1279 if (type.rawValue == entry.type) { in fromValues()