Home
last modified time | relevance | path

Searched refs:itemValues (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DDefaultSoftKeyboardJAJP.java1318 final int[] itemValues; in showInputModeSwitchDialog() local
1322 itemValues = new int[] {KEYMODE_JA_FULL_HIRAGANA, KEYMODE_JA_HALF_ALPHABET, in showInputModeSwitchDialog()
1328itemValues = new int[] {KEYMODE_JA_FULL_HIRAGANA, KEYMODE_JA_FULL_KATAKANA, KEYMODE_JA_HALF_KATAKA… in showInputModeSwitchDialog()
1332 builder.setSingleChoiceItems(itemTitles, findIndexOfValue(itemValues, in showInputModeSwitchDialog()
1337 changeKeyMode(itemValues[0]); in showInputModeSwitchDialog()
1341 changeKeyMode(itemValues[1]); in showInputModeSwitchDialog()
1345 changeKeyMode(itemValues[2]); in showInputModeSwitchDialog()
1349 changeKeyMode(itemValues[3]); in showInputModeSwitchDialog()
1353 changeKeyMode(itemValues[4]); in showInputModeSwitchDialog()
1357 changeKeyMode(itemValues[5]); in showInputModeSwitchDialog()
[all …]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DContactLoader.java463 final ContentValues itemValues = new ContentValues(); in processOneRecord() local
464 itemValues.put(Data.MIMETYPE, mimetype); in processOneRecord()
465 itemValues.put(Data._ID, -1); in processOneRecord()
472 itemValues.put(name, (String) o); in processOneRecord()
474 itemValues.put(name, (Integer) o); in processOneRecord()
477 rawContact.addDataItemValues(itemValues); in processOneRecord()