Searched refs:two (Results 1 - 25 of 248) sorted by relevance

12345678910

/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp5 two, enumerator in enum:E
17 case two ... two + 1:
H A Dcxx0x-initializer-references.cpp4 struct two { char c[2]; }; struct
58 two f(const B&);
64 two g(const B&);
66 static_assert(sizeof(g({1})) == sizeof(two), "bad overload resolution");
69 two h(const A&);
71 static_assert(sizeof(h({1, 2})) == sizeof(two), "bad overload resolution");
/external/mesa3d/src/glsl/glcpp/tests/
H A D054-if-with-macros.c2 #define two 2 macro
5 #if five < two
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
H A D057-empty-arguments.c5 #define two(x,y) success macro
6 two(,)
H A D039-func-arg-obj-macro-with-comma.c2 #define bar two,words
H A D020-define-func-2-arg-multi.c1 #define foo(x,y) x,two fish,red fish,y
/external/clang/test/Preprocessor/
H A Dmacro_fn.c6 #define two(x, y) 0 macro
19 two() /* expected-error {{too few arguments provided to function-like macro invocation}} */
20 two(a) /* expected-error {{too few arguments provided to function-like macro invocation}} */
21 two(a,b)
22 two(a, ) /* expected-warning {{empty macro arguments are a C99 feature}} */
23 two(a,b,c) /* expected-error {{too many arguments provided to function-like macro invocation}} */
24 two(
29 two(,) /* expected-warning 2 {{empty macro arguments are a C99 feature}} */
/external/valgrind/main/none/tests/amd64/
H A Dssse3_misaligned.stderr.exp3 two
/external/valgrind/main/none/tests/x86/
H A Dssse3_misaligned.stderr.exp3 two
/external/elfutils/src/
H A Dsectionhash.c39 scnhead_compare (struct scnhead *one, struct scnhead *two) argument
41 int result = strcmp (one->name, two->name);
45 result = one->type - two->type;
50 - SH_FLAGS_IMPORTANT (two->flags));
55 result = one->entsize - two->entsize;
60 ? (two->grp_signature == NULL ? 0 : -1)
61 : (two->grp_signature == NULL
63 two->grp_signature)));
66 result = one->kind - two->kind;
/external/clang/test/PCH/
H A Dchain-decls.c19 struct two y;
20 two();
/external/clang/test/CodeGenCXX/
H A Ddebug-info-class.cpp5 int two; member in struct:A
/external/clang/test/PCH/Inputs/
H A Dchain-decls1.h4 void two();
H A Dchain-decls2.h3 struct two {}; struct
/external/fdlibm/
H A Ds_tanh.c41 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/clang/test/SemaTemplate/
H A Dresolve-single-template-id.cpp8 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}}
69 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 Dmissing-field-initializers.c31 struct Two two; member in union:Three::__anon4560
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 Dstruct-cast.c5 int two; member in struct:S
/external/srec/config/en.us/tcp/
H A Dchange_sample_rate2.tcp12 recognize_nist dallas/0000/S072.nwf 0 0 oh eight four zero nine two five one eight five
13 recognize_nist dallas/0000/S074.nwf 0 0 eight six one oh five six six two six two
14 recognize_nist dallas/0000/S075.nwf 0 0 zero seven six five nine oh zero two five two
15 recognize_nist dallas/0000/S076.nwf 0 0 five zero two seven four nine three three zero zero
16 recognize_nist dallas/0000/S077.nwf 0 0 six nine five zero two eight seven seven three six
19 recognize_nist dallas/0000/S083.nwf 0 0 zero nine nine five seven two oh one zero six
20 recognize_nist dallas/0000/S086.nwf 0 0 six eight seven two one oh eight five zero seven
21 recognize_nist dallas/0000/S088.nwf 0 0 four two zer
[all...]
/external/clang/test/CXX/over/over.built/
H A Dp1.cpp4 enum E2 { two }; enumerator in enum:E2
/external/compiler-rt/lib/x86_64/
H A Dfloatundisf.S13 two: .single 2.0 label
30 mulss REL_ADDR(two), %xmm0
/external/v8/test/mjsunit/
H A Dkeyed-call-generic.js74 function two () { return 2; } function
76 var fixed_array = [zero, one, two];
78 var dict_array = [ zero, one, two ];
81 var fast_prop = { zero: zero, one: one, two: two };
83 var normal_prop = { zero: zero, one: one, two: two };
88 var first3str = ['zero', 'one', 'two'];
/external/clang/bindings/python/tests/cindex/
H A Dtest_location.py8 baseInput="int one;\nint two;\n"
18 two = get_cursor(tu, 'two')
21 assert two is not None
24 assert_location(two.location,line=2,column=5,offset=13)
29 two = get_cursor(tu, 'two')
32 assert two is not None
35 assert_location(two.location,line=3,column=5,offset=14)
40 two
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheManualTest.java38 Object two = new Object();
48 assertFalse(cache.asMap().containsValue(two));
50 assertNull(cache.getIfPresent(two));
56 assertNull(cache.asMap().get(two));
57 assertFalse(cache.asMap().containsKey(two));
60 cache.put(one, two);
62 assertSame(two, cache.getIfPresent(one));
68 assertSame(two, cache.asMap().get(one));
70 assertTrue(cache.asMap().containsValue(two));
72 assertNull(cache.getIfPresent(two));
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DConcurrentModTest.java37 Double two = new Double(2.0);
41 al.add(two);
67 Double two = new Double(2.0);
71 al.add(two);
84 sub.set(1, two);
97 Double two = new Double(2.0);
101 al.add(two);
114 sub.add(1, two);
127 Double two = new Double(2.0);
131 al.add(two);
[all...]

Completed in 3059 milliseconds

12345678910