/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
KeyboardStateSingleTouchTests.java | 23 // Shift key in alphabet. 25 // Press/release shift key, enter into alphabet shifted. 28 // Press/release shift key, back to alphabet. 31 // Press/release shift key, enter into alphabet shifted. 33 // Press/release letter key, switch back to alphabet. 54 // Switching between alphabet and symbols. 58 // Press/release "ABC" key, back to alphabet. 65 // Press/release "ABC" key, back to alphabet. 71 // Switching between alphabet shifted and symbols. 73 // Press/release shift key, enter into alphabet shifted [all...] |
KeyboardStateMultiTouchTests.java | 23 // Chording input in alphabet. 29 // Release shift key, switch back to alphabet. 36 // Release "ABC" key, switch back to alphabet. 42 // Press shift key, enter alphabet shifted. 49 // Release shift key, switch back to alphabet shifted. 56 // Release "123?" key, switch back to alphabet unshifted. 62 // Long press shift key, enter alphabet shift locked. 70 // Release shift key, switch back to alphabet shift locked. 77 // Release "123?" key, switch back to alphabet shift locked. 93 // Press "ABC" key and hold, enter into choring alphabet state [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
AlphabetIndexerTest.java | 38 private static final String ALPHABET = " ABCDEFGHIJKLMNOPQRSTUVWXYZ"; 53 AlphabetIndexer indexer = new AlphabetIndexer(c1, SORTED_COLUMN_INDEX, ALPHABET); 58 assertEquals(ALPHABET.length(), sections.length); 59 assertEquals(ALPHABET.charAt(0), ((String[]) sections)[0].charAt(0)); 60 assertEquals(ALPHABET.charAt(1), ((String[]) sections)[1].charAt(0)); 61 assertEquals(ALPHABET.charAt(ALPHABET.length() - 2), 62 ((String[]) sections)[ALPHABET.length() - 2].charAt(0)); 63 assertEquals(ALPHABET.charAt(ALPHABET.length() - 1) [all...] |
/external/curl/tests/data/ |
test1903 | 51 550 alphabet.txt 52 10 alphabet.txt 53 10 alphabet.txt 54 10 alphabet.txt 55 10 alphabet.txt
|
/packages/apps/Email/src/com/beetstra/jutf7/ |
Base64Util.java | 57 private final char[] alphabet;
field in class:Base64Util 61 * Initializes the class with the specified encoding/decoding alphabet.
63 * @param alphabet
64 * @throws IllegalArgumentException if alphabet is not 64 characters long or
67 Base64Util(final String alphabet) {
68 this.alphabet = alphabet.toCharArray();
69 if (alphabet.length() != ALPHABET_LENGTH)
70 throw new IllegalArgumentException("alphabet has incorrect length (should be 64, not "
71 + alphabet.length() + ")"); [all...] |
/external/regex-re2/re2/testing/ |
string_generator_test.cc | 26 // * strings of the same length are sorted in alphabet order. 31 // Assumes that the alphabet is sorted, so that the generated 33 static void RunTest(int len, string alphabet, bool donull) { 34 StringGenerator g(len, Explode(alphabet)); 52 // Check that all characters in s appear in alphabet. 56 EXPECT_TRUE(utfrune(alphabet.c_str(), r) != NULL); 73 int alpha = utflen(alphabet.c_str());
|
string_generator.h | 22 StringGenerator(int maxlen, const vector<string>& alphabet); 42 vector<string> alphabet_; // Alphabet, one string per letter. 48 vector<int> digits_; // Alphabet indices for next string.
|
exhaustive_tester.h | 17 // then generate all strings of a given length over a given alphabet, 28 const vector<string>& alphabet, 34 : RegexpGenerator(maxatoms, maxops, alphabet, ops), 71 const vector<string>& alphabet, 79 void EgrepTest(int maxatoms, int maxops, const string& alphabet,
|
exhaustive2_test.cc | 24 vector<string> alphabet = Explode("()*+?{}[]\\^$."); local 25 vector<string> escaped = alphabet; 29 2, alphabet, "", "");
|
random_test.cc | 22 const vector<string>& alphabet, 34 ExhaustiveTester t(maxatoms, maxops, alphabet, ops, 90 vector<string> alphabet = Explode("abc123\001\002\003\t\r\n\v\f\a"); local 91 RandomTest(10, 10, atoms, ops, 20, alphabet, "");
|
/external/guava/guava/src/com/google/common/io/ |
BaseEncoding.java | 89 * <th>Alphabet 110 * <td>"Numerical" base 32; extended from the traditional hex alphabet. Defaults to upper case. 307 * @throws IllegalArgumentException if this padding character is already used in the alphabet or a 318 * @throws IllegalArgumentException if any alphabet or padding characters appear in the separator 329 * @throws IllegalStateException if the alphabet used by this encoding contains mixed upper- and 339 * @throws IllegalStateException if the alphabet used by this encoding contains mixed upper- and 371 * with URL and Filename Safe Alphabet, also sometimes referred to as the "web safe Base64." 372 * (This is the same as the base 64 encoding with URL and filename safe alphabet from <a 412 * with Extended Hex Alphabet. There is no corresponding encoding in RFC 3548. 446 private static final class Alphabet extends CharMatcher [all...] |
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/ |
BaseEncoding.java | 81 * <th>Alphabet 102 * <td>"Numerical" base 32; extended from the traditional hex alphabet. Defaults to upper case. 250 * @throws IllegalArgumentException if this padding character is already used in the alphabet or a 261 * @throws IllegalArgumentException if any alphabet or padding characters appear in the separator 272 * @throws IllegalStateException if the alphabet used by this encoding contains mixed upper- and 282 * @throws IllegalStateException if the alphabet used by this encoding contains mixed upper- and 314 * with URL and Filename Safe Alphabet, also sometimes referred to as the "web safe Base64." 315 * (This is the same as the base 64 encoding with URL and filename safe alphabet from <a 355 * with Extended Hex Alphabet. There is no corresponding encoding in RFC 3548. 389 private static final class Alphabet extends CharMatcher 508 private final Alphabet alphabet; field in class:BaseEncoding.StandardBaseEncoding [all...] |
/frameworks/base/core/java/android/widget/ |
AlphabetIndexer.java | 25 * If the items in the adapter are sorted by simple alphabet-based sorting, then 32 * index of a given section (alphabet). 52 * Cached length of the alphabet array. 68 * The section array converted from the alphabet string. 77 * @param alphabet string containing the alphabet, with space as the first character. 80 * characters in the alphabet will show up as preview letters. 82 public AlphabetIndexer(Cursor cursor, int sortedColumnIndex, CharSequence alphabet) { 85 mAlphabet = alphabet; 86 mAlphabetLength = alphabet.length() [all...] |
/external/ltp/testcases/network/nfsv4/acl/ |
setacl_stress.py | 13 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-()' variable 14 t_alphabet=len(alphabet)
|
test_long_acl.py | 13 alphabet='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_-() ~' variable 14 t_alphabet=len(alphabet)
|
/packages/apps/Music/src/com/android/music/ |
MusicAlphabetIndexer.java | 29 public MusicAlphabetIndexer(Cursor cursor, int sortedColumnIndex, CharSequence alphabet) { 30 super(cursor, sortedColumnIndex, alphabet);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
base64.py | 48 alternative alphabet for the '+' and '/' characters. This allows an
65 alternative alphabet used instead of the '+' and '/' characters.
68 incorrectly padded or if there are non-alphabet characters present in the
81 """Encode a string using the standard Base64 alphabet.
88 """Decode a string encoded with the standard Base64 alphabet.
91 is raised if the string is incorrectly padded or if there are non-alphabet
97 """Encode a string using a url-safe Base64 alphabet.
99 s is the string to encode. The encoded string is returned. The alphabet
105 """Decode a string encoded with the standard Base64 alphabet.
108 is raised if the string is incorrectly padded or if there are non-alphabet
[all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
base64.py | 48 alternative alphabet for the '+' and '/' characters. This allows an 65 alternative alphabet used instead of the '+' and '/' characters. 68 incorrectly padded or if there are non-alphabet characters present in the 81 """Encode a string using the standard Base64 alphabet. 88 """Decode a string encoded with the standard Base64 alphabet. 91 is raised if the string is incorrectly padded or if there are non-alphabet 97 """Encode a string using a url-safe Base64 alphabet. 99 s is the string to encode. The encoded string is returned. The alphabet 105 """Decode a string encoded with the standard Base64 alphabet. 108 is raised if the string is incorrectly padded or if there are non-alphabet [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
base64.py | 48 alternative alphabet for the '+' and '/' characters. This allows an 65 alternative alphabet used instead of the '+' and '/' characters. 68 incorrectly padded or if there are non-alphabet characters present in the 81 """Encode a string using the standard Base64 alphabet. 88 """Decode a string encoded with the standard Base64 alphabet. 91 is raised if the string is incorrectly padded or if there are non-alphabet 97 """Encode a string using a url-safe Base64 alphabet. 99 s is the string to encode. The encoded string is returned. The alphabet 105 """Decode a string encoded with the standard Base64 alphabet. 108 is raised if the string is incorrectly padded or if there are non-alphabet [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
base64.py | 48 alternative alphabet for the '+' and '/' characters. This allows an 65 alternative alphabet used instead of the '+' and '/' characters. 68 incorrectly padded or if there are non-alphabet characters present in the 81 """Encode a string using the standard Base64 alphabet. 88 """Decode a string encoded with the standard Base64 alphabet. 91 is raised if the string is incorrectly padded or if there are non-alphabet 97 """Encode a string using a url-safe Base64 alphabet. 99 s is the string to encode. The encoded string is returned. The alphabet 105 """Decode a string encoded with the standard Base64 alphabet. 108 is raised if the string is incorrectly padded or if there are non-alphabet [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
base64.py | 48 alternative alphabet for the '+' and '/' characters. This allows an 65 alternative alphabet used instead of the '+' and '/' characters. 68 incorrectly padded or if there are non-alphabet characters present in the 81 """Encode a string using the standard Base64 alphabet. 88 """Decode a string encoded with the standard Base64 alphabet. 91 is raised if the string is incorrectly padded or if there are non-alphabet 97 """Encode a string using a url-safe Base64 alphabet. 99 s is the string to encode. The encoded string is returned. The alphabet 105 """Decode a string encoded with the standard Base64 alphabet. 108 is raised if the string is incorrectly padded or if there are non-alphabet [all...] |
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
symshift.pl | 67 "alphabet=s" => \$ALPHABET, # string 84 [-pb_strengths <pbstab>] [-alphabet <alphaout>] 103 -alphabet <outfile> writes the combined set of symbols to <outfile>. 243 #create corresponding alphabet if demanded 244 if ($ALPHABET) { 245 open OUT, ">$ALPHABET" or die "cant open $ALPHABET for writing";
|
/packages/inputmethods/LatinIME/java/res/xml/ |
keyboard_layout_set_bengali_akkhor.xml | 25 latin:elementName="alphabet" 31 <!-- On these shifted alphabet layouts the proximity characters correction should be disabled
|
keyboard_layout_set_georgian.xml | 26 latin:elementName="alphabet" 33 <!-- On these shifted alphabet layouts the proximity characters correction should be disabled
|
keyboard_layout_set_hindi.xml | 26 latin:elementName="alphabet" 33 <!-- On these shifted alphabet layouts the proximity characters correction should be disabled
|