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

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/StdLib/PosixLib/GetPass/
GetPass.c 23 BOOLEAN Ascii;
26 Ascii = FALSE;
30 ReturnString = ShellFileHandleReturnLine (gEfiShellParametersProtocol->StdIn, &Ascii);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Ascii.java 23 public final class Ascii {
27 return s.getBytes("us-ascii");
39 return new String(b, "us-ascii");
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
BoxDraw.c 33 CHAR8 Ascii;
40 // ASCII. The ASCII mapping we just made up.
110 OUT CHAR8 *Ascii OPTIONAL
124 Asci - Optional pointer to return Ascii equivalent of Graphic.
148 if (Ascii != NULL) {
149 *Ascii = Table->Ascii;
160 IN CHAR16 Ascii
166 Is it valid ascii char?
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
BoxDraw.c 33 CHAR8 Ascii;
40 // ASCII. The ASCII mapping we just made up.
110 OUT CHAR8 *Ascii OPTIONAL
124 Asci - Optional pointer to return Ascii equivalent of Graphic.
148 if (Ascii != NULL) {
149 *Ascii = Table->Ascii;
160 IN CHAR16 Ascii
166 Is it valid ascii char?
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
boxdraw.c 23 CHAR8 Ascii;
30 // ASCII. The ASCII mapping we just made up.
106 OUT CHAR8 *Ascii OPTIONAL
120 Asci - Optional pointer to return Ascii equivalent of Graphic.
143 if (Ascii) {
144 *Ascii = Table->Ascii;
154 IN CHAR16 Ascii
157 if ((Ascii >= 0x20) && (Ascii <= 0x7f))
    [all...]
print.c 55 BOOLEAN Ascii;
224 ps.fmt.Ascii = TRUE;
770 ps.fmt.Ascii = TRUE;
796 function that takes an ascii format string
800 fmt - ascii format string
881 c = p->Ascii ? p->pc[p->Index] : p->pw[p->Index];
971 a - ascii string
1023 Item.Item.Ascii = FALSE;
1080 Item.Item.Ascii = TRUE;
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/SmbiosLib/
SmbiosLib.c 217 CHAR8 *Ascii;
228 Ascii = AllocateZeroPool (StrSize (String));
229 if (Ascii == NULL) {
232 UnicodeStrToAsciiStr (String, Ascii);
235 Status = gSmbios->UpdateString (gSmbios, &SmbiosHandle, &StringIndex, Ascii);
237 FreePool (Ascii);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/
VgaClass.h 44 // Structure for tuple containing mapping among uniocde, PC Ansi and ASCII code.
49 CHAR8 Ascii;
174 @param Language A pointer to a Null-terminated ASCII string
231 @param Language A pointer to a Null-terminated ASCII string
  /external/guava/guava-tests/test/com/google/common/base/
AsciiTest.java 25 * Unit test for {@link Ascii}.
42 assertEquals(LOWER, Ascii.toLowerCase(UPPER));
43 assertSame(LOWER, Ascii.toLowerCase(LOWER));
44 assertEquals(IGNORED, Ascii.toLowerCase(IGNORED));
45 assertEquals("foobar", Ascii.toLowerCase("fOobaR"));
49 assertEquals(UPPER, Ascii.toUpperCase(LOWER));
50 assertSame(UPPER, Ascii.toUpperCase(UPPER));
51 assertEquals(IGNORED, Ascii.toUpperCase(IGNORED));
52 assertEquals("FOOBAR", Ascii.toUpperCase("FoOBAr"));
58 assertTrue(str, c == Ascii.toLowerCase(c))
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/io/super/com/google/common/io/
BaseEncodingTest.java 23 import com.google.common.base.Ascii;
246 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded));
247 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded));
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Parse.c 61 If the position upon start is 0, then the Ascii Boolean will be set. This should be
151 If the position upon start is 0, then the Ascii Boolean will be set. This should be
261 BOOLEAN Ascii;
287 TempLine = ShellFileHandleReturnLine (FileHandle, &Ascii);
310 TempLine = ShellFileHandleReturnLine (FileHandle, &Ascii);
  /external/guava/guava-tests/benchmark/com/google/common/base/
AsciiBenchmark.java 22 import com.google.common.base.Ascii;
32 * Benchmarks for the ASCII class.
77 ? Ascii.toUpperCase(testString)
82 dummy += Ascii.toUpperCase(string).length();
121 dummy ^= Ascii.equalsIgnoreCase(lhs[i & 0x3], rhs[i & 0x3]);
133 dummy ^= Ascii.equalsIgnoreCase(lhs, rhs);
157 dummy ^= Ascii.isUpperCase(chars[n]);
167 builder.append(Ascii.toUpperCase(chars.charAt(i)));
  /external/guava/guava-tests/test/com/google/common/io/
BaseEncodingTest.java 24 import com.google.common.base.Ascii;
312 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded));
313 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded));
375 testStreamingEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded));
376 testStreamingEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded));
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
BlockIo.c 586 char *Ascii;
590 Ascii = malloc (Size);
591 if (Ascii == NULL) {
595 for (Ptr = Ascii; *Str != '\0'; Ptr++, Str++) {
600 return Ascii;
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiFileHandleLib/
UefiFileHandleLib.c 884 If the position upon start is 0, then the Ascii Boolean will be set. This should be
888 @param[in, out] Ascii Boolean value for indicating whether the file is Ascii (TRUE) or UCS2 (FALSE);
898 IN OUT BOOLEAN *Ascii
908 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);
911 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);
924 If the position upon start is 0, then the Ascii Boolean will be set. This should be
938 @param[in, out] Ascii Boolean value for indicating whether the file is
939 Ascii (TRUE) or UCS2 (FALSE).
956 IN OUT BOOLEAN *Ascii
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalDriver.c 143 CHAR8 *Ascii;
237 Ascii = AllocateZeroPool (MAX_PASSWORD_SIZE + 1);
238 if (Ascii == NULL) {
242 UnicodeStrToAsciiStrS (Unicode, Ascii, MAX_PASSWORD_SIZE + 1);
245 return Ascii;
970 // Acquire Ascii printable name of child, if not found, then ignore device
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellManParser.c 52 it maps to a valid small-case ASCII character.
55 which maps to a valid small-case ASCII character, i.e.
352 @param[in] Ascii TRUE if the file is ASCII, FALSE otherwise.
364 IN BOOLEAN Ascii
393 Status = ShellFileHandleReadLine(Handle, ReadLine, &Size, TRUE, &Ascii);
700 @param[in, out] Ascii TRUE if the file is ASCII, FALSE otherwise, will be
713 IN OUT BOOLEAN *Ascii
750 Status = ShellFileHandleReadLine(Handle, ReadLine, &Size, TRUE, Ascii);
    [all...]
Shell.c     [all...]
  /external/guava/guava/src/com/google/common/base/
Ascii.java 28 * Static methods pertaining to ASCII characters (those in the range of values
32 * <p>ASCII utilities also exist in other classes of this package:
35 * <li>{@link Charsets#US_ASCII} specifies the {@code Charset} of ASCII characters.
36 * <li>{@link CharMatcher#ASCII} matches ASCII characters and provides text processing methods
37 * which operate only on the ASCII characters of a string.
45 public final class Ascii {
47 private Ascii() {}
49 /* The ASCII control characters, per RFC 20. */
233 * Transmission On: Although originally defined as DC1, this ASCII
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/StatusCodeDataTypeId/
StatusCodeDataTypeId.h 85 CHAR8 *Ascii;
132 // ascii DEBUG () Format string
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
Terminal.h 168 CHAR8 Ascii;
449 not ASCII code, then this function will return
687 @param Language[in] A pointer to a Null-terminated ASCII string
752 @param Language[in] A pointer to a Null-terminated ASCII string
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
StatusCodeDataTypeId.h 33 /// A NULL-terminated ASCII string.
66 /// ASCII formatted string.
68 CHAR8 *Ascii;
82 /// status code. The string can be ASCII, Unicode, or a Human Interface Infrastructure
661 /// A pointer to a NULL-terminated ASCII or Unicode string that represents
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
Expr.h     [all...]

Completed in 1067 milliseconds

1 2 3 4 5 6 7