Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/util/
H A DGsmAlphabet.java245 SparseIntArray charToShiftTable = sCharsToShiftTables[0]; in stringToGsm8BitUnpackedField() local
252 v = charToShiftTable.get(c, -1); in stringToGsm8BitUnpackedField()
292 SparseIntArray charToShiftTable = sCharsToShiftTables[languageShiftTable]; in countGsmSeptetsUsingTables() local
301 } else if (charToShiftTable.get(c, -1) != -1) { in countGsmSeptetsUsingTables()
711 SparseIntArray charToShiftTable = new SparseIntArray(shiftTableLen);
712 sCharsToShiftTables[i] = charToShiftTable;
716 charToShiftTable.put(c, j); in charToShiftTable.put()
/aosp12/frameworks/base/telephony/common/com/android/internal/telephony/
H A DGsmAlphabet.java414 SparseIntArray charToShiftTable = sCharsToShiftTables[languageShiftTable]; in stringToGsm7BitPacked() local
421 v = charToShiftTable.get(c, -1); // Lookup the extended char. in stringToGsm7BitPacked()
704 SparseIntArray charToShiftTable = sCharsToShiftTables[0];
716 v = charToShiftTable.get(c, -1);
812 SparseIntArray charToShiftTable = sCharsToShiftTables[languageShiftTable];
821 } else if (charToShiftTable.get(c, -1) != -1) {
1531 SparseIntArray charToShiftTable = new SparseIntArray(shiftTableLen);
1532 sCharsToShiftTables[i] = charToShiftTable;
1536 charToShiftTable.put(c, j);
/aosp12/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/
H A DGsmAlphabet.java618 SparseIntArray charToShiftTable = new SparseIntArray(shiftTableLen);
619 sCharsToShiftTables[i] = charToShiftTable;
623 charToShiftTable.put(c, j); in charToShiftTable.put()