HomeSort by relevance Sort by last modified time
    Searched refs:Character (Results 126 - 150 of 598) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 148 int hash = Character.toLowerCase(monthString.charAt(0)) +
149 Character.toLowerCase(monthString.charAt(1)) +
150 Character.toLowerCase(monthString.charAt(2)) - 3 * 'a';
  /libcore/support/src/test/java/tests/util/
CallVerificationStack.java 223 Character value = (Character) wrapper.getValue();
308 this.value = new Character(val);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/format/
FormatUtils.java 156 while (i < textLength && !Character.isLetterOrDigit(text.charAt(i))) {
167 if (Character.toUpperCase(text.charAt(i + j)) != prefix.charAt(j)) {
176 while (i < textLength && Character.isLetterOrDigit(text.charAt(i))) {
  /packages/apps/Nfc/src/com/android/nfc/
NfcWifiProtectedSetup.java 155 val = (val | Character.digit(bigEndianHexString.charAt(i), 16));
169 hexChars[j * 2] = Character.forDigit(value >>> 4, 16);
170 hexChars[j * 2 + 1] = Character.forDigit(value & 0x0F, 16);
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConnection.java 70 private final Queue<Character> mDtmfQueue = new LinkedList<>();
218 mDtmfQueue.add(new Character(digit));
220 sendBurstDtmfStringLocked(Character.toString(digit));
245 Log.i(this, "%d dtmf character[s] removed from the queue", dtmfDigits.length());
  /frameworks/base/core/java/android/text/method/
QwertyKeyListener.java 71 * character pickers.
118 if ((c == i || c == Character.toUpperCase(i)) && view != null) {
143 Character.digit(content.charAt(start - 1), 16) >= 0) {
195 Character.isLowerCase(i) &&
204 i = Character.toUpperCase(i);
242 // potentially do autotext replacement if the character
248 i == '"' || Character.getType(i) == Character.END_PUNCTUATION) &&
255 if (c != '\'' && !Character.isLetter(c)) {
288 Character.getType(c) == Character.END_PUNCTUATION)
    [all...]
WordIterator.java 98 /** If <code>offset</code> is within a word, returns the index of the first character of that
102 * <i>as well as</i> the index of its last character plus one.
103 * If offset is the index of a low surrogate character, BreakIterator.DONE will be returned.
128 /** If <code>offset</code> is within a word, returns the index of the last character of that
132 * <i>as well as</i> the index of its last character plus one.
133 * If offset is the index of a low surrogate character, BreakIterator.DONE will be returned.
161 if (Character.isLetterOrDigit(codePoint)) return true;
169 if (Character.isLetterOrDigit(codePoint)) return true;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 54 // Special non-character codes defined in Keyboard
88 * @return a character sequence describing the action performed by pressing the key
118 final boolean isDefinedNonCtrl = Character.isDefined(code)
119 && !Character.isISOControl(code);
142 * @return a character sequence describing the action performed by pressing the key
255 * Returns a localized character sequence describing what will happen when
260 * @return a character sequence describing the code point.
281 if (Character.isDefined(codePoint) && !Character.isISOControl(codePoint)) {
289 final boolean isUpperCase = Character.isUpperCase(code)
    [all...]
  /art/test/093-serialization/src/
Main.java 112 Character seven = '7';
115 public Character thing;
  /cts/tests/tests/text/src/android/text/cts/
TextUtils_SimpleStringSplitterTest.java 31 new SimpleStringSplitter(Character.MAX_VALUE);
33 new SimpleStringSplitter(Character.MIN_VALUE);
  /developers/build/prebuilts/gradle/CardReader/Application/src/main/java/com/example/android/cardreader/
LoyaltyCardReader.java 143 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
144 + Character.digit(s.charAt(i+1), 16));
  /developers/samples/android/connectivity/nfc/CardReader/Application/src/main/java/com/example/android/cardreader/
LoyaltyCardReader.java 143 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
144 + Character.digit(s.charAt(i+1), 16));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List9.java 56 private char mPrevLetter = Character.MIN_VALUE;
124 mDialogText.setText(((Character)firstLetter).toString());
  /development/samples/browseable/CardReader/src/com.example.android.cardreader/
LoyaltyCardReader.java 143 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
144 + Character.digit(s.charAt(i+1), 16));
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
Cookie.java 56 sb.append(Character.forDigit((char)((c >>> 4) & 0x0f), 16));
57 sb.append(Character.forDigit((char)(c & 0x0f), 16));
  /external/hamcrest/src/org/hamcrest/
BaseDescription.java 30 } else if (value instanceof Character) {
32 toJavaSyntax((Character) value);
88 * The default implementation passes every character to {@link #append(char)}.
  /external/jsilver/src/com/google/streamhtmlparser/util/
EntityResolver.java 26 * are received one character at a time hence must be stored temporarily.
187 * Processes a character from the input stream and decodes any html entities
216 // Status.COMPLETED, ignore character, do nothing.
225 * Numeric Character References</a>
227 * @param terminator the last character read, unused on successful
243 return new String(Character.toChars(
246 return new String(Character.toChars(
  /external/smack/src/org/jivesoftware/smack/util/
Base32Encoder.java 49 if (!Character.isWhitespace(c)) {
50 c = Character.toUpperCase(c);
  /frameworks/base/core/java/android/util/
ReflectiveProperty.java 48 char firstLetter = Character.toUpperCase(name.charAt(0));
107 (getterType == char.class && valueType == Character.class);
  /packages/apps/Browser/src/com/android/browser/
UrlUtils.java 144 if (!Character.isLetter(ch)) {
147 allLower &= Character.isLowerCase(ch);
  /packages/services/Telecomm/src/com/android/server/telecom/
DtmfLocalTonePlayer.java 36 private static final Map<Character, Integer> TONE_MAP =
37 ImmutableMap.<Character, Integer>builder()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aepack.py 24 aetypes.Character(1),
25 aetypes.Character(2, aetypes.Line(2)),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aepack.py 24 aetypes.Character(1),
25 aetypes.Character(2, aetypes.Line(2)),
  /external/jdiff/src/jdiff/
HTMLIndexes.java 143 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.toUpperCase(res) + "\"></A>")
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 36 * <p>Throughout the documentation of this class, the phrase "matching character" is used to mean
37 * "any character {@code c} for which {@code this.matches(c)} returns {@code true}".
53 public abstract class CharMatcher implements Predicate<Character> {
65 * Determines whether a character is whitespace according to the latest Unicode standard, as
81 * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
94 * Determines whether a character is ASCII, meaning that its code point is less than 128.
99 * Determines whether a character is a digit according to
117 * Determines whether a character is a digit according to {@link Character#isDigit(char) Java's
122 return Character.isDigit(c)
    [all...]

Completed in 1079 milliseconds

1 2 3 4 56 7 8 91011>>