Searched defs:two (Results 1 - 25 of 175) sorted by relevance

1234567

/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D100-macro-with-colon.c2 #define two 2 macro
5 case one + two:
H A D054-if-with-macros.c2 #define two 2 macro
5 #if five < two
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
H A D057-empty-arguments.c5 #define two(x,y) success macro
6 two(,)
/external/compiler-rt/lib/builtins/x86_64/
H A Dfloatundisf.S17 two: label
35 mulss REL_ADDR(two), %xmm0
/external/mesa3d/src/glsl/glcpp/tests/
H A D100-macro-with-colon.c2 #define two 2 macro
5 case one + two:
H A D054-if-with-macros.c2 #define two 2 macro
5 #if five < two
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
H A D057-empty-arguments.c5 #define two(x,y) success macro
6 two(,)
/external/chromium_org/third_party/skia/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
22 two.reset();
23 two.setFillType((SkPath::FillType) twoFill);
24 two.addRect(3, 3, 9, 9, (SkPath::Direction) twoDir);
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/PCH/Inputs/
H A Dchain-decls2.h3 struct two {}; struct
/external/libcxx/test/language.support/support.limits/limits/denorm.style/
H A Dcheck_values.pass.cpp17 struct two {one _[2];}; struct
20 two test(int);
/external/libcxx/test/language.support/support.limits/limits/round.style/
H A Dcheck_values.pass.cpp17 struct two {one _[2];}; struct
20 two test(int);
/external/llvm/test/MC/ELF/
H A Ddot-symbol-assignment.s7 two: label
/external/skia/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
22 two.reset();
23 two.setFillType((SkPath::FillType) twoFill);
24 two.addRect(3, 3, 9, 9, (SkPath::Direction) twoDir);
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-deep-proto.js33 var two = {foo: 0, bar: 1};
43 poly(two);
/external/clang/test/Sema/
H A Dstruct-cast.c6 int two; member in struct:S
/external/chromium_org/tools/clang/plugins/tests/
H A Dmissing_ctor.cpp21 MissingCtorsArentOKInHeader two; local
H A Dinline_ctor.cpp23 InlineCtorsArentOKInHeader two; local
H A Dvirtual_methods.cpp35 ConcreteVirtualMethodsInImplementation two; local
/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp6 two, enumerator in enum:E
18 case two ... two + 1:
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dlistformattertest.h45 UnicodeString two,
52 UnicodeString two,
61 const UnicodeString two; member in class:ListFormatterTest
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-stacktrace-methods.js34 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/
H A Dsmi-negative-zero.js33 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/clang/test/Preprocessor/
H A Dmacro_fn.c6 #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/elfutils/0.153/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;
50 - SH_FLAGS_IMPORTANT (two->flags));
55 result = one->entsize - two->entsize;
60 ? (two->grp_signature == NULL ? 0 : -1)
61 : (two->grp_signature == NULL
63 two->grp_signature)));
66 result = one->kind - two->kind;

Completed in 557 milliseconds

1234567