Home
last modified time | relevance | path

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

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