Searched defs:one (Results 1 - 25 of 342) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-406.js48 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() <
[all...]
H A Dregress-368243.js17 "one" : { x : 1},
H A Dregress-996542.js29 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/clang/test/Modules/Inputs/normal-module-map/nested_umbrella/
H A D1.h1 int one; variable
/external/clang/test/PCH/Inputs/
H A Dchain-decls1.h3 struct one {}; struct
/external/chromium_org/v8/test/mjsunit/compiler/
H A Drecursive-deopt.js34 if (n == 0) return 1 << one;
35 return f(n - 1) << one;
39 var one = 1; variable
44 var one = { valueOf: function() { return 1; } };
H A Dregress-stacktrace.js31 function one() { function
40 one();
45 var p1 = stack.indexOf("at one");
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D100-macro-with-colon.c1 #define one 1 macro
5 case one + two:
H A D054-if-with-macros.c1 #define one 1 macro
25 #if one > three
30 #if one != five
H A D057-empty-arguments.c3 #define one(x) success macro
4 one()
/external/mesa3d/src/glsl/glcpp/tests/
H A D100-macro-with-colon.c1 #define one 1 macro
5 case one + two:
H A D054-if-with-macros.c1 #define one 1 macro
25 #if one > three
30 #if one != five
H A D057-empty-arguments.c3 #define one(x) success macro
4 one()
/external/chromium_org/third_party/skia/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
15 one.reset();
16 one.setFillType((SkPath::FillType) oneFill);
17 one.addRect(0, 0, 6, 6, (SkPath::Direction) oneDir);
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/chromium_org/tools/gn/tutorial/
H A Dhello.cc14 void Hello(const char* one, const char* two) { argument
15 printf("Hello, %s and %s.\n", one, two);
/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c7 struct one struct
13 struct one hobbit = {5, {1, 2, 3}};
/external/clang/test/CodeGenCXX/
H A Dcopy-in-cplus-object.cpp19 TestObject one; local
20 int (^V)() = ^{ return one.version(); };
/external/compiler-rt/test/asan/TestCases/Helpers/
H A Dinitialization-nobug-extra.cc6 static int one = countCalls(); variable
/external/libcxx/test/language.support/support.limits/limits/denorm.style/
H A Dcheck_values.pass.cpp16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_round_style);
/external/libcxx/test/language.support/support.limits/limits/round.style/
H A Dcheck_values.pass.cpp16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_denorm_style);
/external/llvm/test/MC/ELF/
H A Ddot-symbol-assignment.s3 one: label
/external/skia/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
15 one.reset();
16 one.setFillType((SkPath::FillType) oneFill);
17 one.addRect(0, 0, 6, 6, (SkPath::Direction) oneDir);
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/clang/test/Sema/
H A Dstruct-cast.c5 int one; member in struct:S
/external/valgrind/main/memcheck/tests/darwin/
H A Dscalar.c491 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!
1681 // the only one use
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Drandexpr1.tcl129 {{count(distinct EXPR)} {[one {EXPR}]}}
233 proc one {args} { procedure
253 # correct value of the expression. So, from one point of view, this

Completed in 8290 milliseconds

1234567891011>>