/external/clang/test/CXX/over/over.over/ |
p2-resolve-single-template-id.cpp | 30 void two() { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression 31 void two(int) { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression 38 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}} 47 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}} 61 void two() { }; //expected-note 5{{candidate}} function 62 void two(int) { }; //expected-note 5{{candidate}} function 84 { static_cast<void>(two); } // expected-error {{address of overloaded function 'two' cannot be static_cast to type 'void'}} 85 { (void)(two); } // expected-error {{address of overloaded function 'two' cannot be cast to type 'void'} [all...] |
/external/icu/icu4c/source/test/intltest/ |
listformattertest.h | 45 UnicodeString two, 52 UnicodeString two, 61 const UnicodeString two; member in class:ListFormatterTest
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
AtomicMarkableReferenceTest.java | 49 ai.set(two, false); 50 assertSame(two, ai.getReference()); 52 assertSame(two, ai.get(mark)); 85 assertTrue(ai.compareAndSet(one, two, false, false)); 86 assertSame(two, ai.get(mark)); 89 assertTrue(ai.compareAndSet(two, m3, false, true)); 93 assertFalse(ai.compareAndSet(two, m3, true, true)); 106 while (!ai.compareAndSet(two, three, false, false)) 111 assertTrue(ai.compareAndSet(one, two, false, false)); 149 do {} while (!ai.weakCompareAndSet(one, two, false, false)) [all...] |
AtomicReferenceTest.java | 49 ai.set(two); 50 assertSame(two, ai.get()); 61 ai.lazySet(two); 62 assertSame(two, ai.get()); 72 assertTrue(ai.compareAndSet(one, two)); 73 assertTrue(ai.compareAndSet(two, m4)); 89 while (!ai.compareAndSet(two, three)) 94 assertTrue(ai.compareAndSet(one, two)); 106 do {} while (!ai.weakCompareAndSet(one, two)); 107 do {} while (!ai.weakCompareAndSet(two, m4)) [all...] |
AtomicStampedReferenceTest.java | 49 ai.set(two, 0); 50 assertSame(two, ai.getReference()); 52 assertSame(two, ai.get(mark)); 85 assertTrue(ai.compareAndSet(one, two, 0, 0)); 86 assertSame(two, ai.get(mark)); 89 assertTrue(ai.compareAndSet(two, m3, 0, 1)); 93 assertFalse(ai.compareAndSet(two, m3, 1, 1)); 106 while (!ai.compareAndSet(two, three, 0, 0)) 111 assertTrue(ai.compareAndSet(one, two, 0, 0)); 149 do {} while (!ai.weakCompareAndSet(one, two, 0, 0)) [all...] |
ExchangerTest.java | 33 * exchange exchanges objects across two threads 39 assertSame(one, e.exchange(two)); 40 assertSame(two, e.exchange(one)); 44 assertSame(two, e.exchange(one)); 45 assertSame(one, e.exchange(two)); 53 * timed exchange exchanges objects across two threads 59 assertSame(one, e.exchange(two, LONG_DELAY_MS, MILLISECONDS)); 60 assertSame(two, e.exchange(one, LONG_DELAY_MS, MILLISECONDS)); 64 assertSame(two, e.exchange(one, LONG_DELAY_MS, MILLISECONDS)); 65 assertSame(one, e.exchange(two, LONG_DELAY_MS, MILLISECONDS)) [all...] |
/libcore/luni/src/test/java/libcore/java/util/function/ |
BiConsumerTest.java | 27 BiConsumer<String, StringBuilder> two = (s, t) -> t.append("two").append(s); local 30 one.andThen(two).accept("z", sb); 34 two.andThen(one).accept("z", sb);
|
DoubleConsumerTest.java | 28 DoubleConsumer two = d -> sb.append("two:" + d); local 30 one.andThen(two).accept(1.0d); 31 assertEquals("one:1.0,two:1.0", sb.toString());
|
IntConsumerTest.java | 28 IntConsumer two = i -> sb.append("two:" + i); local 30 one.andThen(two).accept(1); 31 assertEquals("one:1,two:1", sb.toString());
|
LongConsumerTest.java | 28 LongConsumer two = l -> sb.append("two:" + l); local 30 one.andThen(two).accept(1L); 31 assertEquals("one:1,two:1", sb.toString());
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-references.cpp | 4 struct two { char c[2]; }; struct 58 two f(const B&); 64 two g(const B&); 66 static_assert(sizeof(g({1})) == sizeof(two), "bad overload resolution"); 69 two h(const A&); 71 static_assert(sizeof(h({1, 2})) == sizeof(two), "bad overload resolution");
|
warn-shadow.cpp | 8 namespace two { namespace in namespace:one 20 using namespace one::two; 26 int j; // expected-warning {{declaration shadows a variable in namespace 'one::two'}}
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
omxVCM4P2_QuantInvInter_I_s.s | 90 two RN 7 label 96 LDRD tempVal21,[pSrcDst] ;// Loads first two values of pSrcDst to tempVal21, 97 ;// next two values to tempVal43 100 MOV two,#2 107 SMULBB X2,tempVal21,two ;// X2= first val(lower 16 bits of tampVal21)*2 113 SMULTB X3,tempVal21,two ;// X3= second val(top 16 bits of tampVal21)*2 123 SMULBB X2,tempVal43,two ;// X2= first val(lower 16 bits of tampVal43)*2 131 SMULTB X3,tempVal43,two ;// X2= first val(top 16 bits of tampVal21)*2
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue10925.go | 16 for _, s := range []string{"one", "two", "three"} { 19 if got[0][0] != "one" || got[1][0] != "two" || got[2][0] != "three" { 21 fmt.Println("Expected [[one] [two] [three]], got", got)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue10925.go | 16 for _, s := range []string{"one", "two", "three"} { 19 if got[0][0] != "one" || got[1][0] != "two" || got[2][0] != "three" { 21 fmt.Println("Expected [[one] [two] [three]], got", got)
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
arm-it-auto-3.d | 13 Disassembly of section .text.two: 14 00000000 <.text.two> bf08 it eq 15 00000002 <.text.two\+0x2> 3103 addeq r1, #3
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
two-op.l | 1 GAS for MMIX .*/two-op\.s page 1 28 GAS for MMIX .*/two-op\.s page 2 32 .*/two-op\.s:3 \.text:0000000000000000 Main
|
/art/test/005-annotations/src/android/test/anno/ |
FullyNoted.java | 21 @AnnoFancyParameter(factor=3.7879912899761) long two) 30 @AnnoFancyParameter(factor=3.7879912899761) long two)
|
/build/kati/testcase/ |
override_define.mk | 4 override define two-lines 28 echo two BEGIN $(two-lines) END $(flavor two-lines)
|
/external/clang/test/CXX/special/class.temporary/ |
p1.cpp | 45 typedef char two[2]; typedef in namespace:test2 48 two &meta(...);
|
/external/compiler-rt/lib/builtins/x86_64/ |
floatundisf.S | 13 two: label 31 mulss REL_ADDR(two), %xmm0
|
/external/toybox/tests/ |
mkfifo.test | 15 testing "mkfifo one two" \ 16 "mkfifo one two && [ -p one ] && [ -p two ] && echo yes" "yes\n" "" "" 17 rm one two
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/ |
section-align-1.s | 7 .section .two,"dr0"
|
/external/skia/src/pathops/ |
SkIntersections.cpp | 34 int SkIntersections::insert(double one, double two, const SkDPoint& pt) { 44 if (one == oldOne && two == oldTwo) { 47 if (more_roughly_equal(oldOne, one) && more_roughly_equal(oldTwo, two)) { 50 || (precisely_zero(two) && !precisely_zero(oldTwo)) 51 || (precisely_equal(two, 1) && !precisely_equal(oldTwo, 1))) { 53 SkASSERT(two >= 0 && two <= 1); 55 fT[1][index] = two; 86 SkASSERT(two >= 0 && two <= 1) [all...] |
/art/runtime/ |
utf-inl.h | 39 const uint8_t two = *(*utf8_data_in)++; local 41 // two-byte encoding 42 return ((one & 0x1f) << 6) | (two & 0x3f); 47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f); 59 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12) 63 // Step two: Write out the high (leading) surrogate to the bottom 16 bits
|