/external/mesa3d/src/glsl/glcpp/tests/ |
H A D | 100-macro-with-colon.c | 2 #define two 2 macro 5 case one + two:
|
H A D | 054-if-with-macros.c | 2 #define two 2 macro 5 #if five < two 10 #if three >= two 15 #if two + three <= five 20 #if five - two == three
|
H A D | 057-empty-arguments.c | 5 #define two(x,y) success macro 6 two(,)
|
H A D | 039-func-arg-obj-macro-with-comma.c | 2 #define bar two,words
|
H A D | 020-define-func-2-arg-multi.c | 1 #define foo(x,y) x,two fish,red fish,y
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-crbug-580934.js | 13 let two = () => { 17 assertEquals("example.com", two());
|
/external/clang/test/SemaCXX/ |
H A D | gnu-case-ranges.cpp | 6 two, enumerator in enum:E 18 case two ... two + 1:
|
/external/clang/test/CodeGenCXX/ |
H A D | powerpc-byval.cpp | 8 void byval(S one, S two) { argument 9 one = two; 12 // CHECK: define void @_Z5byval1SS_(%struct.S* %one, %struct.S* %two)
|
H A D | ms-integer-static-data-members-exported.cpp | 3 enum Enum { zero, one, two }; enumerator in enum:Enum 11 static const Enum y = two;
|
/external/clang/test/Preprocessor/ |
H A D | macro_fn.c | 6 #define two(x, y) 0 /* expected-note 4 {{defined here}} */ macro 20 two() /* expected-error {{too few arguments provided to function-like macro invocation}} */ 21 two(a) /* expected-error {{too few arguments provided to function-like macro invocation}} */ 22 two(a,b) 23 two(a, ) /* expected-warning {{empty macro arguments are a C99 feature}} */ 24 two(a,b,c) /* expected-error {{too many arguments provided to function-like macro invocation}} */ 25 two( 30 two(,) /* expected-warning 2 {{empty macro arguments are a C99 feature}} */
|
/external/valgrind/none/tests/amd64/ |
H A D | ssse3_misaligned.stderr.exp | 3 two
|
/external/valgrind/none/tests/x86/ |
H A D | ssse3_misaligned.stderr.exp | 3 two
|
/external/toybox/tests/ |
H A D | cp.test | 12 testing "cp -missing source [fail]" "cp missing two 2>/dev/null || echo yes" \ 14 testing "cp file->file" "cp random two && cmp random two && echo yes" \ 16 rm two 18 mkdir two 19 testing "cp file->dir" "cp random two && cmp random two/random && echo yes" \ 21 rm two/random 23 "cp random two/random && cmp random two/rando [all...] |
H A D | rmdir.test | 14 mkdir one two 15 testing "rmdir one two" \ 16 "rmdir one two 2> /dev/null && [ ! -d one ] && [ ! -d two ] && echo yes" \ 19 mkdir one two three 20 testing "rmdir one missing two file three" \ 21 "rmdir one missing two walrus three 2> /dev/null || [ ! -d three ] && echo yes" \ 37 mkdir -p temp/one/two/three 39 "rmdir -p temp/one/two/three 2>/dev/null || [ -d temp ] && [ ! -e temp/one ] && echo yes" \ 44 mkdir -p one/two/thre [all...] |
/external/elfutils/src/ |
H A D | sectionhash.c | 31 scnhead_compare (struct scnhead *one, struct scnhead *two) argument 33 int result = strcmp (one->name, two->name); 37 result = one->type - two->type; 42 - SH_FLAGS_IMPORTANT (two->flags)); 47 result = one->entsize - two->entsize; 52 ? (two->grp_signature == NULL ? 0 : -1) 53 : (two->grp_signature == NULL 55 two->grp_signature))); 58 result = one->kind - two->kind;
|
/external/clang/test/PCH/ |
H A D | chain-decls.c | 21 struct two y; 22 two();
|
/external/clang/test/PCH/Inputs/ |
H A D | chain-decls1.h | 4 void two();
|
H A D | chain-decls2.h | 3 struct two {}; struct
|
/external/fdlibm/ |
H A D | s_tanh.c | 41 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable 43 static double one=1.0, two=2.0, tiny = 1.0e-300; variable 71 t = ieee_expm1(two*ieee_fabs(x)); 72 z = one - two/(t+two); 74 t = ieee_expm1(-two*ieee_fabs(x)); 75 z= -t/(t+two);
|
/external/icu/icu4c/source/test/intltest/ |
H A D | listformattertest.cpp | 22 one("Alice", -1, US_INV), two("Bob", -1, US_INV), 37 void ListFormatterTest::CheckFourCases(const char* locale_string, UnicodeString one, UnicodeString two, argument 48 UnicodeString input2[] = {one, two}; 51 UnicodeString input3[] = {one, two, three}; 54 UnicodeString input4[] = {one, two, three, four}; 58 UBool ListFormatterTest::RecordFourCases(const Locale& locale, UnicodeString one, UnicodeString two, argument 68 UnicodeString input2[] = {one, two}; 70 UnicodeString input3[] = {one, two, three}; 72 UnicodeString input4[] = {one, two, three, four}; 84 one + ", " + two, [all...] |
/external/clang/test/SemaTemplate/ |
H A D | resolve-single-template-id.cpp | 8 void two() { } // expected-note 4{{possible target for call}} function 9 void two(int) { } // expected-note 4{{possible target for call}} function 32 two; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}} 42 *two; //expected-error {{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}} expected-error {{indirection requires pointer operand}} 75 two < two; //expected-error 2 {{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}} expected-error {{invalid operands to binary expression ('void' and 'void')}}
|
/external/clang/test/Sema/ |
H A D | inline-asm-validate-aarch64.c | 45 void read_write_modifier0(int one, int two) { argument 46 long wide_two = two; 51 void read_write_modifier1(int one, int two) { argument 52 long wide_two = two;
|
H A D | missing-field-initializers.c | 31 struct Two two; member in union:Three::__anon2786 39 { .two = { 1.0f, 2.0f, 3.0f } } 45 { { .two = { 1.0f, 2.0f, 3.0f } } }, 46 { { .two = { 1.0f, 2.0f } } } // expected-warning {{missing field 'e' initializer}}
|
H A D | struct-cast.c | 6 int two; member in struct:S
|
/external/llvm/test/MC/ELF/ |
H A D | dot-symbol-assignment.s | 7 two: label
|