HomeSort by relevance Sort by last modified time
    Searched refs:two (Results 101 - 125 of 2110) sorted by null

1 2 3 45 6 7 8 91011>>

  /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)
define.mk 16 define two-lines
24 echo BEGIN $(two-lines) END
  /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 "one two" \
16 "mkfifo one two && [ -p one ] && [ -p two ] && echo yes" "yes\n" "" ""
17 rm one two
  /libcore/luni/src/test/java/libcore/java/util/function/
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());
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
pseudo_test.go 33 {"TEXT", "", "expect two or three operands for TEXT"},
34 {"TEXT", "%", "expect two or three operands for TEXT"},
39 {"FUNCDATA", "", "expect two operands for FUNCDATA"},
40 {"FUNCDATA", "(SB ", "expect two operands for FUNCDATA"},
41 {"DATA", "", "expect two operands for DATA"},
42 {"DATA", "0", "expect two operands for DATA"},
44 {"GLOBL", "", "expect two or three operands for GLOBL"},
46 {"PCDATA", "", "expect two operands for PCDATA"},
47 {"PCDATA", "1", "expect two operands for PCDATA"},
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
pseudo_test.go 33 {"TEXT", "", "expect two or three operands for TEXT"},
34 {"TEXT", "%", "expect two or three operands for TEXT"},
39 {"FUNCDATA", "", "expect two operands for FUNCDATA"},
40 {"FUNCDATA", "(SB ", "expect two operands for FUNCDATA"},
41 {"DATA", "", "expect two operands for DATA"},
42 {"DATA", "0", "expect two operands for DATA"},
44 {"GLOBL", "", "expect two or three operands for GLOBL"},
46 {"PCDATA", "", "expect two operands for PCDATA"},
47 {"PCDATA", "1", "expect two operands for PCDATA"},
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
section-align-1.s 7 .section .two,"dr0"
  /external/mockito/src/test/java/org/mockitousage/verification/
DescriptiveMessagesOnVerificationInOrderErrorsTest.java 24 private IMethods two; field in class:DescriptiveMessagesOnVerificationInOrderErrorsTest
31 two = Mockito.mock(IMethods.class);
36 two.simpleMethod(2);
37 two.simpleMethod(2);
40 inOrder = inOrder(one, two, three);
46 inOrder.verify(two, atLeastOnce()).simpleMethod(2);
120 inOrder.verify(two, times(2)).simpleMethod(2);
142 inOrder.verify(two, times(1)).simpleMethod(2);
167 two.simpleMethod(2);
170 inOrder.verify(two, times(2)).simpleMethod(2)
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
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...]
  /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;
88 if (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
  /external/clang/test/SemaCXX/
cxx0x-initializer-scalars.cpp 4 struct two { char c[2]; }; struct
78 two overloaded(double);
81 static_assert(sizeof(overloaded({0.0})) == sizeof(two), "bad overload"); // expected-warning {{braces around scalar init}}
111 two f(int);
  /external/testng/src/test/java/test/methodinterceptors/
LockUpInterceptorSampleTest.java 16 public void two() { method in class:LockUpInterceptorSampleTest
17 log("two");
  /external/v8/tools/clang/plugins/tests/
inline_ctor.cpp 27 InlineCtorsArentOKInHeader two; local
virtual_bodies.cpp 38 ConcreteVirtualMethodsInImplementation two; local
  /prebuilts/go/darwin-x86/test/fixedbugs/bug404.dir/
two.go 6 // two.go:10:13: error: use of undefined type ?one.T2?
8 package two package
  /prebuilts/go/linux-x86/test/fixedbugs/bug404.dir/
two.go 6 // two.go:10:13: error: use of undefined type ?one.T2?
8 package two package
  /toolchain/binutils/binutils-2.25/gold/testsuite/
gdb_index_test.cc 70 namespace two namespace
144 check(&two::c2v1);
145 check(&two::c2v2);
146 check(&two::c2v3);

Completed in 1204 milliseconds

1 2 3 45 6 7 8 91011>>