Searched defs:rawValue (Results 1 - 4 of 4) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContactModifier.java189 .get(type.rawValue) < type.specificMax);
206 * {@link EditType#rawValue} to counts, with the total overall count stored
224 final int count = typeCount.get(type.rawValue);
225 typeCount.put(type.rawValue, count + 1);
246 final Long rawValue = entry.getAsLong(kind.typeColumn);
247 if (rawValue == null) return null;
248 return getType(kind, rawValue.intValue());
257 final Integer rawValue = entry.getAsInteger(kind.typeColumn);
258 if (rawValue == null) return null;
259 return getType(kind, rawValue);
277 getType(DataKind kind, int rawValue) argument
290 getTypePrecedence(DataKind kind, int rawValue) 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/ContactsCommon/src/com/android/contacts/common/model/account/
H A DAccountType.java348 public int rawValue; field in class:AccountType.EditType
358 public EditType(int rawValue, int labelRes) { argument
359 this.rawValue = rawValue;
383 return other.rawValue == rawValue;
390 return rawValue;
396 + " rawValue=" + rawValue
407 public EventEditType(int rawValue, in argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DBrowserSettings.java507 public static int getAdjustedMinimumFontSize(int rawValue) { argument
508 rawValue++; // Preference starts at 0, min font at 1
509 if (rawValue > 1) {
510 rawValue += (MIN_FONT_SIZE_OFFSET - 2);
512 return rawValue;
515 public int getAdjustedTextZoom(int rawValue) { argument
516 rawValue = (rawValue - TEXT_ZOOM_START_VAL) * TEXT_ZOOM_STEP;
517 return (int) ((rawValue + 100) * mFontSizeMult);
524 public int getAdjustedDoubleTapZoom(int rawValue) { argument
[all...]

Completed in 182 milliseconds