HomeSort by relevance Sort by last modified time
    Searched defs:two (Results 1 - 25 of 149) 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
  /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
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
jit.cpp 10 // CHECK: in two
21 int two() function
28 return two();
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.limits/limits/denorm.style/
check_values.pass.cpp 17 struct two {one _[2];}; struct
20 two test(int);
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.limits/limits/round.style/
check_values.pass.cpp 17 struct two {one _[2];}; struct
20 two test(int);
  /external/clang/test/Sema/
struct-cast.c 6 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.match/over.match.funcs/over.match.oper/
p3.cpp 10 enum E2 { two }; enumerator in enum:E2
  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 6 two, enumerator in enum:E
18 case two ... two + 1:
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanh.c 43 static const double one = 1.0, two = 2.0, tiny = 1.0e-300, huge = 1.0e300; variable
66 t = expm1(two*fabs(x));
67 z = one - two/(t+two);
69 t = expm1(-two*fabs(x));
70 z= -t/(t+two);
s_tanhf.c 22 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
44 t = expm1f(two*fabsf(x));
45 z = one - two/(t+two);
47 t = expm1f(-two*fabsf(x));
48 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/clang/test/CodeGenCXX/
debug-info-class.cpp 18 int two; member in struct:A
  /external/clang/test/Preprocessor/
macro_fn.c 6 #define two(x, y) 0 /* expected-note 4 {{defined here}} */ 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/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 45 UnicodeString two,
54 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");
  /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));
  /ndk/sources/cxx-stl/llvm-libc++/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++/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");

Completed in 434 milliseconds

1 2 3 4 5 6