OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ALPHABET
(Results
1 - 13
of
13
) sorted by null
/cts/tests/tests/widget/src/android/widget/cts/
AlphabetIndexerTest.java
30
private static final String
ALPHABET
= " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
44
AlphabetIndexer indexer = new AlphabetIndexer(c1, SORTED_COLUMN_INDEX,
ALPHABET
);
49
assertEquals(
ALPHABET
.length(), sections.length);
50
assertEquals(
ALPHABET
.charAt(0), ((String[]) sections)[0].charAt(0));
51
assertEquals(
ALPHABET
.charAt(1), ((String[]) sections)[1].charAt(0));
52
assertEquals(
ALPHABET
.charAt(
ALPHABET
.length() - 2),
53
((String[]) sections)[
ALPHABET
.length() - 2].charAt(0));
54
assertEquals(
ALPHABET
.charAt(
ALPHABET
.length() - 1)
[
all
...]
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketResponseHandler.java
82
private final static char[]
ALPHABET
= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".toCharArray();
105
ar[a++] =
ALPHABET
[(b0 >> 2) & mask];
106
ar[a++] =
ALPHABET
[((b0 << 4) | ((b1 & 0xFF) >> 4)) & mask];
107
ar[a++] =
ALPHABET
[((b1 << 2) | ((b2 & 0xFF) >> 6)) & mask];
108
ar[a++] =
ALPHABET
[b2 & mask];
/external/smack/src/org/jivesoftware/smack/util/
Base32Encoder.java
33
private static final String
ALPHABET
= "ABCDEFGHIJKLMNOPQRSTUVWXYZ2345678";
72
s[j] = (short)
ALPHABET
.indexOf(in[i * 8 + j]);
143
char c =
ALPHABET
.charAt(t[j]);
Base64.java
88
//private final static byte[]
ALPHABET
;
378
byte[]
ALPHABET
= getAlphabet( options );
383
// --------| || || || | Six bit groups to index
ALPHABET
398
destination[ destOffset ] =
ALPHABET
[ (inBuff >>> 18) ];
399
destination[ destOffset + 1 ] =
ALPHABET
[ (inBuff >>> 12) & 0x3f ];
400
destination[ destOffset + 2 ] =
ALPHABET
[ (inBuff >>> 6) & 0x3f ];
401
destination[ destOffset + 3 ] =
ALPHABET
[ (inBuff ) & 0x3f ];
405
destination[ destOffset ] =
ALPHABET
[ (inBuff >>> 18) ];
406
destination[ destOffset + 1 ] =
ALPHABET
[ (inBuff >>> 12) & 0x3f ];
407
destination[ destOffset + 2 ] =
ALPHABET
[ (inBuff >>> 6) & 0x3f ];
1235
private byte[]
alphabet
; \/\/ Local copies to avoid extra method calls
field in class:Base64.InputStream
1472
private byte[]
alphabet
; \/\/ Local copies to avoid extra method calls
field in class:Base64.OutputStream
[
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";
/external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp
26
static const char
ALPHABET
[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
36
static inline UBool isAlphabet(char c) {return isInList(c,
ALPHABET
);}
[
all
...]
/external/zxing/core/
core.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar
/prebuilts/tools/common/ant/
ant.jar
/external/jarjar/lib/
apache-ant-1.9.4.jar
/external/owasp/sanitizer/tools/findbugs/lib/
ant.jar
/prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar
/prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar
Completed in 1107 milliseconds