HomeSort by relevance Sort by last modified time
    Searched defs:ascii (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/vboot_reference/firmware/lib/include/
bmpblk_font.h 51 uint32_t ascii; /* What to show. Could even be UTF? */ member in struct:FontArrayEntryHeader
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 4 import curses.ascii namespace
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
80 if curses.ascii.isprint(oldch):
88 if curses.ascii.isprint(ch):
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE)
    [all...]
ascii.py 1 """Constants and membership tests for ASCII characters"""
71 def ascii(c): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 237 from curses import ascii namespace
244 if ascii.unctrl(ch) != expected:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 4 import curses.ascii namespace
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
80 if curses.ascii.isprint(oldch):
88 if curses.ascii.isprint(ch):
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE)
    [all...]
ascii.py 1 """Constants and membership tests for ASCII characters"""
71 def ascii(c): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 237 from curses import ascii namespace
244 if ascii.unctrl(ch) != expected:
  /external/v8/test/mjsunit/
string-slices.js 68 // First ASCII.
69 var x = "ASCII";
85 x = "UC16\u2028"; // Non-ascii char forces two-byte string.
181 var ascii = 'abcdefghijklmnop'; variable
183 assertEquals("klmno", ascii.substring(10,15) + ascii.substring(16));
185 assertEquals("klp", ascii.substring(10,12) + ascii.substring(15,16));
187 assertEquals("", ascii.substring(16) + utf.substring(16));
189 ascii.substring(1,6) + utf.substring(3,9))
    [all...]
string-add.js 177 // Generate ascii and non ascii strings from length 0 to 20.
178 var ascii = 'aaaaaaaaaaaaaaaaaaaa'; variable
180 assertEquals(20, ascii.length);
185 a[i] = ascii.substring(0, i);
189 // Add ascii and non-ascii strings generating strings with length from 0 to 20.
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 50 private static byte[] ascii = new byte[255]; field in class:Base64
56 ascii[idx] = INVALID;
61 ascii[base64[idx]] = (byte) idx;
64 ascii[0x09] = WHITESPACE;
65 ascii[0x0A] = WHITESPACE;
66 ascii[0x0D] = WHITESPACE;
67 ascii[0x20] = WHITESPACE;
70 ascii[0x3d] = EQUAL;
114 // Do 3-byte to 4-byte conversion + 0-63 to ascii printable conversion
188 // Do ascii printable to 0-63 conversion
    [all...]
  /libcore/luni/src/test/java/libcore/icu/
TransliteratorTest.java 67 // Transliterate Greek to Latin, then to plain ASCII.
70 t = new Transliterator("Latin-Ascii");
71 String ascii = t.transliterate(latin); local
73 assertEquals("Kalemera kosme!", ascii);
95 t = new Transliterator("Han-Latin/Names; Latin-Ascii; Any-Upper");
  /external/guava/guava-tests/test/com/google/common/hash/
MessageDigestHashFunctionTest.java 55 assertMessageDigestHashing(HashTestUtils.ascii(stringToTest), algorithmToTest);
HashTestUtils.java 44 * Converts a string, which should contain only ascii-representable characters, to a byte[].
46 static byte[] ascii(String string) { method in class:HashTestUtils
  /external/vboot_reference/utility/
bmpblk_font.c 170 uint32_t ascii; local
175 if (!s || 1 != sscanf(s, "_%x.bmp", &ascii)) { // This is not foolproof.
195 entry.ascii = ascii;
201 printf("%s => 0x%x %dx%d\n", imgfile, entry.ascii,
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 127 char[] ascii = new char[4]; local
129 ascii[0] = (char) ((type >> 24) & 0xff);
130 ascii[1] = (char) ((type >> 16) & 0xff);
131 ascii[2] = (char) ((type >> 8) & 0xff);
132 ascii[3] = (char) (type & 0xff);
134 return new String(ascii);
  /system/core/debuggerd/
utility.cpp 176 // addr contents ascii
187 std::string ascii; local
193 // Fill out the ascii string from the data.
197 ascii += *ptr;
199 ascii += '.';
204 ascii += std::string(sizeof(uintptr_t), '.');
207 _LOG(log, logtype::MEMORY, "%s %s\n", logline.c_str(), ascii.c_str());
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
TestData.java 255 public String ascii; field in class:TestData.ErrorCase
263 ascii = asciiIn;
335 /* wrong ACE-prefix followed by valid ACE-encoded ASCII */
458 "Case folding ASCII U+0043 U+0041 U+0046 U+0045",
471 "Non-ASCII multibyte space character U+1680",
477 "Non-ASCII 8bit control character U+0085",
483 "Non-ASCII multibyte control character U+180E",
489 "Non-ASCII control character U+1D175",
  /external/toybox/toys/posix/
od.c 41 static char *ascii = "nulsohstxetxeotenqackbel bs ht nl vt ff cr so si" variable
54 // Handle ascii
61 if (c<=32) sprintf(buf, "%.3s", ascii+(3*c));
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 68 private boolean ascii = true; field in class:AbstractSessionInputBuffer
89 this.ascii = this.charset.equalsIgnoreCase(HTTP.US_ASCII)
90 || this.charset.equalsIgnoreCase(HTTP.ASCII);
230 if (this.ascii) {
233 // This is VERY memory inefficient, BUT since non-ASCII charsets are
255 if (this.ascii) {
258 // This is VERY memory inefficient, BUT since non-ASCII charsets are
AbstractSessionOutputBuffer.java 67 private boolean ascii = true; field in class:AbstractSessionOutputBuffer
84 this.ascii = this.charset.equalsIgnoreCase(HTTP.US_ASCII)
85 || this.charset.equalsIgnoreCase(HTTP.ASCII);
156 if (this.ascii) {
172 // This is VERY memory inefficient, BUT since non-ASCII charsets are
  /external/v8/test/webkit/fast/js/kde/
md5-1.js 390 var ascii="01234567890123456789012345678901" + variable
401        update(ascii.lastIndexOf(l));
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetEncoderTest.java 32 Charset ascii = Charset.forName("US-ASCII"); local
33 CharsetEncoder e = ascii.newEncoder();
36 e.replaceWith("=".getBytes("US-ASCII"));
38 String output = ascii.decode(e.encode(CharBuffer.wrap(input))).toString();
52 assertReplacementBytesForEncoder("US-ASCII", new byte[] { (byte) '?' });
  /external/icu/icu4c/source/test/cintltst/
bocu1tst.c 9 * encoding: US-ASCII
57 * C0 control codes and space are encoded with their US-ASCII bytes.
61 /* initial value for "prev": middle of the ASCII range */
133 * ASCII-oriented software.
933 static const UChar ascii[]={ 0x61, 0x62, 0x20, 0x63, 0x61 }; variable
953 { ascii, UPRV_LENGTHOF(ascii) },
  /external/icu/icu4c/source/test/intltest/
testidna.cpp 9 * encoding: US-ASCII
240 const char *ascii; member in struct:ErrorCases
314 /* wrong ACE-prefix followed by valid ACE-encoded ASCII */
    [all...]
  /external/libnl/lib/
msg.c 867 char ascii[21] = {0}; local
877 ascii[a++] = isprint(v) ? v : '.';
880 fprintf(ofd, "%s\n", ascii);
886 memset(ascii, 0, sizeof(ascii));
894 fprintf(ofd, "%s\n", ascii);

Completed in 3557 milliseconds

1 2 3 4 5