Searched refs:one (Results 1 - 25 of 515) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c7 struct one struct
13 struct one hobbit = {5, {1, 2, 3}};
/external/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-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/v8/test/mjsunit/
H A Dsmi-negative-zero.js31 var one = 1; variable
40 assertEquals(-Infinity, one / (-zero), "one / -0 I");
42 assertEquals(-Infinity, one / (zero * minus_one), "one / -1");
43 assertEquals(-Infinity, one / (minus_one * zero), "one / -0 II");
44 assertEquals(Infinity, one / (zero * zero), "one / 0 I");
45 assertEquals(1, one / (minus_on
[all...]
/external/valgrind/main/none/tests/x86/
H A Dbug126147-x86.c137 char one[50]; variable
146 check (mystrncpy (one, "abc", 4) == one, 1); /* Returned value. */
147 equal (one, "abc", 2); /* Did the copy go right? */
149 (void) strcpy (one, "abcdefgh");
150 (void) mystrncpy (one, "xyz", 2);
151 equal (one, "xycdefgh", 3); /* Copy cut by count. */
153 (void) strcpy (one, "abcdefgh");
154 (void) mystrncpy (one, "xyz", 3); /* Copy cut just before NUL. */
155 equal (one, "xyzdefg
[all...]
H A Dssse3_misaligned.stderr.exp1 you should see: "one\ntwo\nthree\n"
2 one
/external/valgrind/main/memcheck/tests/
H A Dstr_tester.c65 char one[50]; variable
123 for (__n = 0; __n < (int) sizeof (one); ++__n) \
124 one[__n] = 'Z'; \
125 fn (one, str); \
126 for (cp = one, __n = 0; __n < n; ++__n, ++cp) \
136 check (strcpy (one, "abcd") == one, 1); /* Returned value. */
137 equal (one, "abcd", 2); /* Basic test. */
139 (void) strcpy (one, "x");
140 equal (one, "
[all...]
/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp4 one, enumerator in enum:E
15 case one:
/external/mesa3d/src/glsl/glcpp/tests/
H A D057-empty-arguments.c3 #define one(x) success macro
4 one()
H A D040-token-pasting.c2 paste(one , token)
H A D019-define-func-1-arg-multi.c2 foo(this is more than one word)
H A D054-if-with-macros.c1 #define one 1 macro
25 #if one > three
30 #if one != five
/external/valgrind/main/none/tests/amd64/
H A Dssse3_misaligned.stderr.exp1 you should see: "one\ntwo\nthree\n"
2 one
/external/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; } };
/external/fdlibm/
H A Ds_tanh.c24 * 2. 0 <= x <= 2**-55 : ieee_tanh(x) := x*(one+x)
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
62 if (jx>=0) return one/x+one; /* ieee_tanh(+-inf)=+-1 */
63 else return one/x-one; /* ieee_tanh(NaN) = NaN */
69 return x*(one+x); /* ieee_tanh(small) = small */
72 z = one - two/(t+two);
79 z = one
[all...]
/external/clang/test/PCH/
H A Dchain-decls.c17 struct one x;
18 one();
/external/elfutils/src/
H A Dsectionhash.c39 scnhead_compare (struct scnhead *one, struct scnhead *two) argument
41 int result = strcmp (one->name, two->name);
45 result = one->type - two->type;
49 GElf_Sxword diff = (SH_FLAGS_IMPORTANT (one->flags)
55 result = one->entsize - two->entsize;
59 result = (one->grp_signature == NULL
62 ? 1 : strcmp (one->grp_signature,
66 result = one->kind - two->kind;
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/jgss/kerberos/
H A DKerberosNameTest.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
39 KerberosName one = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
41 assertEquals(one, another);
43 one = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
45 assertEquals(one, another);
47 one = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
49 assertEquals(one, another);
51 one = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
53 assertFalse(one.equals(another));
56 one
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-class.cpp3 int one; member in struct:A
/external/clang/test/PCH/Inputs/
H A Dchain-decls1.h3 struct one {}; struct
/external/compiler-rt/lib/asan/lit_tests/Helpers/
H A Dinitialization-nobug-extra.cc6 static int one = countCalls(); variable
/external/clang/test/Preprocessor/
H A Dmacro_fn.c5 #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}} */
39 one_dot(x) /* empty ... argument: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
40 one_dot() /* empty first argument, elided ...: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DBTree.java31 private BTree one; field in class:BTree
52 if (one == null)
53 one = new BTree();
54 branch = one;
63 return one;
/external/chromium/chrome/browser/ui/views/
H A Ddom_view_browsertest.cc28 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 local
[all...]
/external/v8/test/mjsunit/harmony/
H A Dblock-scoping.js47 function f2(one) {
48 var x = one + 1;
49 let y = one + 2;
50 const u = one + 4;
52 let z = one + 3;
53 const v = one + 5;
54 assertEquals(1, eval('one'));
66 function f3(one) {
67 var x = one + 1;
68 let y = one
[all...]

Completed in 477 milliseconds

1234567891011>>