Searched refs:Character (Results 1 - 25 of 39) sorted by relevance

12

/external/guava/src/com/google/common/primitives/
H A DChars.java38 * already found in either {@link Character} or {@link Arrays}.
51 public static final int BYTES = Character.SIZE / Byte.SIZE;
55 * {@code ((Character) value).hashCode()}.
70 * Character#MAX_VALUE} or less than {@link Character#MIN_VALUE}
83 * {@code char} type, {@link Character#MAX_VALUE} if it is too large,
84 * or {@link Character#MIN_VALUE} if it is too small
87 if (value > Character.MAX_VALUE) {
88 return Character.MAX_VALUE;
90 if (value < Character
[all...]
H A DPrimitives.java50 add(primToWrap, wrapToPrim, char.class, Character.class);
/external/apache-http/src/org/apache/commons/codec/net/
H A DQuotedPrintableCodec.java116 char hex1 = Character.toUpperCase(Character.forDigit((b >> 4) & 0xF, 16));
117 char hex2 = Character.toUpperCase(Character.forDigit(b & 0xF, 16));
182 int u = Character.digit((char) bytes[++i], 16);
183 int l = Character.digit((char) bytes[++i], 16);
H A DURLCodec.java133 char hex1 = Character.toUpperCase(
134 Character.forDigit((b >> 4) & 0xF, 16));
135 char hex2 = Character.toUpperCase(
136 Character.forDigit(b & 0xF, 16));
167 int u = Character.digit((char)bytes[++i], 16);
168 int l = Character.digit((char)bytes[++i], 16);
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java143 if (!Character.isLetter(c)) {
146 return this.soundexMapping[Character.toUpperCase(c) - 'A'];
H A DSoundexUtils.java47 if (Character.isLetter(str.charAt(i))) {
/external/proguard/src/proguard/obfuscate/
H A DDictionaryNameFactory.java70 Character.isJavaIdentifierStart((char)c) :
71 Character.isJavaIdentifierPart((char)c)))
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java371 // we do not use Character.isWhitspace(ch) here, since that allows
373 return ((ch == '\t') || Character.isSpaceChar(ch));
392 if (Character.isLetterOrDigit(ch))
396 if (Character.isISOControl(ch))
/external/proguard/src/proguard/
H A DWordReader.java135 Character.isWhitespace(currentLine.charAt(currentIndex)))
169 Character.isWhitespace(currentLine.charAt(currentIndex)))
217 Character.isWhitespace(currentCharacter))
/external/easymock/src/org/easymock/internal/
H A DArgumentToString.java34 } else if (value instanceof Character) {
H A DMethodSerializationWrapper.java34 primitiveTypes.put(Character.TYPE.getName(), Character.TYPE);
H A DRecordState.java46 emptyReturnValues.put(Character.TYPE, Character.valueOf((char)0));
59 primitiveToWrapperType.put(Character.TYPE, Character.class);
235 } else if (returnType.equals(Character.TYPE)) {
H A DInvocation.java18 import static java.lang.Character.*;
192 || !Character.isJavaIdentifierStart(mockName.charAt(0))) {
/external/jdiff/src/jdiff/
H A DHTMLIndexes.java143 char swu = Character.toUpperCase(sw);
144 if (swu != Character.toUpperCase(oldsw)) {
146 if (Character.toUpperCase(sw) != Character.toUpperCase(currChar)) {
298 if (Character.toUpperCase(sw) != Character.toUpperCase(oldsw)) {
302 h_.writeText("<A NAME=\"" + Character.toUpperCase(res) + "\"></A>");
495 if (Character.toUpperCase(sw) != Character.toUpperCase(oldsw)) {
498 h_.writeText("<A NAME=\"" + Character
[all...]
H A DComments.java269 if (Character.isWhitespace(nextChar)) continue;
273 } else if (!Character.isWhitespace(nextChar)) {
287 } else if (Character.isWhitespace(c)) {
303 if (Character.isWhitespace(c)) {
/external/guava/src/com/google/common/base/
H A DCharMatcher.java47 public abstract class CharMatcher implements Predicate<Character> {
113 * Character#isWhitespace(char) Java's definition}; it is usually preferable
130 * Character#isDigit(char) Java's definition}. If you only care to match
135 return Character.isDigit(c);
141 * Character#isLetter(char) Java's definition}. If you only care to match
147 return Character.isLetter(c);
153 * Character#isLetterOrDigit(char) Java's definition}.
157 return Character.isLetterOrDigit(c);
163 * Character#isUpperCase(char) Java's definition}.
167 return Character
[all...]
H A DCaseFormat.java147 : (Character.toTitleCase(word.charAt(0))
/external/proguard/src/proguard/io/
H A DDataEntryObfuscator.java84 if (!Character.isLetterOrDigit(c))
H A DDataEntryRewriter.java87 if (Character.isJavaIdentifierPart(c) ||
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java85 int digit = Character.digit(ch, 16);
/external/guava/src/com/google/common/collect/
H A DMutableClassToInstanceMap.java87 .put(char.class, Character.class)
/external/junit/src/junit/swingui/
H A DTestSelector.java84 return ch == Character.toUpperCase(s.charAt(typeIndex(s)));
239 if (!Character.isJavaIdentifierStart(ch))
243 if (TestCellRenderer.matchesKey(s, Character.toUpperCase(ch))) {
/external/proguard/src/proguard/util/
H A DListUtil.java117 Character.isWhitespace(string.charAt(index)))
/external/junit/src/junit/framework/
H A DAssert.java172 assertEquals(message, new Character(expected), new Character(actual));
/external/webkit/WebCore/dom/
H A DPosition.h47 Character, // Move to the next Unicode character break. enumerator in enum:WebCore::PositionMoveType

Completed in 232 milliseconds

12