HomeSort by relevance Sort by last modified time
    Searched refs:Char (Results 176 - 200 of 432) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 107 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 107 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 104 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 104 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 104 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 107 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 107 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 107 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
SelectionDAGTargetInfo.h 107 SDValue Src, SDValue Char, SDValue Length,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndattrib.h 14 CHAR data[126];
124 char Char;
  /system/core/adb/
line_printer.cpp 48 const char* term = getenv("TERM");
100 char_data[i].Char.AsciiChar = i < to_print.size() ? to_print[i] : ' ';
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 756 for Char in Path.strip():
757 if Char.isalnum() or Char in '.-_/':
758 RetPath = RetPath + Char
759 elif Char == '\\':
775 for Char in SpecStr:
776 if Char.isalnum() or Char == '_':
777 RetStr = RetStr + Char
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-printers_test.cc 129 char xy_[8];
273 // Tests printing various char types.
275 // char.
295 // signed char.
297 EXPECT_EQ("'\\0'", Print(static_cast<signed char>('\0')));
299 Print(static_cast<signed char>(-50)));
302 // unsigned char.
304 EXPECT_EQ("'\\0'", Print(static_cast<unsigned char>('\0')));
306 Print(static_cast<unsigned char>('b')));
346 EXPECT_EQ("'\\xFF' (255)", Print(static_cast<unsigned char>(255))); // uint
    [all...]
  /external/libedit/src/
vi.c 43 static char sccsid[] = "@(#)vi.c 8.1 (Berkeley) 6/4/93";
645 Char *kp, *cp;
806 const Char match_chars[] = STR("()[]{}");
807 Char *cp;
809 Char o_ch, c_ch;
835 /* NB posix says char under cursor should NOT be deleted
922 __weakref_visible char *my_get_alias_text(const char *)
930 char alias_name[3];
931 char *alias_text
    [all...]
  /external/valgrind/VEX/priv/
host_generic_simd64.c 161 static inline Char qadd8S ( Char xx, Char yy )
166 return (Char)t;
201 static inline Char qsub8S ( Char xx, Char yy )
206 return (Char)t;
276 static inline UChar cmpgt8S ( Char xx, Char yy
    [all...]
host_generic_simd128.c 81 static inline UChar max8S ( Char xx, Char yy )
86 static inline UChar min8S ( Char xx, Char yy )
110 return toUChar(((Char)v) >> n);
  /device/linaro/bootloader/edk2/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/
DefaultExceptionHandler.c 38 CHAR8 Char;
85 *Str = CpsrChar[Index].Char;
204 CHAR8 CpsrStr[CPSR_STRING_SIZE]; // char per bit. Lower 5-bits are mode
205 // that is a 3 char string
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Parsing.py 537 # @param CommentCharacter: Comment char, used to ignore comment content
    [all...]
  /frameworks/support/core/ktx/src/main/java/androidx/core/os/
Bundle.kt 40 is Char -> putChar(key, value)
  /tools/metalava/src/main/java/com/android/tools/metalava/
AnnotationsDiffer.kt 122 var prev: Char = ' '
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
UefiShellLib.c 48 @param Char The character to check against.
50 @retval TRUE If the Char is a hexadecmial character.
51 @retval FALSE If the Char is not a hexadecmial character.
57 IN CHAR16 Char
60 return (BOOLEAN) ((Char >= L'0' && Char <= L'9') || (Char >= L'A' && Char <= L'F') || (Char >= L'a' && Char <= L'f'));
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsMisc.c 561 It assumes the input Char is in the scope of L'0' ~ L'9' and L'A' ~ L'F'
563 @param Char The input char which need to change to a hex number.
568 IN CHAR16 Char
571 if ((Char >= L'0') && (Char <= L'9')) {
572 return (UINTN) (Char - L'0');
575 if ((Char >= L'A') && (Char <= L'F')) {
576 return (UINTN) (Char - L'A' + 0xA);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsMisc.c 561 It assumes the input Char is in the scope of L'0' ~ L'9' and L'A' ~ L'F'
563 @param Char The input char which need to change to a hex number.
568 IN CHAR16 Char
571 if ((Char >= L'0') && (Char <= L'9')) {
572 return (UINTN) (Char - L'0');
575 if ((Char >= L'A') && (Char <= L'F')) {
576 return (UINTN) (Char - L'A' + 0xA);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
MachOObjectFile.cpp 169 char &Result) const {
183 char Char;
186 Char = 'u';
190 Char = 's';
193 Char = '?';
198 Char = toupper(Char);
199 Result = Char;
344 static char result[34]
    [all...]
  /art/test/959-invoke-polymorphic-accessors/src/
Main.java 26 public char m_c = 'a';
36 public static char s_c;
58 public static void assertEquals(char expected, char actual) {
85 Char,
144 static void setChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure)
161 static void setChar(MethodHandle m, char value, boolean expectFailure) throws Throwable {
165 static void getChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure)
169 final char got;
171 got = (char) m.invokeExact()
    [all...]

Completed in 687 milliseconds

1 2 3 4 5 6 78 91011>>