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

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/font/
LineWrapMode.java 9 Character,
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognitionException.cs 230 public int Character {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognitionException.cs 268 public int Character
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
RubyTarget.java 78 rubyCharValueEscape[ i ] = Character.toString( i );
139 * I W h << 'i' << '_' // the last character in an acronym run of uppers
158 if ( Character.isLetter( cur ) ) {
159 output_buffer.append( Character.toLowerCase( cur ) );
161 if ( Character.isDigit( next ) || Character.isWhitespace( next ) ) {
163 } else if ( Character.isLowerCase( cur ) && Character.isUpperCase( next ) ) {
166 } else if ( ( i < cliff - 1 ) && Character.isUpperCase( cur ) && Character.isUpperCase( next ) )
    [all...]
  /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...]
  /external/webkit/Source/JavaScriptCore/jit/
JIT.h 111 Character,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 202 sb.append(Character.toUpperCase(word.charAt(0)));
266 // At first character typed, search only the bigrams
282 final char currentCharUpper = Character.toUpperCase(currentChar);
308 // At second character typed, search the unigrams (scores being affected by bigrams)
488 sb.append(Character.toUpperCase(word[offset]));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 277 final int[] codePoints = new int[Character.codePointCount(characters, 0, length)];
278 int codePoint = Character.codePointAt(characters, 0);
280 for (int srci = Character.charCount(codePoint);
281 srci < length; srci += Character.charCount(codePoint), ++dsti) {
283 codePoint = Character.codePointAt(characters, srci);
440 * Custom comparison of two int arrays taken to contain character codes.
444 * This method does NOT test for the first character. It is taken to be equal.
447 * strings are equal. This works BECAUSE we don't look at the first character.
481 * Finds the insertion index of a character within a node.
483 private static int findInsertionIndex(final Node node, int character) {
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 46 /** A space character */
49 /** Character style of underline */
210 * Insert a character into the composing text.
212 * @param chars A array of character
218 /* if the character is a space, commit the composing text */
223 /* if the character is a separator, remove an auto-inserted space and commit the composing text. */
237 * Insert a character into the composing text.
239 * @param charCode A character code
246 insertCharToComposingText(Character.toChars(charCode));
600 /* 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 108 private static final Map<Character, Character> DIALLABLE_CHAR_MAPPINGS;
111 private static final Map<Character, Character> ALPHA_MAPPINGS;
114 private static final Map<Character, Character> ALPHA_PHONE_MAPPINGS;
118 private static final Map<Character, Character> ALL_PLUS_NUMBER_GROUPING_SYMBOLS;
123 HashMap<Character, Character> asciiDigitMappings = new HashMap<Character, Character>()
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
RIL.java     [all...]
  /prebuilts/sdk/10/
android.jar 

Completed in 518 milliseconds

1 2