Home
last modified time | relevance | path

Searched defs:check (Results 1 – 25 of 506) sorted by relevance

12345678910>>...21

/external/clang/test/Lexer/
Dcxx-features.cpp13 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx98 == 0 ? defined(__cpp_##macro) : __cpp_##macr… macro
15 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx11 == 0 ? defined(__cpp_##macro) : __cpp_##macr… macro
17 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx14 == 0 ? defined(__cpp_##macro) : __cpp_##macr… macro
19 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx1z == 0 ? defined(__cpp_##macro) : __cpp_##macr… macro
/external/clang/test/CXX/lex/lex.literal/lex.ext/
Dp12.cpp5 struct check<char, 34, -47, -126, -48, -75, -47, -127, -47, -126, 32, -16, -112, -128, -128>{}; struct
7 struct check<char16_t, 34, 1090, 1077, 1089, 1090, 32, 55296, 56320>{}; struct
9 struct check<char32_t, 34, 1090, 1077, 1089, 1090, 32, 65536>{}; struct
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
DBundleChecker.java90 private void check(final IPackageCoverage packageCoverage) { in check() method in BundleChecker
105 private void check(final IClassCoverage classCoverage) { in check() method in BundleChecker
116 private void check(final ISourceFileCoverage sourceFile) { in check() method in BundleChecker
122 private void check(final IMethodCoverage method, final String className) { in check() method in BundleChecker
/external/autotest/client/site_tests/firmware_TouchMTB/
Dvalidators.py290 def check(self, packets, variation=None): member in DragLatencyValidator
365 def check(self, packets, variation=None): member in DiscardInitialSecondsValidator
485 def check(self, packets, variation=None): member in LinearityValidator1
660 def check(self, packets, variation=None): member in LinearityValidator
698 def check(self, packets, variation=None): member in RangeValidator
751 def check(self, packets, variation=None): member in CountTrackingIDValidator
801 def check(self, packets, variation=None): member in StationaryValidator
849 def check(self, packets, variation=None): member in NoGapValidator
882 def check(self, packets, variation=None): member in NoReversedMotionValidator
911 def check(self, packets, variation=None): member in CountPacketsValidator
[all …]
/external/mesa3d/src/glsl/builtins/tools/
Dgenerate_builtins.py273 check = 'state->target == vertex_shader && ' variable
275 check = 'state->target == fragment_shader && ' variable
277 check = '' variable
/external/syslinux/com32/lib/libpng/
Dpngwio.c52 png_uint_32 check; in png_default_write_data() local
77 png_uint_32 check; in png_default_write_data() local
231 void *png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) in png_far_to_near()
245 void *png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) in png_far_to_near()
Dpngrio.c53 png_size_t check; in png_default_read_data() local
83 int check; in png_default_read_data() local
Dpngtest.c43 # define READFILE(file, data, length, check) \ argument
45 # define WRITEFILE(file, data, length, check)) \ argument
51 # define READFILE(file, data, length, check) \ argument
53 # define WRITEFILE(file, data, length, check) \ argument
315 png_size_t check = 0; in pngtest_read_data() local
344 int check; in pngtest_read_data() local
398 png_uint_32 check; in pngtest_write_data() local
418 png_uint_32 check; in pngtest_write_data() local
/external/icu/icu4c/source/tools/toolutil/
Dpkgitems.cpp165 CheckDependency check, void *context, in checkIDSuffix()
176 checkParent(const char *itemName, CheckDependency check, void *context, in checkParent()
225 CheckDependency check, void *context, UErrorCode *pErrorCode) { in checkAlias()
284 CheckDependency check, void *context, in ures_enumDependencies()
370 CheckDependency check, void *context, in ures_enumDependencies()
448 CheckDependency check, void *context, in ucnv_enumDependencies()
578 Package::enumDependencies(Item *pItem, void *context, CheckDependency check) { in enumDependencies()
/external/v8/src/runtime/
Druntime-compiler.cc36 StackLimitCheck check(isolate); in RUNTIME_FUNCTION() local
49 StackLimitCheck check(isolate); in RUNTIME_FUNCTION() local
62 StackLimitCheck check(isolate); in RUNTIME_FUNCTION() local
76 StackLimitCheck check(isolate); in RUNTIME_FUNCTION() local
405 StackLimitCheck check(isolate); in RUNTIME_FUNCTION() local
/external/valgrind/memcheck/tests/
Dmallinfo.c12 static size_t check(size_t min, size_t max) in check() function
74 static size_t check(size_t min, size_t max) in check() function
/external/conscrypt/common/src/main/java/org/conscrypt/
DChainStrengthAnalyzer.java47 public static final void check(X509Certificate[] chain) throws CertificateException { in check() method in ChainStrengthAnalyzer
58 public static final void check(List<X509Certificate> chain) throws CertificateException { in check() method in ChainStrengthAnalyzer
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DYamlDocument.java32 public YamlDocument(String sourceName, boolean check, Constructor constructor) { in YamlDocument()
57 public YamlDocument(String sourceName, boolean check) { in YamlDocument()
/external/clang/test/SemaCXX/
Dpragma-pack.cpp16 int check[sizeof(Sub) == 5 ? 1 : -1]; variable
33 int check[sizeof(Sub) == 13 ? 1 : -1]; variable
/external/clang/test/SemaTemplate/
Dattributes.cpp9 template <bool X> struct check { struct
10 int check_failed[X ? 1 : -1]; // expected-error {{array with a negative size}}
/external/dtc/
Dchecks.c45 struct check { struct
47 check_fn fn; argument
50 enum checkstatus status; argument
53 struct check **prereq; argument
/external/guava/guava-testlib/test/com/google/common/testing/
DNullPointerTesterTest.java874 final void check() { in check() method in NullPointerTesterTest.AllDefaultValuesChecker
901 void check() { in check() method in NullPointerTesterTest.ObjectArrayDefaultValueChecker
920 void check() { in check() method in NullPointerTesterTest.StringArrayDefaultValueChecker
939 void check() { in check() method in NullPointerTesterTest.IntArrayDefaultValueChecker
960 void check() { in check() method in NullPointerTesterTest.EmptyEnumDefaultValueChecker
982 void check() { in check() method in NullPointerTesterTest.GenericClassTypeDefaultValueChecker
1001 void check() { in check() method in NullPointerTesterTest.NonGenericClassTypeDefaultValueChecker
1021 void check() { in check() method in NullPointerTesterTest.GenericTypeTokenDefaultValueChecker
1042 void check() { in check() method in NullPointerTesterTest.NonGenericTypeTokenDefaultValueChecker
1063 void check() { in check() method in NullPointerTesterTest.GenericInterfaceDefaultValueChecker
[all …]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
DBlockOutputStream.java22 private final Check check; field in BlockOutputStream
31 Check check) throws IOException { in BlockOutputStream()
DBlockInputStream.java24 private final Check check; field in BlockInputStream
37 Check check, boolean verifyCheck, in BlockInputStream()
/external/v8/src/compiler/
Deffect-control-linearizer.cc889 Node* check = graph()->NewNode(machine()->Uint32LessThanOrEqual(), value, in LowerChangeUint32ToTagged() local
1075 Node* check = ObjectIsSmi(value); in LowerChangeTaggedToInt32() local
1107 Node* check = ObjectIsSmi(value); in LowerChangeTaggedToUint32() local
1145 Node* check = ObjectIsSmi(value); in LowerTruncateTaggedToFloat64() local
1181 Node* check = graph()->NewNode(machine()->Uint32LessThan(), index, limit); in LowerCheckBounds() local
1205 Node* check = graph()->NewNode(machine()->WordEqual(), value_map, map); in LowerCheckMaps() local
1304 Node* check = graph()->NewNode(common()->Projection(1), value, control); in LowerCheckedInt32Add() local
1323 Node* check = graph()->NewNode(common()->Projection(1), value, control); in LowerCheckedInt32Sub() local
1361 Node* check = graph()->NewNode(machine()->Word32Equal(), rhs, zero); in LowerCheckedInt32Div() local
1382 Node* check = graph()->NewNode(machine()->Word32Equal(), rhs, minusone); in LowerCheckedInt32Div() local
[all …]
Djs-call-reducer.cc362 Node* check = graph()->NewNode(simplified()->ReferenceEqual(), target, in ReduceJSCallFunction() local
377 Node* check = graph()->NewNode(simplified()->ReferenceEqual(), target, in ReduceJSCallFunction() local
465 Node* check = graph()->NewNode(simplified()->ReferenceEqual(), target, in ReduceJSCallConstruct() local
485 Node* check = graph()->NewNode(simplified()->ReferenceEqual(), target, in ReduceJSCallConstruct() local
/external/icu/icu4c/source/test/perf/DateFmtPerf/
DDateFmtPerf.h230 void check(UErrorCode& status, const char* msg) { in check() function
311 void check(UErrorCode& status, const char* msg) { in check() function
366 void check(UErrorCode& status, const char* msg) { in check() function
410 void check(UErrorCode& status, const char* msg) { in check() function
455 void check(UErrorCode& status, const char* msg) { in check() function
502 void check(UErrorCode& status, const char* msg) { in check() function
550 void check(UErrorCode& status, const char* msg) { in check() function
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugType.h40 BugType(class CheckName check, StringRef name, StringRef cat) in BugType()
65 BuiltinBug(class CheckName check, const char *name, const char *description) in BuiltinBug()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DCertificatePinner.java150 public void check(String hostname, List<Certificate> peerCertificates) in check() method in CertificatePinner
179 public void check(String hostname, Certificate... peerCertificates) in check() method in CertificatePinner
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructorErrorsTest.java57 private void check(String fileName, String failure, String message) { in check() method in CompactConstructorErrorsTest
61 private void check(String fileName, String failure, String message, boolean exactMatch) { in check() method in CompactConstructorErrorsTest

12345678910>>...21