HomeSort by relevance Sort by last modified time
    Searched defs:two (Results 26 - 50 of 199) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/tools/clang/plugins/tests/
inline_ctor.cpp 23 InlineCtorsArentOKInHeader two; local
virtual_methods.cpp 35 ConcreteVirtualMethodsInImplementation two; local
  /external/chromium_org/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/chromium_org/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/clang/test/CodeGenCXX/
debug-info-class.cpp 18 int two; member in struct:A
cp-blocks-linetables.cpp 17 zero, one, two, three, four enumerator in enum:numbers
29 __block enum numbers y = two;
  /external/clang/test/Preprocessor/
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/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/icu4c/test/intltest/
listformattertest.h 44 UnicodeString two,
51 UnicodeString two,
60 const UnicodeString two; member in class:ListFormatterTest
  /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'];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
ErrorCodeEnum.pass.cpp 21 zero, one, two enumerator in enum:testing
40 std::error_code ec(two);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
ErrorCodeEnum.pass.cpp 21 zero, one, two enumerator in enum:testing
41 ec = two;
  /ndk/tests/device/test-stlport_shared-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
28 two:
29 printf ("two!\n");
  /ndk/tests/device/test-stlport_static-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
28 two:
29 printf ("two!\n");
  /art/test/050-sync-test/src/
Main.java 48 CpuThread one, two; local
51 two = new CpuThread(2);
62 two.start();
68 two.join();
  /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/chromium_org/v8/test/webkit/
comparison-operators-greater.js 144 var two = 2; variable
191 shouldBeFalse("one >= two");
193 shouldBeFalse("one > two");
200 shouldBeFalse("if (one >= two || zero) true; else false");
202 shouldBeFalse("if (two < one || zero) true; else false");
209 shouldBeFalse("p15 >= two");
211 shouldBeFalse("p15 > two");
218 shouldBeFalse("if (p15 >= two || 0) true; else false");
220 shouldBeFalse("if (two < p15 || 0) true; else false");
comparison-operators-less.js 142 var two = 2; variable
189 shouldBeFalse("two <= one");
191 shouldBeFalse("two < one");
198 shouldBeFalse("if (two <= one || zero) true; else false");
200 shouldBeFalse("if (two < one || zero) true; else false");
207 shouldBeFalse("two <= p15");
209 shouldBeFalse("two < p15");
216 shouldBeFalse("if (two <= p15 || 0) true; else false");
218 shouldBeFalse("if (two < p15 || 0) true; else false");
  /external/clang/test/CXX/special/class.temporary/
p1.cpp 45 typedef char two[2]; typedef in namespace:test2
48 two &meta(...);
  /external/clang/test/Sema/
no-documentation-warn-tagdecl-specifier.c 70 enum e5 { two }; enumerator in enum:e5
  /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')}}
  /external/guava/guava-tests/test/com/google/common/cache/
CacheStatsTest.java 62 CacheStats two = new CacheStats(53, 47, 43, 41, 37, 31); local
64 CacheStats diff = two.minus(one);
78 assertEquals(new CacheStats(0, 0, 0, 0, 0, 0), one.minus(two));
83 CacheStats two = new CacheStats(53, 47, 41, 39, 37, 35); local
85 CacheStats sum = two.plus(one);
99 assertEquals(sum, one.plus(two));

Completed in 594 milliseconds

12 3 4 5 6 7 8