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

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D100-macro-with-colon.c2 #define two 2 macro
5 case one + two:
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/mesa3d/src/glsl/glcpp/tests/
H A D100-macro-with-colon.c2 #define two 2 macro
5 case one + two:
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
/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp6 two, enumerator in enum:E
18 case two ... two + 1:
/external/chromium_org/tools/gn/tutorial/
H A Dhello.cc14 void Hello(const char* one, const char* two) { argument
15 printf("Hello, %s and %s.\n", one, two);
H A Dhello.h11 void Hello(const char* one, const char* two);
/external/clang/test/Preprocessor/
H A Dmacro_fn.c6 #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/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/0.153/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.c21 struct two y;
22 two();
/external/clang/test/PCH/Inputs/
H A Dchain-decls1.h4 void two();
/external/llvm/test/MC/ELF/
H A Ddot-symbol-assignment.s7 two: label
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticParameterization_Test.cpp34 for (size_t two = 0; two < quadsCount; ++two) {
36 if (!point_on_parameterized_curve(*quads[one], (*quads[two])[inner])) {
38 __FUNCTION__, index, one, two, inner);
41 if (!implicit_matches(*quads[one], *quads[two])) {
43 index, one, two);
/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/skia/experimental/Intersection/
H A DQuadraticParameterization_Test.cpp34 for (size_t two = 0; two < quadsCount; ++two) {
36 if (!point_on_parameterized_curve(*quads[one], (*quads[two])[inner])) {
38 __FUNCTION__, index, one, two, inner);
41 if (!implicit_matches(*quads[one], *quads[two])) {
43 index, one, two);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dlistformattertest.cpp22 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/icu/icu4c/source/test/intltest/
H A Dlistformattertest.cpp22 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 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}}
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')}}

Completed in 661 milliseconds

1234567891011>>