HomeSort by relevance Sort by last modified time
    Searched refs:two (Results 1 - 25 of 526) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 5 two, enumerator in enum:E
17 case two ... two + 1:
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
jit.cpp 10 // CHECK: in two
21 int two() function
28 return two();
  /external/mesa3d/src/glsl/glcpp/tests/
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
057-empty-arguments.c 5 #define two(x,y) success macro
6 two(,)
039-func-arg-obj-macro-with-comma.c 2 #define bar two,words
020-define-func-2-arg-multi.c 1 #define foo(x,y) x,two fish,red fish,y
  /external/clang/test/Preprocessor/
macro_fn.c 6 #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/
ssse3_misaligned.stderr.exp 3 two
  /external/valgrind/main/none/tests/x86/
ssse3_misaligned.stderr.exp 3 two
  /external/elfutils/src/
sectionhash.c 39 scnhead_compare (struct scnhead *one, struct scnhead *two)
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/
chain-decls.c 19 struct two y;
20 two();
  /external/webkit/LayoutTests/fast/encoding/resources/
yentestexternal.js 3 document.write("two backslashes external: " + "\\" + "<br>");
  /external/clang/test/CodeGenCXX/
debug-info-class.cpp 5 int two; member in struct:A
  /external/clang/test/PCH/Inputs/
chain-decls1.h 4 void two();
chain-decls2.h 3 struct two {}; struct
  /external/fdlibm/
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);
  /bionic/libm/src/
s_tanh.c 44 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
67 t = expm1(two*fabs(x));
68 z = one - two/(t+two);
70 t = expm1(-two*fabs(x));
71 z= -t/(t+two);
s_tanhf.c 23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
45 t = expm1f(two*fabsf(x));
46 z = one - two/(t+two);
48 t = expm1f(-two*fabsf(x));
49 z= -t/(t+two);
  /external/clang/test/SemaTemplate/
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}}
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')}}
  /dalvik/tests/068-classloader/src-ex/
DoubledImplement.java 15 public void two() { method in class:DoubledImplement
16 System.out.println("DoubledImplement two");
DoubledImplement2.java 29 public void two() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 two");
  /external/clang/test/Sema/
missing-field-initializers.c 26 struct Two { float c; float d; float e; };
31 struct Two two; member in union:Three::__anon6112
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}}
struct-cast.c 5 int two; member in struct:S
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.h 28 : one(1), two(2), three(3), four(4)
34 two = pTwo;
42 two = -2;
48 unsigned int two; member in struct:mcldtest::LinearAllocatorTest::Data
RTLinearAllocatorTest.h 41 : one(1), two(2), three(3), four(4)
47 two = pTwo;
55 two = -2;
61 unsigned int two; member in struct:mcldtest::RTLinearAllocatorTest::Data

Completed in 1869 milliseconds

1 2 3 4 5 6 7 8 91011>>