HomeSort by relevance Sort by last modified time
    Searched full:ascii (Results 176 - 200 of 5844) sorted by null

1 2 3 4 5 6 78 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
EfiPrintLib.h 39 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
46 Format - Ascii format string see file header for more details.
151 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
156 Format - Ascii format string see file header for more details.
176 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
181 Format - Ascii format string see file header for more details.
280 IN CHAR16 Ascii
290 Ascii - A char
304 OUT CHAR8 *Ascii OPTIONAL
318 Ascii - Optional pointer to return Ascii equivalent of Graphic.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
StdErr.c 18 Basic Ascii AvSPrintf() function named VSPrint(). VSPrint() enables very
45 'a' - argument is an ascii string
49 'c' - argument is an ascii character
72 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
79 Format - Ascii format string see file header for more details.
149 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
154 Format - Ascii format string see file header for more details.
211 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
216 Format - Ascii format string see file header for more details.
253 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
StdErr.c 18 Basic Ascii AvSPrintf() function named VSPrint(). VSPrint() enables very
45 'a' - argument is an ascii string
49 'c' - argument is an ascii character
72 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
79 Format - Ascii format string see file header for more details.
149 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
154 Format - Ascii format string see file header for more details.
211 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
216 Format - Ascii format string see file header for more details.
253 Print function for a maximum of EFI_DRIVER_LIB_MAX_PRINT_BUFFER ascii
    [all...]
  /external/apache-http/src/org/apache/http/
