HomeSort by relevance Sort by last modified time
    Searched refs:check_type (Results 1 - 16 of 16) 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...]
  /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/lzma/xz-embedded/
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...]
  /art/runtime/verifier/
register_line-inl.h 131 const RegType& check_type) {
134 if (UNLIKELY(!check_type.IsAssignableFrom(src_type))) {
136 if (!check_type.IsNonZeroReferenceTypes() || !src_type.IsNonZeroReferenceTypes()) {
139 } else if (check_type.IsUninitializedTypes() || src_type.IsUninitializedTypes()) {
142 } else if (check_type.IsUnresolvedTypes() || src_type.IsUnresolvedTypes()) {
148 << src_type << " but expected " << check_type; local
151 if (check_type.IsLowHalf()) {
register_line.h 125 const RegType& check_type)
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 895 unsigned int flags, int check_type,
910 if (check_type == GEN_EMAIL)
916 else if (check_type == GEN_DNS)
942 if (gen->type != check_type)
945 if (check_type == GEN_EMAIL)
947 else if (check_type == GEN_DNS)
  /external/toybox/toys/pending/
xzcat.c 2388 enum xz_check check_type; member in struct:xz_dec
    [all...]
  /external/v8/src/ic/
handler-compiler.cc 97 PrototypeCheckType check_type = SKIP_RECEIVER; local
109 check_type = CHECK_ALL_MAPS;
114 miss, check_type, return_what);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_tools.hpp 407 enum check_type { enum in namespace:boost::test_tools::tt_detail
481 tool_level tl, check_type ct,
506 tool_level tl, check_type ct \
  /system/sepolicy/tools/
check_seapp.c 307 static int check_type(sepol_policydb_t *db, char *type) { function
384 if(!check_type(pol.db, value)) {
  /external/mesa3d/src/glsl/
ast_to_hir.cpp 2707 const glsl_type *check_type = var->type->is_array() local
    [all...]

Completed in 5373 milliseconds