HomeSort by relevance Sort by last modified time
    Searched defs:Character (Results 1 - 25 of 28) sorted by null

1 2

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java 26 assertFalse(Character.isValidCodePoint(-1));
27 assertTrue(Character.isValidCodePoint(0));
28 assertTrue(Character.isValidCodePoint(1));
29 assertFalse(Character.isValidCodePoint(Integer.MAX_VALUE));
32 assertTrue(Character.isValidCodePoint(c));
35 assertFalse(Character.isValidCodePoint(0x10FFFF + 1));
39 assertFalse(Character.isSupplementaryCodePoint(-1));
42 assertFalse(Character.isSupplementaryCodePoint(c));
46 assertTrue(Character.isSupplementaryCodePoint(c));
49 assertFalse(Character.isSupplementaryCodePoint(0x10FFFF + 1))
    [all...]
CharacterImplTest.java 26 Character e = new Character(c);
27 Character a = Character.valueOf(c);
31 assertSame(Character.valueOf(c), Character.valueOf(c));
34 for (int c = 128; c <= Character.MAX_VALUE; c++) {
35 assertEquals(new Character((char) c), Character.valueOf((char) c));
Character_SubsetTest.java 25 * @tests java.lang.Character.Subset#Character.Subset(java.lang.String)
31 new Character.Subset(null) {
39 * @tests java.lang.Character.Subset#toString()
44 Character.Subset subset = new Character.Subset(name) {
  /libcore/luni/src/test/java/libcore/java/lang/
CharacterTest.java 25 Character e = new Character(c);
26 Character a = Character.valueOf(c);
28 assertSame(Character.valueOf(c), Character.valueOf(c));
30 for (int c = '\u0080'; c <= Character.MAX_VALUE; ++c) {
31 assertEquals(new Character((char) c), Character.valueOf((char) c));
36 assertTrue(Character.isBmpCodePoint(0x0000))
    [all...]
OldCharacterTest.java 25 assertEquals(1, Character.codePointCount("\uD800\uDC00".toCharArray(),
27 assertEquals(3, Character.codePointCount("a\uD800\uDC00b".toCharArray(),
29 assertEquals(4, Character.codePointCount("a\uD800\uDC00b\uD800".toCharArray(),
31 assertEquals(4, Character.codePointCount("ab\uD800\uDC00b\uD800".toCharArray(),
35 Character.codePointCount((char[]) null, 0, 1);
41 Character.codePointCount("abc".toCharArray(), -1, 1);
47 Character.codePointCount("abc".toCharArray(), 0, 4);
53 Character.codePointCount("abc".toCharArray(), 1, 3);
64 Character.DIRECTIONALITY_LEFT_TO_RIGHT,
67 Character.DIRECTIONALITY_LEFT_TO_RIGHT
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
60 * Writes a single character to the writer.
62 * @param c The character to write.
65 write(Character.toString(c));
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 34 primitiveTypes.put(Character.TYPE.getName(), Character.TYPE);
  /external/webkit/Source/WebCore/dom/
Position.h 48 Character, // Move to the next Unicode character break.
127 // using composed characters, the result may be inside a single user-visible character if a ligature is formed.
  /frameworks/base/core/java/android/bluetooth/
AtParser.java 40 * single character (e.g. "D"), and everything following this character is
75 * the basic command character, and handlers for Extended commands should be
95 private HashMap<Character, AtCommandHandler> mBasicHandlers;
104 mBasicHandlers = new HashMap<Character, AtCommandHandler>();
113 * @param command Command name - a single character
116 public void register(Character command, AtCommandHandler handler) {
157 out.append(Character.toUpperCase(c));
169 * Find a character ch, ignoring quoted sections.
212 * Return the index of the end of character after the last character i
    [all...]
  /libcore/luni/src/main/java/java/lang/
StringBuilder.java 317 * {@code char[]} as defined by {@link Character#toChars(int)}.
322 * @see Character#toChars(int)
325 append0(Character.toChars(codePoint));
348 * Deletes the character at the specified index. shifts any remaining
352 * the index of the character to delete.
604 * the start of the subsequence of the character sequence.
606 * the end of the subsequence of the character sequence.
Character.java 27 * <p>Character data is kept up to date as Unicode evolves.
32 * <p>The Unicode specification, character tables, and other information are available at
41 * supplementary character are made up of a <i>high surrogate</i> with a value
50 * <p>Here's a list of the Unicode character categories and the corresponding Java constant,
100 public final class Character implements Serializable, Comparable<Character> {
106 * The minimum {@code Character} value.
111 * The maximum {@code Character} value.
129 public static final Class<Character> TYPE
130 = (Class<Character>) char[].class.getComponentType()
    [all...]
  /external/chromium/chrome/browser/resources/keyboard/
main.js 36 * Plain-old-data class to represent a character.
38 * @param {string} id The key identifier for this Character.
41 function Character(display, id) {
48 * @param {string} display Both the display and id for the created Character.
51 return new Character(display, display);
147 * @param {Character} key The Character for KEY_MODE.
148 * @param {Character} shift The Character for SHIFT_MODE.
149 * @param {Character} num The Character for NUMBER_MODE
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLToken.h 44 Character,
97 void beginStartTag(UChar character)
99 ASSERT(character);
106 m_data.append(character);
121 // Starting a character token works slightly differently than starting
122 // other types of tokens because we want to save a per-character branch.
125 ASSERT(m_type == Uninitialized || m_type == Character);
126 m_type = Character;
142 void beginDOCTYPE(UChar character)
144 ASSERT(character);
    [all...]
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
FusionDictionary.java 308 * Custom comparison of two int arrays taken to contain character codes.
312 * This method does NOT test for the first character. It is taken to be equal.
315 * strings are equal. This works BECAUSE we don't look at the first character.
354 * Finds the insertion index of a character within a node.
356 private static int findInsertionIndex(final Node node, int character) {
358 final CharGroup reference = new CharGroup(new int[] { character }, null, 0);
367 * @param character the character to search for.
368 * @return the position of the character if it's there, or CHARACTER_NOT_FOUND = -1 else.
371 private static int findIndexOfChar(final Node node, int character) {
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JIT.h 111 Character,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 251 * Returns a object which represents suggested words that match the list of character codes
271 sb.append(Character.toUpperCase(word.charAt(0)));
312 // At first character typed, search only the bigrams
335 final char currentCharUpper = Character.toUpperCase(currentChar);
351 // At second character typed, search the unigrams (scores being affected by bigrams)
482 sb.append(Character.toUpperCase(word[offset]));
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 46 /** A space character */
49 /** Character style of underline */
204 * Insert a character into the composing text.
206 * @param chars A array of character
212 /* if the character is a space, commit the composing text */
217 /* if the character is a separator, remove an auto-inserted space and commit the composing text. */
231 * Insert a character into the composing text.
233 * @param charCode A character code
240 insertCharToComposingText(Character.toChars(charCode));
585 /* do nothing if the character is not able to display or the character is dead key *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 460 if (Character.isLetter(c)) {
487 if (Character.isJavaIdentifierPart(c)) {
488 sb.append(Character.toLowerCase(c));
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java 96 private static final Map<Character, Character> ALPHA_MAPPINGS;
99 private static final Map<Character, Character> ALPHA_PHONE_MAPPINGS;
103 private static final Map<Character, Character> ALL_PLUS_NUMBER_GROUPING_SYMBOLS;
108 HashMap<Character, Character> asciiDigitMappings = new HashMap<Character, Character>();
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
RIL.java     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 2891 milliseconds

1 2