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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/
cxx-features.cpp 13 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx98 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx98 macro
15 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx11 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx11 macro
17 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx14 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx14 macro
19 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx1z == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx1z macro
22 #if check(binary_literals, 0, 0, 201304, 201304)
26 #if check(digit_separators, 0, 0, 201309, 201309)
30 #if check(init_captures, 0, 0, 201304, 201304)
34 #if check(generic_lambdas, 0, 0, 201304, 201304)
38 #if check(sized_deallocation, 0, 0, 201309, 201309)
42 #if check(constexpr, 0, 200704, 201304, 201304
    [all...]
  /external/autotest/client/cros/cellular/mbim_compliance/assertions/
assertion.py 13 def check(self): member in class:Assertion
14 """ Check that the assertion holds. """
  /external/compiler-rt/lib/tsan/
check_analyze.sh 21 check() { function
30 check $f rsp 1
31 check $f push 2
32 check $f pop 2
36 check $f rsp 1
37 check $f push 3
38 check $f pop 3
42 check $f rsp 1
43 check $f push 5
44 check $f pop
    [all...]
  /external/libcxx/test/std/localization/locales/locale/locale.cons/
char_pointer.pass.cpp 30 void check(const std::locale& loc) function
69 check(loc);
71 check(loc2);
74 check(loc3);
locale_char_pointer_cat.pass.cpp 28 void check(const std::locale& loc) function
67 check(loc);
69 check(loc2);
locale_locale_cat.pass.cpp 28 void check(const std::locale& loc) function
67 check(loc);
69 check(loc2);
locale_string_cat.pass.cpp 29 void check(const std::locale& loc) function
68 check(loc);
70 check(loc2);
string.pass.cpp 24 void check(const std::locale& loc) function
63 check(loc);
65 check(loc2);
68 check(loc3);
assign.pass.cpp 25 void check(const std::locale& loc) function
67 check(loc);
68 check(loc2);
copy.pass.cpp 23 void check(const std::locale& loc) function
64 check(loc);
65 check(loc2);
  /external/openssh/regress/
dhgex.sh 31 # check what we request
37 # check what we got (depends on contents of system moduli file)
44 check() function
55 #check 2048 3des-cbc
56 check 3072 `${SSH} -Q cipher | grep 128`
57 check 3072 arcfour blowfish-cbc
58 check 7680 `${SSH} -Q cipher | grep 192`
59 check 8192 `${SSH} -Q cipher | grep 256`
60 check 8192 rijndael-cbc@lysator.liu.se chacha20-poly1305@openssh.com
  /cts/apps/CameraITS/tests/scene0/
test_metadata.py 51 check('props.has_key("android.info.supportedHardwareLevel")')
52 check('props["android.info.supportedHardwareLevel"] is not None')
53 check('props["android.info.supportedHardwareLevel"] in [0,1,2,3]')
60 check('md.has_key("android.sensor.frameDuration")')
61 check('md["android.sensor.frameDuration"] is not None')
62 check('md.has_key("android.sensor.rollingShutterSkew")')
63 check('md["android.sensor.rollingShutterSkew"] is not None')
65 check('md["android.sensor.rollingShutterSkew"] > 0')
66 check('md["android.sensor.frameDuration"] > 0')
69 check('props.has_key("android.sensor.info.timestampSource")'
123 def check(expr): function
    [all...]
  /development/gsi/gsi_util/gsi_util/checkers/
vintf_checker.py 15 """Runs Treble compatibility check between /system and /vendor.
18 major Android releases (e.g., O -> P). VINTF check is to ensure a given
31 """The checker to perform VINTF check between /system and /vendor."""
35 # check.
52 def check(self): member in class:VintfChecker
53 """Performs the Treble VINTF compatibility check.
73 # Runs the check item and appends the result.
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.general/
p8.cpp 5 template<typename T> struct check;
6 template<size_t N> struct check<const char[N]> {}; struct
16 check<decltype(__func__)>();
  /external/deqp/scripts/opengl/
gen_func_init.py 32 def check(api, version): function in function:genFuncInit
38 check = check,
  /external/elfutils/tests/
hash.c 27 check (const char *name, unsigned long int expected) function
40 /* Check some names. We know what the expected result is. */
41 status = check ("_DYNAMIC", 165832675);
42 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
package-info.java 14 * Rules check implementation.
16 package org.jacoco.report.check
  /external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
default.pass.cpp 24 void check() function in struct:testbuf
47 buf.check();
51 buf.check();
  /external/libcxx/test/std/localization/locales/locale/locale.statics/
classic.pass.cpp 17 void check(const std::locale& loc) function
57 check(loc);
58 check(std::locale("C"));
global.pass.cpp 21 void check(const std::locale& loc) function
60 check(loc);
63 check(loc2);
  /external/libcxx/test/std/utilities/function.objects/refwrap/
unwrap_ref_decay.pass.cpp 25 void check() { function
33 check<T, T>();
34 check<T&, T>();
35 check<T const, T>();
36 check<T const&, T>();
37 check<T*, T*>();
38 check<T const*, T const*>();
39 check<T[3], T*>();
40 check<T const [3], T const*>();
41 check<T (), T (*)()>()
    [all...]
unwrap_reference.pass.cpp 31 void check() { function
44 check<T>();
45 check<int>();
46 check<float>();
48 check<T*>();
49 check<int*>();
50 check<float*>();
  /external/libcxx/test/std/utilities/memory/pointer.traits/
pointer_to.pass.cpp 26 bool check() { function
40 check();
42 static_assert(check(), "");
  /external/libpng/
pngrio.c 52 png_size_t check; local
60 check = fread(data, 1, length, png_voidcast(png_FILE_p, png_ptr->io_ptr));
62 if (check != length)
  /external/pdfium/third_party/libpng16/
pngrio.c 52 png_size_t check; local
60 check = fread(data, 1, length, png_voidcast(png_FILE_p, png_ptr->io_ptr));
62 if (check != length)

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>