NameValuePair.java 46 * The US-ASCII coded character set is defined by ANSI X3.4-1986.
50 * CHAR = <any US-ASCII character (octets 0 - 127)>
51 * UPALPHA = <any US-ASCII uppercase letter "A".."Z">
52 * LOALPHA = <any US-ASCII lowercase letter "a".."z">
54 * DIGIT = <any US-ASCII digit "0".."9">
55 * CTL = <any US-ASCII control character
57 * CR = <US-ASCII CR, carriage return (13)>
58 * LF = <US-ASCII LF, linefeed (10)>
59 * SP = <US-ASCII SP, space (32)>
60 * HT = <US-ASCII HT, horizontal-tab (9)
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/syntax/
doc.go 24 [[:alpha:]] ASCII character class
25 [[:^alpha:]] negated ASCII character class
71 \b at ASCII word boundary (\w on one side and \W, \A, or \z on the other)
72 \B not at ASCII word boundary
92 [:foo:] ASCII character class foo
101 [[:name:]] named ASCII class inside character class (== [:name:])
102 [^[:name:]] named ASCII class inside negated character class (== [:^name:])
106 Perl character classes (all ASCII-only):
114 ASCII character classes:
117 [[:ascii:]] ASCII (== [\x00-\x7F]
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
doc.go 24 [[:alpha:]] ASCII character class
25 [[:^alpha:]] negated ASCII character class
71 \b at ASCII word boundary (\w on one side and \W, \A, or \z on the other)
72 \B not at ASCII word boundary
92 [:foo:] ASCII character class foo
101 [[:name:]] named ASCII class inside character class (== [:name:])
102 [^[:name:]] named ASCII class inside negated character class (== [:^name:])
106 Perl character classes (all ASCII-only):
114 ASCII character classes:
117 [[:ascii:]] ASCII (== [\x00-\x7F]
    [all...]
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
UnitTestZipEntry.java 42 * Optional comment, as an ASCII string.
55 * @param content the binary content of the entry, as an ASCII string
56 * @param comment optional comment, as an ASCII string
66 * @param content the binary content of the entry, as an ASCII string
67 * @param comment optional comment, as an ASCII string
86 return content.getBytes("US-ASCII");
88 throw new RuntimeException("System doesn't support US-ASCII"); // Not likely
  /external/curl/src/
tool_convert.c 47 * from the host encoding to ASCII on non-ASCII platforms.
77 * for performing ASCII conversions on non-ASCII platforms.
124 /* data, treat as ASCII */
126 /* printable ASCII hex value: convert to host encoding */
130 /* non-printable ASCII, use a replacement character */
  /external/icu/icu4c/source/common/
uinvchar.h 11 * encoding: US-ASCII
88 * Compare two EBCDIC invariant-character strings in ASCII order.
96 * Compare two invariant-character strings in ASCII order.
108 * Converts an EBCDIC invariant character to lowercase ASCII.
116 * Converts an invariant character to lowercase ASCII.
128 * Copy EBCDIC to ASCII
137 * Copy ASCII to EBCDIC
  /libcore/support/src/test/java/tests/http/
MockResponse.java 24 import static tests.http.MockWebServer.ASCII;
106 return setBody(body.getBytes(ASCII));
120 bytesOut.write(Integer.toHexString(chunkSize).getBytes(ASCII));
121 bytesOut.write("\r\n".getBytes(ASCII));
123 bytesOut.write("\r\n".getBytes(ASCII));
126 bytesOut.write("0\r\n\r\n".getBytes(ASCII)); // last chunk + empty trailer + crlf
132 return setChunkedBody(body.getBytes(ASCII), maxChunkSize);
  /prebuilts/go/darwin-x86/src/encoding/json/
fold.go 13 caseMask = ^byte(0x20) // Mask to ignore case in ASCII.
21 // 1) bytes.EqualFold, if the key s contains any non-ASCII UTF-8
22 // 2) equalFoldRight, if s contains special folding ASCII ('k', 'K', 's', 'S')
58 // known to be all ASCII (including punctuation), but contains an 's',
81 // sb is ASCII and t is not. t must be either kelvin
106 // s is all ASCII (but may contain non-letters) and contains no
130 // use when s is all ASCII letters (no underscores, etc) and also
  /prebuilts/go/linux-x86/src/encoding/json/
fold.go 13 caseMask = ^byte(0x20) // Mask to ignore case in ASCII.
21 // 1) bytes.EqualFold, if the key s contains any non-ASCII UTF-8
22 // 2) equalFoldRight, if s contains special folding ASCII ('k', 'K', 's', 'S')
58 // known to be all ASCII (including punctuation), but contains an 's',
81 // sb is ASCII and t is not. t must be either kelvin
106 // s is all ASCII (but may contain non-letters) and contains no
130 // use when s is all ASCII letters (no underscores, etc) and also
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
PrintLib.h 3 Unicode and ASCII strings are supported.
78 - The argument is a Unicode character. ASCII characters can be printed
99 - The argument is a pointer to an ASCII string.
337 ASCII format string and a VA_LIST argument list
352 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator, then
361 @param FormatString A null-terminated ASCII format string.
379 ASCII format string and a BASE_LIST argument list
394 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator, then
403 @param FormatString A null-terminated ASCII format string.
421 ASCII format string and variable argument list.
    [all...]
  /external/valgrind/exp-bbv/tests/ppc32-linux/
ll.S 320 # r20 is the 4-char ascii string to look for
452 # Num to Ascii
474 addi 22,22,0x30 # convert remainder to ascii
508 ver_string: .ascii " Version \0"
509 compiled_string: .ascii ", Compiled \0"
510 megahertz: .ascii "MHz PPC \0"
513 linefeed: .ascii "\n\0"
514 escape: .ascii "\033[\0"
515 c: .ascii "C\0"
516 ram_comma: .ascii "M RAM, \0
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bool.py 227 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("z", 'ascii')), True)
228 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("x", 'ascii')), False)
229 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
230 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
231 self.assertIs(unicode("xyz", 'ascii').isalpha(), True)
232 self.assertIs(unicode("@#$%", 'ascii').isalpha(), False)
233 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
234 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bool.py 226 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("z", 'ascii')), True)
227 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("x", 'ascii')), False)
228 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
229 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
230 self.assertIs(unicode("xyz", 'ascii').isalpha(), True)
231 self.assertIs(unicode("@#$%", 'ascii').isalpha(), False)
232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bool.py 226 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("z", 'ascii')), True)
227 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("x", 'ascii')), False)
228 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
229 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
230 self.assertIs(unicode("xyz", 'ascii').isalpha(), True)
231 self.assertIs(unicode("@#$%", 'ascii').isalpha(), False)
232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bool.py 226 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("z", 'ascii')), True)
227 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("x", 'ascii')), False)
228 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
229 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
230 self.assertIs(unicode("xyz", 'ascii').isalpha(), True)
231 self.assertIs(unicode("@#$%", 'ascii').isalpha(), False)
232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bool.py 226 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("z", 'ascii')), True)
227 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("x", 'ascii')), False)
228 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
229 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
230 self.assertIs(unicode("xyz", 'ascii').isalpha(), True)
231 self.assertIs(unicode("@#$%", 'ascii').isalpha(), False)
232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False
    [all...]

Completed in 955 milliseconds

1 2 3 4 5 6 78 91011>>