HomeSort by relevance Sort by last modified time
    Searched defs:Character (Results 51 - 75 of 96) sorted by null

1 23 4

  /libcore/ojluni/src/main/java/java/lang/
AbstractStringBuilder.java 50 * The value is used for character storage.
73 * Returns the length (character count).
169 * Attempts to reduce storage used for the character sequence.
182 * Sets the length of the character sequence.
183 * The sequence is changed to a new character sequence
185 * index <i>k</i> less than {@code newLength}, the character at
186 * index <i>k</i> in the new character sequence is the same as the
187 * character at index <i>k</i> in the old sequence if <i>k</i> is less
188 * than the length of the old character sequence; otherwise, it is the
189 * null character {@code '\u005Cu0000'}
    [all...]
Character.java 35 * The {@code Character} class wraps a value of the primitive
37 * {@code Character} contains a single field whose type is
41 * a character's category (lowercase letter, digit, etc.) and for converting
44 * Character information is based on the Unicode Standard, version 6.2.0.
46 * The methods and data of class {@code Character} are defined by
48 * Unicode Character Database maintained by the Unicode
51 * character range.
58 * <h3><a name="unicode">Unicode Character Representations</a></h3>
61 * {@code Character} object encapsulates) are based on the
75 * than U+FFFF are called <em>supplementary character</em>s. The Jav
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConnection.java 69 private final Queue<Character> mDtmfQueue = new LinkedList<>();
249 mDtmfQueue.add(new Character(digit));
251 sendBurstDtmfStringLocked(Character.toString(digit));
276 Log.i(this, "%d dtmf character[s] removed from the queue", dtmfDigits.length());
  /art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java 525 parameterList.add(Character.toString(parameters.charAt(typePointer)));
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
PrintLib.c 109 // Get the first character from the format string
122 // Get the next character from the format string
127 // Get the next character from the format string
212 // Get the next character from the format string
217 // Get the next character from the format string
549 If Value is < 0 and RADIX_HEX is not set in Flags, then the fist character in Buffer is a '-'.
552 sign character, '0' characters, digit characters for Value, and the Null-terminator
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
DoublesTest.java 455 for (int i = Character.MIN_CODE_POINT; i < Character.MAX_CODE_POINT; i++) {
456 Character.toChars(i, tmp, 0);
457 checkTryParse(String.copyValueOf(tmp, 0, Character.charCount(i)));
FloatsTest.java 442 for (int i = Character.MIN_CODE_POINT; i < Character.MAX_CODE_POINT; i++) {
443 Character.toChars(i, tmp, 0);
444 checkTryParse(String.copyValueOf(tmp, 0, Character.charCount(i)));
  /external/libphonenumber/libphonenumber/src/com/google/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;
141 HashMap<Character, Character> asciiDigitMappings = new HashMap<Character, Character>()
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DumperOptions.java 39 DOUBLE_QUOTED(Character.valueOf('"')), SINGLE_QUOTED(Character.valueOf('\'')), LITERAL(
40 Character.valueOf('|')), FOLDED(Character.valueOf('>')), PLAIN(null);
41 private Character styleChar;
43 private ScalarStyle(Character style) {
47 public Character getChar() {
56 public static ScalarStyle createStyle(Character style) {
70 throw new YAMLException("Unknown scalar style character: " + style);
  /libcore/luni/src/test/java/libcore/java/lang/
StringTest.java 156 // Minimum supplementary character: U+10000
158 // Random supplementary character: U+10381 Ugaritic letter beta
160 // Maximum supplementary character: U+10FFFF
358 // For strings where a character differs, the result is
384 // For strings where a character differs, the result is
547 assertEquals(Character.toCodePoint(high, low), surrogateCP.codePoints().toArray()[0]);
  /libcore/ojluni/src/main/java/sun/security/x509/
AVA.java 201 // read next character
208 // read next character skipping whitespace
286 int cVal = hexDigits.indexOf(Character.toUpperCase((char)c));
321 // backslash-doublequote, or character other than backslash or
347 ("Invalid escaped character in AVA: " +
425 // check if character was improperly escaped
429 ("Invalid escaped character in AVA: '" +
436 ("Invalid escaped space character " +
438 "space character can be escaped.");
444 ("Invalid escaped '#' character in AVA. "
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectPage.java 484 sb.append(Character.toUpperCase(c));
502 if (Character.isLetterOrDigit(c) || c == '.' || c == '-') {
620 && Character.isDigit(minSdk.charAt(0))
698 if (i == 0 && Character.isJavaIdentifierStart(c)
699 || i != 0 && Character.isJavaIdentifierPart(c)) {
700 sb.append(Character.toLowerCase(c));
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsManagerTest.java 148 assertFalse(Character.isHighSurrogate(
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 251 final int[] codePoints = new int[Character.codePointCount(characters, 0, length)];
252 int codePoint = Character.codePointAt(characters, 0);
254 for (int srci = Character.charCount(codePoint);
255 srci < length; srci += Character.charCount(codePoint), ++dsti) {
257 codePoint = Character.codePointAt(characters, srci);
435 * 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) {
    [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 468 if (Character.isLetter(c)) {
500 if (Character.isJavaIdentifierPart(c)) {
501 sb.append(Character.toLowerCase(c));
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Descriptors.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MeasureUnitTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MeasureUnitTest.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
PasswordTextView.java 646 * @return The width this character contributes, including padding.
660 canvas.drawText(Character.toString(whichChar), 0, 0, mDrawPaint);
  /libcore/luni/src/test/java/libcore/java/lang/invoke/
MethodHandleCombinersTest.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetStateMachine.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
agtctl.h     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
jsoup-1.7.2.jar 
  /prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.6.3/
jsoup-1.6.3.jar 

Completed in 2133 milliseconds

1 23 4