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

1 2 3 4 5 6

  /external/compiler-rt/lib/x86_64/
floatundisf.S 13 two: .single 2.0 label
30 mulss REL_ADDR(two), %xmm0
  /frameworks/compile/libbcc/runtime/lib/x86_64/
floatundisf.S 13 two: .single 2.0 label
30 mulss REL_ADDR(two), %xmm0
  /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/PCH/Inputs/
chain-decls2.h 3 struct two {}; struct
  /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(,)
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
jit.cpp 10 // CHECK: in two
21 int two() function
28 return two();
  /external/clang/test/Sema/
struct-cast.c 5 int two; member in struct:S
  /external/chromium/chrome/browser/ui/views/
dom_view_browsertest.cc 84 Widget* two = CreatePopupWindow(); local
85 two->GetRootView()->AddChildView(dom_view);
86 two->Show();
90 two->Hide();
  /external/clang/test/CXX/over/over.built/
p1.cpp 4 enum E2 { two }; enumerator in enum:E2
  /external/clang/test/CodeGenCXX/
debug-info-class.cpp 5 int two; member in struct:A
  /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/clang/test/SemaCXX/
gnu-case-ranges.cpp 5 two, enumerator in enum:E
17 case two ... two + 1:
  /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);
  /dalvik/libdex/
DexUtf.h 42 unsigned int one, two, three; local
46 /* two- or three-byte encoding */
47 two = *(*pUtf8Ptr)++;
52 ((two & 0x3f) << 6) |
55 /* two-byte encoding */
57 (two & 0x3f);
65 /* Compare two '\0'-terminated modified UTF-8 strings, using Unicode
80 * the consumed character. This will consume two encoded UTF-16 code
  /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);
  /external/v8/test/mjsunit/compiler/
regress-stacktrace-methods.js 34 Svin.prototype.two = function() { /* xxxxxxx */ o.three(); }
36 Hest.prototype.one = function(x) { x.two(); }
58 var p2 = stack.indexOf("at Svin.two");
  /external/v8/test/mjsunit/
smi-negative-zero.js 33 var two = 2; variable
50 assertEquals(-Infinity, one / (minus_four % two), "foo1");
52 assertEquals(Infinity, one / (four % two), "foo3");
65 assertEquals(-Infinity, one / (-4 % two), "baz3");
67 assertEquals(Infinity, one / (4 % two), "baz5");
keyed-call-generic.js 74 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/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/operator/
strictEquality.js 57 var anObject = { one:1 , two:2 };
62 testcases[count++] = new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ",
63 false, (anObject === { one:1 , two:2 }));
65 testcases[count++] = new TestCase( SECTION, "({ one:1 , two:2 } === anObject) ",
66 false, ({ one:1 , two:2 } === anObject));
  /dalvik/tests/050-sync-test/src/
Main.java 34 CpuThread one, two; local
37 two = new CpuThread(2);
48 two.start();
54 two.join();
  /external/clang/test/CXX/special/class.temporary/
p1.cpp 45 typedef char two[2]; typedef in namespace:test2
48 two &meta(...);
  /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')}}

Completed in 747 milliseconds

1 2 3 4 5 6