Home
last modified time | relevance | path

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

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