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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/PCH/Inputs/
chain-decls1.h 3 struct one {}; struct
  /external/v8/test/mjsunit/regress/
regress-406.js 48 function one() { return 1; } function
50 assertFalse(typeof(0) == "zero" && one() < 0);
51 assertFalse(typeof(0) == "zero" && one() > 0);
52 assertFalse(typeof(0) != "zero" && one() < 0);
53 assertTrue(typeof(0) != "zero" && one() > 0);
55 assertFalse(typeof(0) == "zero" || one() < 0);
56 assertTrue(typeof(0) == "zero" || one() > 0);
57 assertTrue(typeof(0) != "zero" || one() < 0);
58 assertTrue(typeof(0) != "zero" || one() > 0);
61 assertFalse(one() < 0 && typeof(0) == "zero")
    [all...]
regress-996542.js 29 var one = 1; variable
33 assertEquals(-Infinity, one / (zero / minus_one));
35 assertEquals(Infinity, one / (zero / one));
38 assertEquals(-Infinity, one / (minus_one % one))
40 assertEquals(Infinity, one / (one % one));
  /external/v8/test/mjsunit/compiler/
recursive-deopt.js 34 if (n == 0) return 1 << one;
35 return f(n - 1) << one;
39 var one = 1; variable
44 var one = { valueOf: function() { return 1; } };
regress-stacktrace.js 31 function one() { function
40 one();
45 var p1 = stack.indexOf("at one");
  /dalvik/tests/068-classloader/src/
DoubledImplement.java 15 public void one() { method in class:DoubledImplement
16 System.out.println("DoubledImplement one");
DoubledImplement2.java 29 public void one() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 one");
  /external/clang/test/CodeGen/
2004-01-01-UnknownInitSize.c 7 struct one struct
13 struct one hobbit = {5, {1, 2, 3}};
  /external/clang/test/CodeGenCXX/
copy-in-cplus-object.cpp 19 TestObject one; local
20 int (^V)() = ^{ return one.version(); };
debug-info-class.cpp 3 int one; member in struct:A
  /external/mesa3d/src/glsl/glcpp/tests/
054-if-with-macros.c 1 #define one 1 macro
25 #if one > three
30 #if one != five
057-empty-arguments.c 3 #define one(x) success macro
4 one()
  /external/clang/test/Sema/
struct-cast.c 4 int one; member in struct:S
  /external/fdlibm/
e_acosh.c 36 one = 1.0, variable
60 return __ieee754_log(2.0*x-one/(x+ieee_sqrt(t-one)));
62 t = x-one;
s_modf.c 27 static const double one = 1.0; variable
29 static double one = 1.0; variable
63 *iptr = x*one;
  /external/valgrind/main/memcheck/tests/darwin/
scalar.c 491 size_t one = 1; local
496 SY(__NR_stat_extended, 0, 0, 0, &one); FAIL;
502 SY(__NR_lstat_extended, 0, 0, 0, &one); FAIL;
508 SY(__NR_fstat_extended, 0, 0, 0, &one); FAIL;
605 size_t one = 1; local
610 SY(__NR_stat64_extended, 0, 0, 0, &one); FAIL;
616 SY(__NR_lstat64_extended, 0, 0, 0, &one); FAIL;
622 SY(__NR_fstat64_extended, 0, 0, 0, &one); FAIL;
1126 // use the 6th one!
    [all...]
  /bionic/libm/src/
e_acosh.c 37 one = 1.0, variable
58 return __ieee754_log(2.0*x-one/(x+sqrt(t-one)));
60 t = x-one;
e_acoshf.c 24 one = 1.0, variable
44 return __ieee754_logf((float)2.0*x-one/(x+__ieee754_sqrtf(t-one)));
46 t = x-one;
s_modff.c 23 static const float one = 1.0; variable
51 *iptr = x*one;
e_atanh.c 40 static const double one = 1.0, huge = 1e300; variable
59 t = 0.5*log1p(t+t*x/(one-x));
61 t = 0.5*log1p((x+x)/(one-x));
e_atanhf.c 23 static const float one = 1.0, huge = 1e30; variable
42 t = (float)0.5*log1pf(t+t*x/(one-x));
44 t = (float)0.5*log1pf((x+x)/(one-x));
  /external/chromium/chrome/browser/ui/views/
dom_view_browsertest.cc 28 Widget* one = CreatePopupWindow(); local
31 one->GetRootView()->AddChildView(dom_view);
36 one->Show();
40 one->Hide();
46 Widget* one = CreatePopupWindow(); local
49 one->GetRootView()->AddChildView(dom_view);
54 one->Show();
58 one->GetRootView()->RemoveChildView(dom_view);
62 one->Hide();
68 Widget* one = CreatePopupWindow() local
    [all...]
  /external/clang/test/CXX/over/over.built/
p1.cpp 3 enum E1 { one }; enumerator in enum:E1
  /external/clang/test/Preprocessor/
macro_fn.c 5 #define one(x) 0 macro
14 one() /* ok */
15 one(a)
16 one(a,) /* expected-error {{too many arguments provided to function-like macro invocation}} */
17 one(a, b) /* expected-error {{too many arguments provided to function-like macro invocation}} */
  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 4 one, enumerator in enum:E
15 case one:

Completed in 1193 milliseconds

1 2 3 4 5 6 7 8 91011