Searched refs:check (Results 26 - 50 of 1226) sorted by relevance

1234567891011>>

/external/clang/test/Preprocessor/
H A Dinit.c1 /PtrDiffType / RUN: %clang_cc1 -E -dM -x assembler-with-cpp < /dev/null | FileCheck -check-prefix ASM %s
6 // RUN: %clang_cc1 -fblocks -E -dM < /dev/null | FileCheck -check-prefix BLOCKS %s
12 // RUN: %clang_cc1 -x c++ -std=c++1z -E -dM < /dev/null | FileCheck -check-prefix CXX1Z %s
22 // RUN: %clang_cc1 -x c++ -std=c++1y -E -dM < /dev/null | FileCheck -check-prefix CXX1Y %s
32 // RUN: %clang_cc1 -x c++ -std=c++11 -E -dM < /dev/null | FileCheck -check-prefix CXX11 %s
42 // RUN: %clang_cc1 -x c++ -std=c++98 -E -dM < /dev/null | FileCheck -check-prefix CXX98 %s
51 // RUN: %clang_cc1 -fdeprecated-macro -E -dM < /dev/null | FileCheck -check-prefix DEPRECATED %s
56 // RUN: %clang_cc1 -std=c99 -E -dM < /dev/null | FileCheck -check-prefix C99 %s
62 // RUN: %clang_cc1 -std=c11 -E -dM < /dev/null | FileCheck -check-prefix C11 %s
70 // RUN: %clang_cc1 -E -dM < /dev/null | FileCheck -check
[all...]
/external/compiler-rt/test/BlocksRuntime/
H A Dnullblockisa.c22 void check(void (^b)(void)) { function
39 check(^{ printf("%d\n", ++i); });
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.h10 void check(UErrorCode& status, const char* msg);
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.h10 void check(UErrorCode& status, const char* msg);
/external/icu/icu4c/source/samples/numfmt/
H A Dutil.h11 void check(UErrorCode& status, const char* msg);
/external/icu/icu4c/source/samples/translit/
H A Dutil.h10 void check(UErrorCode& status, const char* msg);
/external/v8/test/mjsunit/es6/regress/
H A Dregress-cr372788.js40 (function check() {
42 // Delay check until all handlers have run.
43 if (y < 3) check(); else assertEquals(6, x);
/external/icu/icu4c/source/tools/
H A DMakefile.in24 check check-local check-recursive build-local check-exhaustive
35 check: all check-recursive
37 check-exhaustive: check
40 all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
76 check
[all...]
/external/lldb/test/functionalities/command_history/
H A DTestCommandHistory.py17 self.runCmd('breakpoint list', check=False, inHistory=True) #0
18 self.runCmd('register read', check=False, inHistory=True) #1
19 self.runCmd('apropos hello', check=False, inHistory=True) #2
20 self.runCmd('memory write', check=False, inHistory=True) #3
21 self.runCmd('log list', check=False, inHistory=True) #4
22 self.runCmd('disassemble', check=False, inHistory=True) #5
23 self.runCmd('expression 1', check=False, inHistory=True) #6
24 self.runCmd('type summary list -w default', check=False, inHistory=True) #7
25 self.runCmd('version', check=False, inHistory=True) #8
26 self.runCmd('frame select 1', check
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-disabling/
H A DTestDataFormatterDisabling.py50 self.runCmd('type category enable default', check=False)
51 self.runCmd('type category enable system', check=False)
52 self.runCmd('type category enable VectorTypes', check=False)
53 self.runCmd('type category enable libcxx', check=False)
54 self.runCmd('type category enable gnu-libstdc++', check=False)
55 self.runCmd('type category enable CoreGraphics', check=False)
56 self.runCmd('type category enable CoreServices', check=False)
57 self.runCmd('type category enable AppKit', check=False)
58 self.runCmd('type category enable CoreFoundation', check=False)
59 self.runCmd('type category enable objc', check
[all...]
/external/lldb/test/functionalities/data-formatter/rdar-10887661/
H A DTestRdar10887661.py52 self.runCmd('type format clear', check=False)
53 self.runCmd('type summary clear', check=False)
54 self.runCmd('type filter clear', check=False)
55 self.runCmd('type synth clear', check=False)
56 self.runCmd("settings set target.max-children-count 256", check=False)
65 # check that the synthetic children work, so we know we are doing the right thing
71 # check that capping works
72 self.runCmd("settings set target.max-children-count 2", check=False)
83 self.runCmd("settings set target.max-children-count 256", check=False)
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
H A Dtypes.pass.cpp35 template <typename C> static yes check( typename C::argument_type * );
36 template <typename C> static no check(...);
38 enum { value = sizeof(check<T>(0)) == sizeof(yes) };
47 template <typename C> static yes check( typename C::first_argument_type * );
48 template <typename C> static no check(...);
50 enum { value = sizeof(check<T>(0)) == sizeof(yes) };
60 template <typename C> static yes check( typename C::second_argument_type *);
61 template <typename C> static no check(...);
63 enum { value = sizeof(check<T>(0)) == sizeof(yes) };
/external/jsmn/
H A Djsmn_test.c15 #define check(cond) do { if (!(cond)) fail(); } while (0) macro
53 check(r >= 0);
54 check(t[0].type == JSMN_OBJECT);
55 check(t[0].start == 0 && t[0].end == 2);
60 check(r >= 0);
61 check(t[0].type == JSMN_ARRAY);
62 check(t[0].start == 0 && t[0].end == 2);
67 check(r >= 0);
68 check(t[0].type == JSMN_OBJECT && t[0].start == 0 && t[0].end == 8);
69 check(
[all...]
/external/icu/icu4c/source/samples/
H A DMakefile.in29 check check-recursive check-local check-exhaustive
43 check-samples: check-samples-recursive
45 # Note (srl 4/15/2002) do NOT recursively check samples for 2.1, look into testing them in the future.
46 #check: all check-recursive check
[all...]
/external/skia/tests/
H A DCodexTest.cpp30 static void check(skiatest::Reporter* r, function
90 check(r, "mandrill.wbmp", SkISize::Make(512, 512), false);
93 check(r, "randPixels.bmp", SkISize::Make(8, 8), false);
98 check(r, "color_wheel.ico", SkISize::Make(128, 128), false);
100 check(r, "google_chrome.ico", SkISize::Make(256, 256), false);
103 check(r, "box.gif", SkISize::Make(200, 55), false);
104 check(r, "color_wheel.gif", SkISize::Make(128, 128), false);
105 check(r, "randPixels.gif", SkISize::Make(8, 8), false);
108 check(r, "CMYK.jpg", SkISize::Make(642, 516), true);
109 check(
[all...]
/external/clang/test/CodeGen/
H A D2007-05-29-UnionCopy.c16 void check(union U *u, union U *v) { function
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssertionFailedException.java11 package org.eclipse.wb.internal.core.utils.check;
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Ddefault02.pass.cpp38 void check(int i);
57 check(0);
63 check(0);
78 void check(int i) function
H A Dpointer02.pass.cpp38 void check(int i);
57 check(1);
61 check(0);
64 check(1);
69 check(0);
86 void check(int i) function
/external/llvm/test/MC/Sparc/
H A Dsparc-directive-xword.s1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=SPARC32
2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARC64
/external/icu/icu4c/source/test/
H A DMakefile.in36 check check-recursive check-local xcheck xcheck-recursive xcheck-local \
37 check-exhaustive check-exhaustive-recursive
57 check: everything check-recursive check-local
58 check-recursive: all-recursive
62 check
[all...]
/external/llvm/test/MC/ARM/
H A Ddirective-arch_extension-sec.s2 @ RUN: | FileCheck %s -check-prefix CHECK-ARMv6 -check-prefix CHECK-V6
4 @ RUN: | FileCheck %s -check-prefix CHECK-ARMv7 -check-prefix CHECK-V7
6 @ RUN: | FileCheck %s -check-prefix CHECK-THUMBv6 -check-prefix CHECK-V6
8 @ RUN: | FileCheck %s -check-prefix CHECK-THUMBv7 -check-prefix CHECK-V7
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dpointer02.pass.cpp38 void check(int i);
57 check(3);
61 check(0);
64 check(3);
69 check(0);
86 void check(int i) function
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_analyze.cpp31 #define check(x) do {if(!(x)) return false;} while(0) macro
51 check(!cf_stack.empty());
53 check(program.insns[v]->opcode == SM4_OPCODE_LOOP);
65 check(!cf_stack.empty());
68 check(program.insns[v]->opcode == SM4_OPCODE_IF);
70 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
77 check(!cf_stack.empty());
80 check(program.insns[v]->opcode == SM4_OPCODE_IF || program.insns[v]->opcode == SM4_OPCODE_ELSE);
82 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
89 check(cf_stac
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DTestComparator.java33 // check symmetry
38 // check transitivity
39 check(a, b, c, compab, compbc, compac);
40 check(a, c, b, compab, -compbc, compab);
41 check(b, a, c, -compab, compac, compbc);
42 check(b, c, a, compbc, -compac, -compab);
43 check(c, a, b, -compac, compab, -compbc);
44 check(c, b, a, -compbc, -compab, -compac);
48 private void check(Object a, Object b, Object c, method in class:TestComparator

Completed in 642 milliseconds

1234567891011>>