HomeSort by relevance Sort by last modified time
    Searched refs:check_type (Results 1 - 25 of 25) sorted by null

  /external/clang/test/Headers/
arm64-apple-ios-types.cpp 20 struct check_type { struct
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong");
31 static_assert(check_type<char, 1, 1>::value, "char is wrong");
32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong");
33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong");
35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong");
36 static_assert(check_type<char32_t, 4, 4>::value, "char32_t is wrong");
37 static_assert(check_type<wchar_t, 4, 4>::value, "wchar_t is wrong");
39 static_assert(check_type<short, 2, 2>::value, "short is wrong");
40 static_assert(check_type<unsigned short, 2, 2>::value, "unsigned short is wrong")
    [all...]
thumbv7-apple-ios-types.cpp 20 struct check_type { struct
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong");
31 static_assert(check_type<char, 1, 1>::value, "char is wrong");
32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong");
33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong");
35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong");
36 static_assert(check_type<char32_t, 4, 4>::value, "char32_t is wrong");
37 static_assert(check_type<wchar_t, 4, 4>::value, "wchar_t is wrong");
39 static_assert(check_type<short, 2, 2>::value, "short is wrong");
40 static_assert(check_type<unsigned short, 2, 2>::value, "unsigned short is wrong")
    [all...]
x86_64-apple-macosx-types.cpp 20 struct check_type { struct
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong");
31 static_assert(check_type<char, 1, 1>::value, "char is wrong");
32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong");
33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong");
35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong");
36 static_assert(check_type<char32_t, 4, 4>::value, "char32_t is wrong");
37 static_assert(check_type<wchar_t, 4, 4>::value, "wchar_t is wrong");
39 static_assert(check_type<short, 2, 2>::value, "short is wrong");
40 static_assert(check_type<unsigned short, 2, 2>::value, "unsigned short is wrong")
    [all...]
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/
void_handle.pass.cpp 40 void check_type() { function
47 check_type<A*, A>();
48 check_type<int*, A, int>();
49 check_type<B*, B>();
50 check_type<void, C>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/
void_handle.pass.cpp 40 void check_type() { function
47 check_type<A*, A>();
48 check_type<int*, A, int>();
49 check_type<B*, B>();
50 check_type<void, C>();
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_callbacks.py 16 def check_type(self, typ, arg): member in class:Callbacks
36 self.check_type(c_byte, 42)
37 self.check_type(c_byte, -42)
40 self.check_type(c_ubyte, 42)
43 self.check_type(c_short, 42)
44 self.check_type(c_short, -42)
47 self.check_type(c_ushort, 42)
50 self.check_type(c_int, 42)
51 self.check_type(c_int, -42)
54 self.check_type(c_uint, 42
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_callbacks.py 16 def check_type(self, typ, arg): member in class:Callbacks
36 self.check_type(c_byte, 42)
37 self.check_type(c_byte, -42)
40 self.check_type(c_ubyte, 42)
43 self.check_type(c_short, 42)
44 self.check_type(c_short, -42)
47 self.check_type(c_ushort, 42)
50 self.check_type(c_int, 42)
51 self.check_type(c_int, -42)
54 self.check_type(c_uint, 42
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 16 def check_type(self, typ, arg): member in class:Callbacks
36 self.check_type(c_byte, 42)
37 self.check_type(c_byte, -42)
40 self.check_type(c_ubyte, 42)
43 self.check_type(c_short, 42)
44 self.check_type(c_short, -42)
47 self.check_type(c_ushort, 42)
50 self.check_type(c_int, 42)
51 self.check_type(c_int, -42)
54 self.check_type(c_uint, 42
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 16 def check_type(self, typ, arg): member in class:Callbacks
36 self.check_type(c_byte, 42)
37 self.check_type(c_byte, -42)
40 self.check_type(c_ubyte, 42)
43 self.check_type(c_short, 42)
44 self.check_type(c_short, -42)
47 self.check_type(c_ushort, 42)
50 self.check_type(c_int, 42)
51 self.check_type(c_int, -42)
54 self.check_type(c_uint, 42
    [all...]
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.traits/
promise_type.pass.cpp 52 void check_type() { function
67 check_type<A*, A>();
68 check_type<int*, A, int>();
69 check_type<B*, B>();
70 check_type<void, C>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.traits/
promise_type.pass.cpp 52 void check_type() { function
67 check_type<A*, A>();
68 check_type<int*, A, int>();
69 check_type<B*, B>();
70 check_type<void, C>();
  /external/python/cpython2/Lib/ctypes/test/
test_callbacks.py 18 def check_type(self, typ, arg): member in class:Callbacks
38 self.check_type(c_byte, 42)
39 self.check_type(c_byte, -42)
42 self.check_type(c_ubyte, 42)
45 self.check_type(c_short, 42)
46 self.check_type(c_short, -42)
49 self.check_type(c_ushort, 42)
52 self.check_type(c_int, 42)
53 self.check_type(c_int, -42)
56 self.check_type(c_uint, 42
    [all...]
  /external/python/cpython3/Lib/ctypes/test/
test_callbacks.py 18 def check_type(self, typ, arg): member in class:Callbacks
38 self.check_type(c_byte, 42)
39 self.check_type(c_byte, -42)
42 self.check_type(c_ubyte, 42)
45 self.check_type(c_short, 42)
46 self.check_type(c_short, -42)
49 self.check_type(c_ushort, 42)
52 self.check_type(c_int, 42)
53 self.check_type(c_int, -42)
56 self.check_type(c_uint, 42
    [all...]
  /art/runtime/verifier/
register_line-inl.h 133 const RegType& check_type) {
136 if (UNLIKELY(!check_type.IsAssignableFrom(src_type, verifier))) {
138 if (!check_type.IsNonZeroReferenceTypes() || !src_type.IsNonZeroReferenceTypes()) {
141 } else if (check_type.IsUninitializedTypes() || src_type.IsUninitializedTypes()) {
144 } else if (check_type.IsUnresolvedTypes() || src_type.IsUnresolvedTypes()) {
150 << src_type << " but expected " << check_type; local
151 if (check_type.IsNonZeroReferenceTypes() &&
152 !check_type.IsUnresolvedTypes() &&
153 check_type.HasClass() &&
157 DumpB77342775DebugData(check_type.GetClass(), src_type.GetClass())
    [all...]
register_line.h 127 const RegType& check_type)
  /external/xz-embedded/linux/lib/xz/
xz_dec_stream.c 14 # define IS_CRC64(check_type) ((check_type) == XZ_CHECK_CRC64)
16 # define IS_CRC64(check_type) false
60 enum xz_check check_type; member in struct:xz_dec
255 if (s->check_type == XZ_CHECK_CRC32)
259 else if (s->check_type == XZ_CHECK_CRC64)
279 s->block.hash.unpadded += check_sizes[s->check_type];
281 if (s->check_type == XZ_CHECK_CRC32)
283 else if (IS_CRC64(s->check_type))
392 while (s->pos < check_sizes[s->check_type]) {
    [all...]
  /tools/repohooks/rh/
shell_unittest.py 50 def _testData(self, functor, tests, check_type=True):
56 if check_type:
  /external/swiftshader/src/OpenGL/compiler/
glslang.l 74 static int check_type(yyscan_t yyscanner);
256 return check_type(yyscanner);
266 return check_type(yyscanner);
326 return check_type(yyscanner);
421 int check_type(yyscan_t yyscanner) {
478 return check_type(yyscanner);
glslang_lex.cpp 3653 int check_type(yyscan_t yyscanner) { function
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 956 unsigned int flags, int check_type, char **peername)
970 if (check_type == GEN_EMAIL) {
974 } else if (check_type == GEN_DNS) {
995 if (gen->type != check_type)
998 if (check_type == GEN_EMAIL)
1000 else if (check_type == GEN_DNS)
    [all...]
  /external/toybox/toys/pending/
xzcat.c 2381 enum xz_check check_type; member in struct:xz_dec
    [all...]
  /system/tools/hidl/c2hal/
c2hal_l.ll 51 int check_type(yyscan_t yyscanner, struct yyguts_t *yyg);
  /external/scapy/scapy/asn1/
ber.py 204 def check_type(cls, s): member in class:BERcodec_Object
213 s2 = cls.check_type(s)
  /external/mesa3d/src/compiler/glsl/
ast_to_hir.cpp 4884 const glsl_type *check_type = var->type->without_array(); local
4941 const glsl_type *check_type = var->type->without_array(); local
4977 const glsl_type *check_type = var->type->without_array(); local
    [all...]
  /system/sepolicy/tools/
check_seapp.c 310 static int check_type(sepol_policydb_t *db, char *type) { function
396 if(!check_type(pol.db, value)) {

Completed in 592 milliseconds