Home
last modified time | relevance | path

Searched refs:character (Results 1 – 25 of 60) sorted by relevance

123

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DNameLookupBuilder.java161 int character; in appendKoreanNameConsonantsLookup() local
166 character = name.codePointAt(position++); in appendKoreanNameConsonantsLookup()
167 if ((character == 0x20) || (character == 0x2c) || (character == 0x2E)) { in appendKoreanNameConsonantsLookup()
173 if ((character < 0x1100) || (character > 0x1112 && character < 0x3131) || in appendKoreanNameConsonantsLookup()
174 (character > 0x314E && character < 0xAC00) || in appendKoreanNameConsonantsLookup()
175 (character > 0xD7A3)) { in appendKoreanNameConsonantsLookup()
179 if (character >= 0xAC00) { in appendKoreanNameConsonantsLookup()
183 character = 0x1100 + (character - 0xAC00) / 588; in appendKoreanNameConsonantsLookup()
184 } else if (character >= 0x3131) { in appendKoreanNameConsonantsLookup()
187 if (character - 0x3131 >= KOREAN_JAUM_CONVERT_MAP.length) { in appendKoreanNameConsonantsLookup()
[all …]
DHanziToPinyin.java98 private void tokenize(char character, Token token) { in tokenize() argument
99 token.source = Character.toString(character); in tokenize()
102 if (character < 128) { in tokenize()
109 if (character < 0x250 || (0x1e00 <= character && character < 0x1eff)) { in tokenize()
154 final char character = input.charAt(i); in getTokens() local
155 if (Character.isSpaceChar(character)) { in getTokens()
160 tokenize(character, token); in getTokens()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictDecoderUtils.java121 private static boolean fitsOnOneByte(final int character, in fitsOnOneByte() argument
123 int codePoint = character; in fitsOnOneByte()
125 if (codePointToOneByteCodeMap.containsKey(character)) { in fitsOnOneByte()
126 codePoint = codePointToOneByteCodeMap.get(character); in fitsOnOneByte()
150 static int getCharSize(final int character, in getCharSize() argument
153 if (fitsOnOneByte(character, codePointToOneByteCodeMap)) return 1; in getCharSize()
154 if (FormatSpec.INVALID_CHARACTER == character) return 1; in getCharSize()
164 for (int character : chars) size += getCharSize(character, codePointToOneByteCodeMap); in getCharArraySize()
267 int character = readChar(dictBuffer); in readString() local
268 while (character != FormatSpec.INVALID_CHARACTER) { in readString()
[all …]
DFusionDictionary.java478 private static int findInsertionIndex(final PtNodeArray nodeArray, int character) { in findInsertionIndex() argument
480 final PtNode reference = new PtNode(new int[] { character }, in findInsertionIndex()
494 private static int findIndexOfChar(final PtNodeArray nodeArray, int character) { in findIndexOfChar() argument
495 final int insertionIndex = findInsertionIndex(nodeArray, character); in findIndexOfChar()
497 return character == nodeArray.mData.get(insertionIndex).mChars[0] ? insertionIndex in findIndexOfChar()
/packages/apps/Launcher3/tests/assets/ReorderWidgets/
Dfull_reorder_case3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
Dpush_reorder_case3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
Dmove_out_reorder_case3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
Dsimple_reorder_case3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
Dmultiple_cell_layouts_simple_reorder3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
Dmultiple_cell_layouts_no_space_reorder3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
Dmultiple_cell_layouts_reorder_other_side3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
/packages/modules/Connectivity/framework-t/src/android/net/nsd/
DNsdServiceInfo.java354 char character = key.charAt(i); in setAttribute() local
355 if (character < 0x20 || character > 0x7E) { in setAttribute()
357 } else if (character == 0x3D) { in setAttribute()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java1702 char character = iterator.current(); in xmlEncode() local
1703 while (character != CharacterIterator.DONE) { in xmlEncode()
1704 if (character == '<') { in xmlEncode()
1706 } else if (character == '>') { in xmlEncode()
1708 } else if (character == '\"') { in xmlEncode()
1710 } else if (character == '\'') { in xmlEncode()
1712 } else if (character == '&') { in xmlEncode()
1716 result.append(character); in xmlEncode()
1718 character = iterator.next(); in xmlEncode()
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
Dproximity_info_state_utils.cpp941 int character = NOT_AN_INDEX; in getMostProbableString() local
948 character = it->first; in getMostProbableString()
951 if (character != NOT_AN_INDEX) { in getMostProbableString()
952 const int codePoint = proximityInfo->getCodePointOf(character); in getMostProbableString()
955 character); in getMostProbableString()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
Dpatricia_trie_policy.cpp120 const int character = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( in getCodePointsAndProbabilityAndReturnCodePointCount() local
125 outCodePoints[wordPos] = character; in getCodePointsAndProbabilityAndReturnCodePointCount()
/packages/apps/Launcher3/tests/assets/ReorderAlgorithmUnitTest/
Dreorder_algorithm_test_cases3 # * # (coments): Lines starting with this character would be ignored.
7 # * x: The x character represents spaces that would be ignored, for example it can be used in
10 # * [a-z]: Represents a widget and it can be any number or character
11 # except any other already in use. The whole continuos are of the same character is the
/packages/modules/NeuralNetworks/tools/api/
DREADME.md133 the *name* by exactly one whitespace character, and extends to the end of the
136 %define test this body begins and ends with a space character
/packages/modules/NeuralNetworks/tools/systrace_parser/
Dcontract-between-code-and-parser.txt7 Please view in a 160 character window.
/packages/apps/Dialer/java/com/android/dialer/about/res/raw/
Dthird_party_licenses175 incidental, or consequential damages of any character arising as a
357 incidental, or consequential damages of any character arising as a
563 incidental, or consequential damages of any character arising as a
769 incidental, or consequential damages of any character arising as a
975 incidental, or consequential damages of any character arising as a
1181 incidental, or consequential damages of any character arising as a
1399 incidental, or consequential damages of any character arising as a
1593 incidental, or consequential damages of any character arising as a
1787 incidental, or consequential damages of any character arising as a
1981 incidental, or consequential damages of any character arising as a
[all …]
/packages/apps/Calendar/
DNOTICE171 incidental, or consequential damages of any character arising as a
/packages/apps/Gallery/
DNOTICE171 incidental, or consequential damages of any character arising as a
/packages/inputmethods/LatinIME/
DNOTICE171 incidental, or consequential damages of any character arising as a
/packages/modules/Connectivity/clatd/
DNOTICE170 incidental, or consequential damages of any character arising as a
/packages/modules/ExtServices/
DNOTICE171 incidental, or consequential damages of any character arising as a
/packages/apps/Camera2/jni/
DNOTICE171 incidental, or consequential damages of any character arising as a

123