Searched defs:character (Results 1 - 11 of 11) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DHanziToPinyin.java28 * An object to convert Chinese character to its corresponding pinyin string.
98 private void tokenize(char character, Token token) { argument
99 token.source = Character.toString(character);
102 if (character < 128) {
109 if (character < 0x250 || (0x1e00 <= character && character < 0x1eff)) {
134 * space will be put into a Token, One Hanzi character which has pinyin will be treated as a
152 // c. current character is space.
154 final char character
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictDecoderUtils.java114 * A class grouping utility function for our specific character encoding.
121 private static boolean fitsOnOneByte(final int character, argument
123 int codePoint = character;
125 if (codePointToOneByteCodeMap.containsKey(character)) {
126 codePoint = codePointToOneByteCodeMap.get(character);
134 * Compute the size of a character given its character code.
147 * @param character the character code.
150 static int getCharSize(final int character, argument
[all...]
H A DFusionDictionary.java435 * Custom comparison of two int arrays taken to contain character codes.
439 * This method does NOT test for the first character. It is taken to be equal.
442 * strings are equal. This works BECAUSE we don't look at the first character.
476 * Finds the insertion index of a character within a node array.
478 private static int findInsertionIndex(final PtNodeArray nodeArray, int character) { argument
480 final PtNode reference = new PtNode(new int[] { character },
491 * @param character the character to search for.
492 * @return the position of the character if it's there, or CHARACTER_NOT_FOUND_INDEX = -1 else.
494 private static int findIndexOfChar(final PtNodeArray nodeArray, int character) { argument
[all...]
/packages/apps/Car/Radio/src/com/android/car/radio/
H A DManualTunerController.java77 * Returns {@code true} if the given character is allowed to be appended to the given
80 boolean canAppendCharacterToNumber(@NonNull String character, @NonNull String number); argument
269 public boolean canAppendCharacterToNumber(@NonNull String character, argument
272 if (character.equals(mPeriod)) {
276 int charValue = Integer.valueOf(character);
297 return character.equals(mNumberZero);
302 return character.equals(mNumberZero);
304 // Otherwise, just disallow the character.
358 public boolean canAppendCharacterToNumber(@NonNull String character, argument
362 if (character
[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/dictionary/structure/v2/
H A Dpatricia_trie_policy.cpp120 const int character = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( local
125 outCodePoints[wordPos] = character;
/packages/apps/Terminal/src/com/android/terminal/
H A DTerminal.java189 public boolean dispatchCharacter(int modifiers, int character) { argument
190 return nativeDispatchCharacter(mNativePtr, modifiers, character);
204 private static native boolean nativeDispatchCharacter(long ptr, int modifiers, int character); argument
/packages/apps/Terminal/jni/
H A Dcom_android_terminal_Terminal.cpp117 bool dispatchCharacter(int mod, int character);
394 bool Terminal::dispatchCharacter(int mod, int character) { argument
396 vterm_input_push_char(mVt, static_cast<VTermModifier>(mod), character);
/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/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 391 milliseconds