Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java363 TypedValue codesValue = new TypedValue(); in Key() local
365 codesValue); in Key()
366 if (codesValue.type == TypedValue.TYPE_INT_DEC in Key()
367 || codesValue.type == TypedValue.TYPE_INT_HEX) { in Key()
368 codes = new int[] { codesValue.data }; in Key()
369 } else if (codesValue.type == TypedValue.TYPE_STRING) { in Key()
370 codes = parseCSV(codesValue.string.toString()); in Key()