/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | NameLookupBuilder.java | 161 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 …]
|
D | HanziToPinyin.java | 98 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/ |
D | BinaryDictDecoderUtils.java | 121 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 …]
|
D | FusionDictionary.java | 478 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/ |
D | full_reorder_case | 3 # * # (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
|
D | push_reorder_case | 3 # * # (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
|
D | move_out_reorder_case | 3 # * # (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
|
D | simple_reorder_case | 3 # * # (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
|
D | multiple_cell_layouts_simple_reorder | 3 # * # (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
|
D | multiple_cell_layouts_no_space_reorder | 3 # * # (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
|
D | multiple_cell_layouts_reorder_other_side | 3 # * # (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/ |
D | NsdServiceInfo.java | 354 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/ |
D | BluetoothPbapObexServer.java | 1702 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/ |
D | proximity_info_state_utils.cpp | 941 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/ |
D | patricia_trie_policy.cpp | 120 const int character = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( in getCodePointsAndProbabilityAndReturnCodePointCount() local 125 outCodePoints[wordPos] = character; in getCodePointsAndProbabilityAndReturnCodePointCount()
|
/packages/apps/Launcher3/tests/assets/ReorderAlgorithmUnitTest/ |
D | reorder_algorithm_test_cases | 3 # * # (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/ |
D | README.md | 133 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/ |
D | contract-between-code-and-parser.txt | 7 Please view in a 160 character window.
|
/packages/apps/Dialer/java/com/android/dialer/about/res/raw/ |
D | third_party_licenses | 175 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/ |
D | NOTICE | 171 incidental, or consequential damages of any character arising as a
|
/packages/apps/Gallery/ |
D | NOTICE | 171 incidental, or consequential damages of any character arising as a
|
/packages/inputmethods/LatinIME/ |
D | NOTICE | 171 incidental, or consequential damages of any character arising as a
|
/packages/modules/Connectivity/clatd/ |
D | NOTICE | 170 incidental, or consequential damages of any character arising as a
|
/packages/modules/ExtServices/ |
D | NOTICE | 171 incidental, or consequential damages of any character arising as a
|
/packages/apps/Camera2/jni/ |
D | NOTICE | 171 incidental, or consequential damages of any character arising as a
|