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

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/util/
Formatter.java 129 * conversions are a single character, but date/time conversions all start with {@code t} and
130 * have a single extra character describing the desired output.
136 * This table shows the available single-character (non-date/time) conversion types:
160 * <B>Character conversions</B>
162 * Byte, Character, Short, and Integer (and primitives that box to those types) are all acceptable
163 * as character arguments. Any other type is an error.
168 * <td width="25%">Character.</td>
174 * <td width="25%">Uppercase character.</td>
288 * <td width="25%">A literal % character.</td>
    [all...]
  /art/test/021-string2/src/junit/framework/
Assert.java 175 assertEquals(message, new Character(expected), new Character(actual));
  /art/test/082-inline-execute/src/junit/framework/
Assert.java 175 assertEquals(message, new Character(expected), new Character(actual));
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 316 int val1 = Character.digit(c1, 16);
317 int val2 = Character.digit(c2, 16);
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 216 int actualCheckDigit = Character.digit(deviceId.charAt(14), 10);
240 int digit = Character.digit(deviceId.charAt(i), 10);
  /cts/tools/dasm/src/java_cup/
lexer.java 54 /** First character of lookahead. */
57 /** Second character of lookahead. */
76 /** Table of single character symbols. For ease of implementation, we
77 * store all unambiguous single character tokens in this table of Integer
79 * appropriate char (currently Character objects have a bug which precludes
91 /** Character position in current line. */
127 /* set up the table of single character symbols */
144 /** Advance the scanner one character in the input stream. This moves
197 /** Determine if a character is ok to start an id.
198 * @param ch the character in question
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MorseCodeConverter.java 74 /** Return the pattern data for a given character */
99 if (Character.isWhitespace(c)) {
122 if (Character.isWhitespace(c)) {
  /development/tools/rmtypedefs/test/com/android/tools/rmtypedefs/
RmTypeDefsTest.java 187 if (Character.isJavaIdentifierStart(contents[i])) {
189 if (!Character.isJavaIdentifierPart(contents[j])) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AssignTokenTypesBehavior.java 96 Character.isLowerCase(currentRuleName.charAt(0))) &&
122 if ( !Character.isUpperCase(t.getText().charAt(0)) ) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
SetValuesTest.java 77 testField(classID, fieldInfo, new Value((char)Character.MAX_VALUE));
78 testField(classID, fieldInfo, new Value((char)Character.MIN_VALUE));
  /external/chromium_org/ui/keyboard/resources/elements/
kb-altkey.js 43 * Character value associated with the key. Typically, the value is a
44 * single character, but may be multi-character in cases like a ".com"
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 43 public static final TypeId<Character> CHAR
44 = new TypeId<Character>(com.android.dx.rop.type.Type.CHAR);
  /external/easymock/src/org/easymock/internal/
Invocation.java 18 import static java.lang.Character.*;
192 || !Character.isJavaIdentifierStart(mockName.charAt(0))) {
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntegerTest.java 73 for (int radix = Character.MIN_RADIX; radix <= Character.MAX_RADIX; radix++) {
UnsignedLongTest.java 76 for (int radix = Character.MIN_RADIX; radix <= Character.MAX_RADIX; radix++) {
  /external/junit/src/junit/framework/
Assert.java 173 assertEquals(message, new Character(expected), new Character(actual));
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
AnnotationWriter.java 130 } else if (value instanceof Character) {
131 bv.put12('C', cw.newInteger(((Character) value).charValue()).index);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
ASMifierAbstractVisitor.java 151 } else if (cst instanceof Character) {
152 int c = ((Character) cst).charValue();
153 buf.append("new Character((char)").append(c).append(')');
TraceAnnotationVisitor.java 82 } else if (value instanceof Character) {
83 visitChar(((Character) value).charValue());
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AbstractAppleMetaDataBox.java 157 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
158 + Character.digit(s.charAt(i + 1), 16));
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlEntities.java 100 // character in the entity name
140 if (codepoint > Character.MAX_CODE_POINT) {
164 if (codepoint > Character.MAX_CODE_POINT) {
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Utils.java 90 buffer.append(Character.toLowerCase(value.charAt(i)));
94 buffer.append(Character.toUpperCase(value.charAt(i)));
112 * any character including a doubled quoting character. The value may be
372 // quick check if character are contained that need special treatment
448 * Simple check if a character is a valid XML start name char.
454 * @param ch a character
455 * @return Returns true if the character is a valid first char of an XML name.
464 * Simple check if a character is a valid XML name char
471 * @param ch a character
    [all...]
  /libcore/luni/src/main/java/java/io/
EmulatedFields.java 230 return slot.defaulted ? defaultValue : ((Character) slot.fieldValue).charValue();
405 slot.fieldValue = Character.valueOf(value);
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
ParserTest.java 91 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
92 + Character.digit(s.charAt(i+1), 16));
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileSystemUtils.java 254 // character on the line, then continue until we find the first
255 // non-numeric character, and everything between that and the last
256 // numeric character inclusive is our free space bytes count
262 if (Character.isDigit(c)) {
263 // found the last numeric character, this is the end of
272 if (!Character.isDigit(c) && c != ',' && c != '.') {
273 // found the next non-numeric character, this is the

Completed in 580 milliseconds

<<11121314151617181920>>