Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/inputmethodservice/
DKeyboard.java352 TypedValue codesValue = new TypedValue(); in Key() local
354 codesValue); in Key()
355 if (codesValue.type == TypedValue.TYPE_INT_DEC in Key()
356 || codesValue.type == TypedValue.TYPE_INT_HEX) { in Key()
357 codes = new int[] { codesValue.data }; in Key()
358 } else if (codesValue.type == TypedValue.TYPE_STRING) { in Key()
359 codes = parseCSV(codesValue.string.toString()); in Key()