Searched defs:alphabet (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/re2/re2/testing/
H A Dexhaustive2_test.cc24 vector<string> alphabet = Explode("()*+?{}[]\\^$."); local
25 vector<string> escaped = alphabet;
29 2, alphabet, "", "");
H A Drandom_test.cc22 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, "");
21 RandomTest(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet, const string& wrapper) argument
H A Dstring_generator.cc16 StringGenerator::StringGenerator(int maxlen, const vector<string>& alphabet) argument
17 : maxlen_(maxlen), alphabet_(alphabet),
H A Dstring_generator_test.cc26 // * 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) { argument
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());
H A Dexhaustive_tester.h17 // 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,
26 ExhaustiveTester(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet, const string& wrapper, const string& topwrapper) argument
H A Dpossible_match_test.cc162 // then generate all strings of a given length over a given alphabet,
169 const vector<string>& alphabet,
173 : RegexpGenerator(maxatoms, maxops, alphabet, ops),
167 PossibleMatchTester(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet) argument
H A Dexhaustive_tester.cc7 // Each test picks an alphabet (e.g., "abc"), a maximum string length,
146 const vector<string>& alphabet,
159 ExhaustiveTester t(maxatoms, maxops, alphabet, ops,
172 void EgrepTest(int maxatoms, int maxops, const string& alphabet, argument
179 Split("", alphabet),
145 ExhaustiveTest(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet, const string& wrapper, const string& topwrapper) argument
/external/regex-re2/re2/testing/
H A Dexhaustive2_test.cc24 vector<string> alphabet = Explode("()*+?{}[]\\^$."); local
25 vector<string> escaped = alphabet;
29 2, alphabet, "", "");
H A Drandom_test.cc22 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, "");
21 RandomTest(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet, const string& wrapper) argument
H A Dstring_generator.cc16 StringGenerator::StringGenerator(int maxlen, const vector<string>& alphabet) argument
17 : maxlen_(maxlen), alphabet_(alphabet),
H A Dstring_generator_test.cc26 // * 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) { argument
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());
H A Dexhaustive_tester.h17 // 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,
26 ExhaustiveTester(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet, const string& wrapper, const string& topwrapper) argument
H A Dpossible_match_test.cc162 // then generate all strings of a given length over a given alphabet,
169 const vector<string>& alphabet,
173 : RegexpGenerator(maxatoms, maxops, alphabet, ops),
167 PossibleMatchTester(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet) argument
H A Dexhaustive_tester.cc7 // Each test picks an alphabet (e.g., "abc"), a maximum string length,
146 const vector<string>& alphabet,
159 ExhaustiveTester t(maxatoms, maxops, alphabet, ops,
172 void EgrepTest(int maxatoms, int maxops, const string& alphabet, argument
179 Split("", alphabet),
145 ExhaustiveTest(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet, const string& wrapper, const string& topwrapper) argument
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DBase64.java18 static final char[] alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".toCharArray(); field in class:Base64
41 cw.write(alphabet[x >> 18]);
42 cw.write(alphabet[(x >> 12) & 0x3f]);
43 cw.write(alphabet[(x >> 6) & 0x3f]);
44 cw.write(alphabet[x & 0x3f]);
52 cw.write(alphabet[x >> 18]);
53 cw.write(alphabet[(x >> 12) & 0x3f]);
60 cw.write(alphabet[x >> 18]);
61 cw.write(alphabet[(x >> 12) & 0x3f]);
62 cw.write(alphabet[(
[all...]
/external/smack/src/org/xbill/DNS/utils/
H A Dbase32.java26 private String alphabet; field in class:base32
31 * @param alphabet Which alphabet should be used
34 * default parameters (The standard base32 alphabet, no padding, uppercase)
37 base32(String alphabet, boolean padding, boolean lowercase) { argument
38 this.alphabet = alphabet;
125 char c = alphabet.charAt(t[j]);
182 s[j] = (short) alphabet.indexOf(in[i * 8 + j]);
/external/smack/src/org/jivesoftware/smack/util/
H A DBase64.java595 * @param options Specified options; alphabet type is pulled from this (standard, url-safe, ordered)
723 * @param options alphabet type is pulled from this (standard, url-safe, ordered)
1235 private byte[] alphabet; // Local copies to avoid extra method calls field in class:Base64.InputStream
1281 this.options = options; // Record for later, mostly to determine which alphabet to use
1282 this.alphabet = getAlphabet(options);
1472 private byte[] alphabet; // Local copies to avoid extra method calls field in class:Base64.OutputStream
1519 this.alphabet = getAlphabet(options);
/external/svox/pico/lib/
H A Dpicodata.c900 * @param alphabet
908 picoos_uchar * inputPhones, picoos_uchar * alphabet,
912 if (picoos_strcmp(alphabet, PICODATA_XSAMPA) == 0) {
941 } else if (picoos_strcmp(alphabet, PICODATA_SVOXPA) == 0) {
958 (picoos_char *) "alphabet not supported (%s)", alphabet);
905 picodata_mapPAStrToPAIds(picotrns_SimpleTransducer transducer, picoos_Common common, picokfst_FST xsampa_parser, picokfst_FST svoxpa_parser, picokfst_FST xsampa2svoxpa_mapper, picoos_uchar * inputPhones, picoos_uchar * alphabet, picoos_uint8 * outputPhoneIds, picoos_int32 maxOutputPhoneIds) argument
H A Dpicotok.c153 #define KWAlphabet (picoos_uchar *)"alphabet"
367 static void tok_getParamPhonesStr (MarkupParams params, picoos_uchar paramId[], picoos_uchar alphabet[], picoos_uchar phones[], picoos_int32 phoneslen, picoos_bool * paramFound) argument
378 if (tok_strEqual(alphabet, PICODATA_XSAMPA) || tok_strEqual(alphabet, (picoos_uchar*)"")) {
H A Dpicopr.c1330 picoos_uchar alphabet[32]; local
1389 picoos_strlcpy(alphabet, PICODATA_SVOXPA, sizeof(alphabet));
1392 picoos_strlcpy(alphabet, PICODATA_SAMPA, sizeof(alphabet));
1400 if (picodata_mapPAStrToPAIds(pr->transducer, this->common, pr->xsampa_parser, pr->svoxpa_parser, pr->xsampa2svoxpa_mapper, lf->data, alphabet, pr->tmpStr1, sizeof(pr->tmpStr1)-1) == PICO_OK) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListMarker.cpp143 static String toAlphabetic(int number, const CharacterType* alphabet, unsigned alphabetSize) argument
145 return toAlphabeticOrNumeric(number, alphabet, alphabetSize, AlphabeticSequence);
155 static inline String toAlphabetic(int number, const CharacterType(&alphabet)[size])
157 return toAlphabetic(number, alphabet, size);
161 static inline String toNumeric(int number, const CharacterType(&alphabet)[size])
163 return toNumeric(number, alphabet, size);
167 static inline String toSymbolic(int number, const CharacterType(&alphabet)[size])
169 return toSymbolic(number, alphabet, size);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 974 milliseconds