HomeSort by relevance Sort by last modified time
    Searched defs:check (Results 376 - 400 of 1856) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaTemplate/
attributes.cpp 9 template <bool X> struct check { struct in namespace:attribute_aligned
14 typedef check<N == sizeof(X<N>)> t; // expected-note {{in instantiation}}
  /external/conscrypt/src/main/java/org/conscrypt/
ChainStrengthAnalyzer.java 41 public static final void check(X509Certificate[] chain) throws CertificateException { method in class:ChainStrengthAnalyzer
52 public static final void check(List<X509Certificate> chain) throws CertificateException { method in class:ChainStrengthAnalyzer
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
Assert.java 11 package org.eclipse.wb.internal.core.utils.check;
46 * the boolean expression of the check
47 * @return <code>true</code> if the check passes (does not return if the check fails)
61 * the boolean expression of the check
64 * @return <code>true</code> if the check passes (does not return if the check fails)
115 * the format of error message to produce if the check fails, as expected by
131 * the format of error message to produce if the check fails, as expected by
182 * the format of error message to produce if the check fails, as expected b
    [all...]
  /external/google-benchmark/src/
check.h 13 // CheckHandler is the class constructed by failing CHECK macros. CheckHandler
17 CheckHandler(const char* check, const char* file, const char* func, int line)
20 log_ << file << ":" << line << ": " << func << ": Check `"
21 << check << "' failed. "; local
43 // The CHECK macro returns a std::ostream object that can have extra information
46 # define CHECK(b) (b ? ::benchmark::internal::GetNullLogInstance() \
50 # define CHECK(b) ::benchmark::internal::GetNullLogInstance()
53 #define CHECK_EQ(a, b) CHECK((a) == (b))
54 #define CHECK_NE(a, b) CHECK((a) != (b))
55 #define CHECK_GE(a, b) CHECK((a) >= (b)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
TestComparator.java 34 // check symmetry
39 // check transitivity
40 check(a, b, c, compab, compbc, compac); method
41 check(a, c, b, compab, -compbc, compab); method
42 check(b, a, c, -compab, compac, compbc); method
43 check(b, c, a, compbc, -compac, -compab); method
44 check(c, a, b, -compac, compab, -compbc); method
45 check(c, b, a, -compbc, -compab, -compac); method
49 private void check(Object a, Object b, Object c, method in class:TestComparator
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
TestComparator.java 33 // check symmetry
38 // check transitivity
39 check(a, b, c, compab, compbc, compac); method
40 check(a, c, b, compab, -compbc, compab); method
41 check(b, a, c, -compab, compac, compbc); method
42 check(b, c, a, compbc, -compac, -compab); method
43 check(c, a, b, -compac, compab, -compbc); method
44 check(c, b, a, -compbc, -compab, -compac); method
48 private void check(Object a, Object b, Object c, method in class:TestComparator
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
GenderInfoTest.java 28 check(Gender.OTHER, Gender.OTHER, Gender.OTHER); method
35 check(g, g, g, g); method
40 check(Gender.OTHER, Gender.MALE, Gender.MALE, Gender.MALE, Gender.MALE); method
41 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.FEMALE); method
42 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.OTHER); method
44 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.FEMALE, Gender.MALE); method
45 check(Gender.OTHER, Gender.FEMALE, Gender.FEMALE, Gender.FEMALE, Gender.FEMALE); method
46 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.FEMALE, Gender.OTHER); method
48 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.OTHER, Gender.MALE); method
49 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.OTHER, Gender.FEMALE) method
50 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.OTHER, Gender.OTHER); method
53 public void check(Gender neutral, Gender mixed, Gender taints, Gender... genders) { method in class:GenderInfoTest
    [all...]
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
default02.pass.cpp 38 void check(int i);
57 check(0);
63 check(0);
78 void check(int i) function
pointer02.pass.cpp 38 void check(int i);
57 check(3);
61 check(0);
64 check(3);
69 check(0);
86 void check(int i) function
  /external/mockito/src/org/mockito/internal/verification/checkers/
AtLeastXNumberOfInvocationsChecker.java 23 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { method in class:AtLeastXNumberOfInvocationsChecker
AtLeastXNumberOfInvocationsInOrderChecker.java 29 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { method in class:AtLeastXNumberOfInvocationsInOrderChecker
NonGreedyNumberOfInvocationsInOrderChecker.java 35 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrderContext context) { method in class:NonGreedyNumberOfInvocationsInOrderChecker
NumberOfInvocationsInOrderChecker.java 34 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrderContext context) { method in class:NumberOfInvocationsInOrderChecker
  /external/opencv3/3rdparty/libpng/
pngwio.c 53 png_size_t check; local
58 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
60 if (check != length)
75 png_uint_32 check; local
82 /* Check if data really is near. If so, use usual code. */
88 check = fwrite(near_data, 1, length, io_ptr);
95 check = 0;
108 check += err;
116 if (check != length)
225 void *png_far_to_near(png_structp png_ptr, png_voidp ptr, int check)
    [all...]
  /external/parameter-framework/upstream/test/xml-generator/
test.py 65 def check(self, reference=None, expectedErrors=0): member in class:Tester
75 # The caller only wants to check the number of errors
107 tester.check(self.nominal_reference)
113 tester.check(self.nominal_reference, expectedErrors=1)
119 tester.check(expectedErrors=1)
128 tester.check(expectedErrors=1)
  /external/proguard/src/proguard/
GPL.java 37 public static void check() method in class:GPL
  /external/snakeyaml/src/test/java/biz/source_code/base64Coder/
Base64CoderTest.java 27 check("Aladdin:open sesame", "QWxhZGRpbjpvcGVuIHNlc2FtZQ==");
28 check("a", "YQ==");
29 check("aa", "YWE=");
30 check("a=", "YT0=");
31 check("", "");
65 private void check(String text, String encoded) throws UnsupportedEncodingException { method in class:Base64CoderTest
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue112/
ParameterisedTypeLoadingTestCase.java 35 check(obj);
47 check(obj);
50 private void check(MyCompositeObject obj) { method in class:ParameterisedTypeLoadingTestCase
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue139/
MergeValueTest.java 37 check("issues/issue139-1.yaml");// merge with unique keys
38 check("issues/issue139-2.yaml");// merge with same key
41 private void check(String name) { method in class:MergeValueTest
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/parser/
ParserImplTest.java 38 private void check(LinkedList<Event> etalonEvents, Parser parser) { method in class:ParserImplTest
66 check(etalonEvents, parser); method
89 check(etalonEvents, parser); method
  /external/v8/test/mjsunit/es6/
array-of.js 11 function check(a) { function
19 check(Array.of());
20 check(Array.of(0));
21 check(Array.of(0, 1, 2));
23 check(f());
149 // Check superficial features of Array.of.
199 // Check that array properties defined are writable, enumerable, configurable
  /external/v8/test/mjsunit/regress/
regress-binop.js 57 this.check = function() {
78 left.check();
80 right.check();
  /external/valgrind/helgrind/tests/
shmem_abits.c 17 #define CHK(a1,a2,a3,a4) check(__LINE__,a1,a2,a3,a4)
18 /* Check that [p, p+len[ has access access.
19 If heap, check that one byte before and after is unaccessible */
20 static void check (int testline, void *p, int len, unsigned char access, int heap) function
30 // Let's not check NULL
38 /* Check the range starting 1 byte before. */
61 to ensure it is really unaddressable when calling check. */
84 /* Basic test for some code : verify 50 bytes of check function code
87 CHK (check, 50, 0xff, 0);
89 /* Check something on the stack *
    [all...]
t2t.c 25 #define check if (ret != 0) printf("error %d at line %d\n", ret, __LINE__) macro
55 check;
60 check;
69 check;
74 check;
83 check;
89 check;
98 check;
103 check;
  /libcore/ojluni/src/main/java/java/security/
SecureClassLoader.java 191 check(); method
219 * Check to make sure the class loader has been initialized.
221 private void check() { method in class:SecureClassLoader

Completed in 601 milliseconds

<<11121314151617181920>>