Home
last modified time | relevance | path

Searched refs:editType (Results 1 – 3 of 3) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactModifier.java810 EditType editType = kind.typeList.get(i); in adjustType() local
811 if (isTypeAllowed(editType.rawValue, entries, kind)) { in adjustType()
812 entry.put(kind.typeColumn, editType.rawValue); in adjustType()
829 EditType editType = kind.typeList.get(i); in isTypeAllowed() local
830 if (editType.rawValue == type) { in isTypeAllowed()
831 max = editType.specificMax; in isTypeAllowed()
917 final EditType editType = RawContactModifier.getBestValidType(state, kind, true, typeValue); in parseExtras() local
920 final ValuesDelta child = RawContactModifier.insertChild(state, kind, editType); in parseExtras()
923 if (editType != null && editType.customColumn != null) { in parseExtras()
926 child.put(editType.customColumn, customType); in parseExtras()
[all …]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
DLevenshteinDistance.java113 int editType = editTab[sourcePos][targetPos]; in getTargetOperations() local
114 switch (editType) { in getTargetOperations()
120 ops[targetPos] = new EditOperation(editType, sourcePos); in getTargetOperations()
126 ops[targetPos] = new EditOperation(editType, sourcePos); in getTargetOperations()
/packages/apps/Contacts/src/com/android/contacts/editor/
DLabeledEditorView.java449 for (EditType editType : allTypes) { in createCustomDialog()
450 if (editType.customColumn != null) { in createCustomDialog()
451 mType = editType; in createCustomDialog()