HomeSort by relevance Sort by last modified time
    Searched refs:Character (Results 151 - 175 of 251) sorted by null

1 2 3 4 5 67 8 91011

  /packages/apps/VoiceDialer/src/com/android/voicedialer/
CommandRecognizerEngine.java 270 if (len == 2 && !(Character.isUpperCase(word.charAt(0)) &&
271 Character.isUpperCase(word.charAt(1)))) continue;
418 !Character.isLetterOrDigit(name.charAt(i + 1))) break;
425 // ensure at least one alphanumeric character, or the pron engine will fail
885 if (fch == nch || (fch == 'x' && Character.isDigit(nch))) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AutoDictionary.java 64 // 2-5 character string.
147 word = Character.toLowerCase(word.charAt(0)) + word.substring(1);
LatinIME.java 247 // Keeps track of most recently inserted text (multi-character key) for reverting
    [all...]
LatinKeyboardView.java 121 && Character.isLowerCase(label.charAt(0))) {
UserBigramDictionary.java 73 // 2-5 character string. (Same TODO from AutoDictionary)
169 word2 = Character.toLowerCase(word2.charAt(0)) + word2.substring(1);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
DefaultSoftKeyboardEN.java 282 primaryCode = Character.toUpperCase(primaryCode);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
Romkan.java 182 boolean upper = Character.isUpperCase(key.charAt(key.length() - 1));
RomkanFullKatakana.java 186 boolean upper = Character.isUpperCase(key.charAt(key.length() - 1));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 343 c[0] = Character.toUpperCase(c[0]);
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 55 * provides character to entity name lookup.
    [all...]
ToXMLStream.java 48 * provides character to entity name lookup.
287 && !Character.isSpaceChar(data.charAt(0)))
  /libcore/luni/src/main/java/java/math/
BigInteger.java 180 * {@code Character.digit(char,10)}.
197 * are interpreted as if by {@code Character.digit(char, radix)}.
204 * Character.MIN_RADIX} or {@code radix > Character.MAX_RADIX}.
219 if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX) {
833 * BigInteger} with base radix. If {@code radix < Character.MIN_RADIX} or
834 * {@code radix > Character.MAX_RADIX} then a decimal representation is
836 * method {@code Character.forDigit}.
    [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 277 * character ("\r", "\n", "\r\n"). If there's whitespace after the
284 * whitespace before and after that character. The value starts with the
285 * first character after the space between the key and the value.</li>
287 * "\!", "\#", "\t", "\b", "\f", and "&#92;uXXXX" (unicode character).</li>
319 int digit = Character.digit(nextChar, 16);
326 throw new IllegalArgumentException("Invalid Unicode sequence: illegal character");
416 if (Character.isWhitespace(nextChar)) {
783 * substitution for predefined character entities to use them safely in
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
ByteBufferTest.java     [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AnnotationParser.java 313 CstUtf8 humanTag = new CstUtf8(Character.toString((char) tag));
  /frameworks/base/core/java/android/text/
TextUtils.java 360 * <p>If the final character in the string to split is the delimiter then no empty string will
819 } else if (Character.isDigit(next)) {
820 int which = Character.getNumericValue(next) - 1;
838 // happens when ^ is the last character in the string.
975 * copy with ellipsis character added at the specified edge or center.
986 * or, if it does not fit, a copy with ellipsis character added
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 118 if (Character.isDigit(s.charAt(i))) {
155 * Examines the character span matched by the pattern and determines
160 * @param start The index of the first character in s that was
162 * @param end The index of the last character in s that was
  /libcore/luni/src/main/java/org/apache/xalan/templates/
OutputProperties.java 501 if (Character.isWhitespace(c))
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
IntegerTest.java     [all...]
LongTest.java 825 //must be consistent with Character.digit()
826 assertEquals(Character.digit('1', 2), Long.valueOf("1", 2).byteValue());
827 assertEquals(Character.digit('F', 16), Long.valueOf("F", 16).byteValue());
899 //must be consistent with Character.digit()
900 assertEquals(Character.digit('1', 2), Long.parseLong("1", 2));
901 assertEquals(Character.digit('F', 16), Long.parseLong("F", 16));
    [all...]
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_AbstractTest.java 338 return Character.isLetterOrDigit(code);
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 371 int digit = Character.digit((char) nextChar, 16);
  /packages/apps/Settings/src/com/android/settings/
LanguageSettings.java 175 locale = Character.toUpperCase(locale.charAt(0)) + locale.substring(1);
  /frameworks/base/core/java/android/pim/vcard/
VCardUtils.java 437 private static final Set<Character> sUnAcceptableAsciiInV21WordSet =
438 new HashSet<Character>(Arrays.asList('[', ']', '=', ':', '.', ',', ' '));
505 if (!Character.isWhitespace(str.codePointAt(i))) {
606 // All Japanese character is able to be expressed by char.
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 143 * Puts the value of the character field identified by {@code name} to
804 * stream. Only the least significant byte of each character in the string
818 * Writes a character (16 bit) to the target stream.
821 * the character to write to the target stream.
    [all...]

Completed in 5958 milliseconds

1 2 3 4 5 67 8 91011