Searched refs:character (Results 1 - 18 of 18) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DNameLookupBuilder.java178 int character;
183 character = name.codePointAt(position++);
184 if ((character == 0x20) || (character == 0x2c) || (character == 0x2E)) {
190 if ((character < 0x1100) || (character > 0x1112 && character < 0x3131) ||
191 (character > 0x314E && character <
[all...]
H A DHanziToPinyin.java28 * An object to convert Chinese character to its corresponding pinyin string.
97 private void tokenize(char character, Token token) { argument
98 token.source = Character.toString(character);
101 if (character < 128) {
108 if (character < 0x250 || (0x1e00 <= character && character < 0x1eff)) {
133 * space will be put into a Token, One Hanzi character which has pinyin will be treated as a
151 // c. current character is space.
153 final char character
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictDecoderUtils.java109 * A class grouping utility function for our specific character encoding.
118 private static boolean fitsOnOneByte(final int character) { argument
119 return character >= MINIMAL_ONE_BYTE_CHARACTER_VALUE
120 && character <= MAXIMAL_ONE_BYTE_CHARACTER_VALUE;
124 * Compute the size of a character given its character code.
137 * @param character the character code.
140 static int getCharSize(final int character) { argument
142 if (fitsOnOneByte(character)) retur
[all...]
H A DVer2DictDecoder.java202 int character = CharEncoding.readChar(mDictBuffer);
203 addressPointer += CharEncoding.getCharSize(character);
204 while (FormatSpec.INVALID_CHARACTER != character) {
208 mCharacterBuffer[index++] = character;
209 character = CharEncoding.readChar(mDictBuffer);
210 addressPointer += CharEncoding.getCharSize(character);
214 final int character = CharEncoding.readChar(mDictBuffer);
215 addressPointer += CharEncoding.getCharSize(character);
216 characters = new int[] { character };
H A DFusionDictionary.java505 * Custom comparison of two int arrays taken to contain character codes.
509 * This method does NOT test for the first character. It is taken to be equal.
512 * strings are equal. This works BECAUSE we don't look at the first character.
546 * Finds the insertion index of a character within a node array.
548 private static int findInsertionIndex(final PtNodeArray nodeArray, int character) { argument
550 final PtNode reference = new PtNode(new int[] { character },
561 * @param character the character to search for.
562 * @return the position of the character if it's there, or CHARACTER_NOT_FOUND_INDEX = -1 else.
564 private static int findIndexOfChar(final PtNodeArray nodeArray, int character) { argument
[all...]
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/hdr/
H A Dlibstr.h80 #define smlLibStrchr(pString,character) (char*)StrChr((String_t)pString,character)
89 SML_API_DEF String_t smlLibStrchr(const char *pString, char character);
H A Dsml.h315 SML_API_DEF String_t smlLibStrchr(const char *pString, char character);
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/lib/hdr/
H A Dlibstr.h80 #define smlLibStrchr(pString,character) (char*)StrChr((String_t)pString,character)
89 SML_API_DEF String_t smlLibStrchr(const char *pString, char character);
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/lib/src/
H A Dlibstr.c113 SML_API String_t smlLibStrchr(const char *pString, char character){ argument
114 return strchr((char *)pString, character);
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/src/
H A Dlibstr.c113 SML_API String_t smlLibStrchr(const char *pString, char character){ argument
114 return strchr((char *)pString, character);
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
H A DCharMatcher.java33 * character" is used to mean "any character {@code c} for which {@code
58 * Determines whether a character is whitespace according to the latest
73 * Determines whether a character is a breaking whitespace (that is,
86 * Determines whether a character is ASCII, meaning that its code point is
92 * Determines whether a character is a digit according to
110 * Determines whether a character is whitespace according to {@link
127 * Determines whether a character is a digit according to {@link
138 * Determines whether a character is a letter according to {@link
150 * Determines whether a character i
1121 apply(Character character) argument
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DCharMatcher.java33 * character" is used to mean "any character {@code c} for which {@code
58 * Determines whether a character is whitespace according to the latest
73 * Determines whether a character is a breaking whitespace (that is,
86 * Determines whether a character is ASCII, meaning that its code point is
92 * Determines whether a character is a digit according to
110 * Determines whether a character is whitespace according to {@link
127 * Determines whether a character is a digit according to {@link
138 * Determines whether a character is a letter according to {@link
150 * Determines whether a character i
1121 apply(Character character) argument
[all...]
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
H A Dpatricia_trie_policy.cpp113 const int character = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( local
118 outCodePoints[wordPos] = character;
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java1036 char character = iterator.current();
1037 while (character != CharacterIterator.DONE ){
1038 if (character == '<') {
1041 else if (character == '>') {
1044 else if (character == '\"') {
1047 else if (character == '\'') {
1050 else if (character == '&') {
1055 result.append(character);
1057 character = iterator.next();
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info_state_utils.cpp626 // Calculates probabilities of using a point as a correlated point with the character
945 int character = NOT_AN_INDEX; local
952 character = it->first;
955 if (character != NOT_AN_INDEX) {
956 const int codePoint = proximityInfo->getCodePointOf(character);
959 character);
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/ghdr/
H A Dsml.h315 SML_API_DEF String_t smlLibStrchr(const char *pString, char character);
/packages/apps/ContactsCommon/libs/
H A Dlibphonenumber-6.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/i18n/ com/google/i18n/phonenumbers/ ...
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 660 milliseconds