HomeSort by relevance Sort by last modified time
    Searched refs:CHARACTERS (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/base/core/java/android/text/method/
DateKeyListener.java 39 return CHARACTERS;
51 * The characters that are used.
56 public static final char[] CHARACTERS = new char[] {
DateTimeKeyListener.java 39 return CHARACTERS;
51 * The characters that are used.
56 public static final char[] CHARACTERS = new char[] {
TimeKeyListener.java 39 return CHARACTERS;
51 * The characters that are used.
56 public static final char[] CHARACTERS = new char[] {
DialerKeyListener.java 36 return CHARACTERS;
106 * The characters that are used.
111 public static final char[] CHARACTERS = new char[] {
DigitsKeyListener.java 47 * The characters that are used.
52 private static final char[][] CHARACTERS = {
85 mAccepted = CHARACTERS[kind];
111 * Returns a DigitsKeyListener that accepts only the characters
112 * that appear in the specified String. Note that not all characters
157 * Find out if the existing text has a sign or decimal point characters.
TextKeyListener.java 118 if (cap == Capitalize.CHARACTERS) {
208 NONE, SENTENCES, WORDS, CHARACTERS,
  /packages/apps/Stk/src/com/android/stk/
StkDigitsKeyListener.java 29 return CHARACTERS;
45 * The characters that are used.
50 public static final char[] CHARACTERS = new char[] {
  /cts/tests/tests/text/src/android/text/method/cts/
DateTimeKeyListenerTest.java 54 TextMethodUtils.assertEquals(DateTimeKeyListener.CHARACTERS,
94 if ('a' == kcm.getMatch(KeyEvent.KEYCODE_A, DateTimeKeyListener.CHARACTERS)) {
101 if ('p' == kcm.getMatch(KeyEvent.KEYCODE_P, DateTimeKeyListener.CHARACTERS)) {
108 if ('m' == kcm.getMatch(KeyEvent.KEYCODE_M, DateTimeKeyListener.CHARACTERS)) {
115 int keyCode = TextMethodUtils.getUnacceptedKeyCode(DateTimeKeyListener.CHARACTERS);
TimeKeyListenerTest.java 50 TextMethodUtils.assertEquals(TimeKeyListener.CHARACTERS,
90 if ('a' == kcm.getMatch(KeyEvent.KEYCODE_A, TimeKeyListener.CHARACTERS)) {
97 if ('p' == kcm.getMatch(KeyEvent.KEYCODE_P, TimeKeyListener.CHARACTERS)) {
104 if ('m' == kcm.getMatch(KeyEvent.KEYCODE_M, TimeKeyListener.CHARACTERS)) {
111 int keyCode = TextMethodUtils.getUnacceptedKeyCode(TimeKeyListener.CHARACTERS);
TextKeyListenerTest.java 56 // Index of the characters(start with 0):
61 assertTrue(TextKeyListener.shouldCap(Capitalize.CHARACTERS, str, 0));
66 assertTrue(TextKeyListener.shouldCap(Capitalize.CHARACTERS, str, 6));
71 assertTrue(TextKeyListener.shouldCap(Capitalize.CHARACTERS, str, 13));
76 assertTrue(TextKeyListener.shouldCap(Capitalize.CHARACTERS, str, 14));
87 = new MockTextKeyListener(Capitalize.CHARACTERS, true);
108 TextKeyListener listener4 = TextKeyListener.getInstance(true, Capitalize.CHARACTERS);
163 TextKeyListener textKeyListener = new TextKeyListener(Capitalize.CHARACTERS, true);
248 listener = TextKeyListener.getInstance(false, Capitalize.CHARACTERS);
DateKeyListenerTest.java 53 TextMethodUtils.assertEquals(DateKeyListener.CHARACTERS,
88 int keyCode = TextMethodUtils.getUnacceptedKeyCode(DateKeyListener.CHARACTERS);
MultiTapKeyListenerTest.java 48 = new MockMultiTapKeyListener(Capitalize.CHARACTERS, true);
65 = MultiTapKeyListener.getInstance(true, Capitalize.CHARACTERS);
100 Capitalize.CHARACTERS);
228 new MultiTapKeyListener(Capitalize.CHARACTERS, true);
238 listener = MultiTapKeyListener.getInstance(true, Capitalize.CHARACTERS);
DialerKeyListenerTest.java 68 TextMethodUtils.assertEquals(DialerKeyListener.CHARACTERS,
QwertyKeyListenerTest.java 60 Capitalize.CHARACTERS);
207 listener = QwertyKeyListener.getInstance(false, Capitalize.CHARACTERS);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/personalization/
UserHistoryDictionaryTestsHelper.java 45 * Characters for generating random words.
47 private static final String[] CHARACTERS = {
135 final int lengthOfChars = CHARACTERS.length;
139 builder.append(CHARACTERS[(int)(lvalue % lengthOfChars)]);
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
pulldom.py 4 COMMENT, IGNORABLE_WHITESPACE, CHARACTERS
58 elif type in (IGNORABLE_WHITESPACE, CHARACTERS):
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
FreeTypeAtlasTest.java 81 // Our demo doesn't need any fancy characters.
83 // Also note that this string must be contained of unique characters; no duplicates!
84 public static final String CHARACTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "abcdefghijklmnopqrstuvwxyz\n1234567890"
175 fontParameter.characters = CHARACTERS;
187 return fontCount * CHARACTERS.length();
FreeTypePackTest.java 78 // Our demo doesn't need any fancy characters.
80 // Also note that this string must be contained of unique characters; no duplicates!
81 public static final String CHARACTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "abcdefghijklmnopqrstuvwxyz\n1234567890"
177 fontParameter.characters = CHARACTERS;
218 return fontCount * CHARACTERS.length();
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_treewalkers.py 21 from xml.dom.pulldom import START_ELEMENT, END_ELEMENT, COMMENT, CHARACTERS
35 yield CHARACTERS, node
96 if type in ("Characters", "SpaceCharacters"):
159 {'data': 'a', 'type': 'Characters'},
161 {'data': 'b', 'type': 'Characters'},
163 {'data': 'c', 'type': 'Characters'},
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
TextViewBindingAdapterTest.java 164 mBindingObject.setCapitalize(TextKeyListener.Capitalize.CHARACTERS);
201 return TextKeyListener.Capitalize.CHARACTERS;
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
pulldom.py 17 CHARACTERS = "CHARACTERS"
160 def characters(self, chars): member in class:PullDOM
162 self.lastEvent[1] = [(CHARACTERS, node), None]
321 def characters(self, chars): member in class:SAX2DOM
322 PullDOM.characters(self, chars)
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
pulldom.py 17 CHARACTERS = "CHARACTERS"
160 def characters(self, chars): member in class:PullDOM
162 self.lastEvent[1] = [(CHARACTERS, node), None]
321 def characters(self, chars): member in class:SAX2DOM
322 PullDOM.characters(self, chars)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 17 CHARACTERS = "CHARACTERS"
160 def characters(self, chars): member in class:PullDOM
162 self.lastEvent[1] = [(CHARACTERS, node), None]
321 def characters(self, chars): member in class:SAX2DOM
322 PullDOM.characters(self, chars)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 17 CHARACTERS = "CHARACTERS"
160 def characters(self, chars): member in class:PullDOM
162 self.lastEvent[1] = [(CHARACTERS, node), None]
321 def characters(self, chars): member in class:SAX2DOM
322 PullDOM.characters(self, chars)
  /frameworks/base/core/java/android/widget/
DialerFilter.java 172 char c = event.getMatch(DialerKeyListener.CHARACTERS);

Completed in 2012 milliseconds

1 2 3