/external/strace/tests/ |
mmsg.c | 46 char two[] = "two"; local 54 .iov_base = two, 55 .iov_len = sizeof(two) - 1
|
/external/testng/src/test/java/test/annotationtransformer/ |
AnnotationTransformerSampleTest.java | 15 public void two() { method in class:AnnotationTransformerSampleTest 34 @Test(dependsOnMethods = {"two", "three", "four", "five"})
|
/external/v8/test/webkit/ |
comparison-operators-greater.js | 144 var two = 2; variable 191 shouldBeFalse("one >= two"); 193 shouldBeFalse("one > two"); 200 shouldBeFalse("if (one >= two || zero) true; else false"); 202 shouldBeFalse("if (two < one || zero) true; else false"); 209 shouldBeFalse("p15 >= two"); 211 shouldBeFalse("p15 > two"); 218 shouldBeFalse("if (p15 >= two || 0) true; else false"); 220 shouldBeFalse("if (two < p15 || 0) true; else false");
|
comparison-operators-less.js | 142 var two = 2; variable 189 shouldBeFalse("two <= one"); 191 shouldBeFalse("two < one"); 198 shouldBeFalse("if (two <= one || zero) true; else false"); 200 shouldBeFalse("if (two < one || zero) true; else false"); 207 shouldBeFalse("two <= p15"); 209 shouldBeFalse("two < p15"); 216 shouldBeFalse("if (two <= p15 || 0) true; else false"); 218 shouldBeFalse("if (two < p15 || 0) true; else false");
|
/external/valgrind/none/tests/x86/ |
bug126147-x86.c | 130 /* Complain if first two args don't strcmp as equal. */ 138 char two[50]; variable 178 (void) mystrncpy (two, one, 9); 179 equal (two, "hi there", 14); /* Just paranoia. */
|
/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
|
omxVCM4P2_QuantInvIntra_I_s.s | 99 two RN 10 label 130 LDRD tempVal21,[pSrcDst] ;// Loads first two values of pSrcDst to tempVal21, 131 ;// next two values to tempVal43 134 MOV two,#2 143 SMULBB X2,tempVal21,two ;// X2= first val(lower 16 bits of tampVal21)*2 149 SMULTB X3,tempVal21,two ;// X3= second val(top 16 bits of tampVal21)*2 159 SMULBB X2,tempVal43,two ;// X2= first val(lower 16 bits of tampVal43)*2 167 SMULTB X3,tempVal43,two ;// X2= first val(top 16 bits of tampVal21)*2
|
/frameworks/base/libs/hwui/tests/unit/ |
LinearAllocatorTests.cpp | 27 int two = 2; member in struct:SimplePair 42 EXPECT_EQ(2, pair->two);
|
/frameworks/compile/mclinker/unittests/ |
LinearAllocatorTest.h | 25 Data() : one(1), two(2), three(3), four(4) {} 32 two = pTwo; 39 two = -2; 45 unsigned int two; member in struct:mcldtest::LinearAllocatorTest::Data
|
RTLinearAllocatorTest.h | 38 Data() : one(1), two(2), three(3), four(4) {} 45 two = pTwo; 52 two = -2; 58 unsigned int two; member in struct:mcldtest::RTLinearAllocatorTest::Data
|
/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());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/ |
weak_result.pass.cpp | 50 struct two {char _; char __;}; struct in struct:has_result_type 51 template <class U> static two test(...);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
forward.pass.cpp | 23 struct two {one _[2];}; struct 28 two test(const A&);
|
/toolchain/binutils/binutils-2.25/opcodes/ |
m68k-opc.c | 25 #define two(x, y) (((unsigned int) (x) << 16) + (y)) macro 189 {"bfchg", 4, two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, 190 {"bfclr", 4, two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, 191 {"bfexts", 4, two(0165700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, 192 {"bfextu", 4, two(0164700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, 193 {"bfffo", 4, two(0166700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up } [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
CodeSignerTest.java | 69 CodeSigner two = new CodeSigner(cpath, ts); local 76 assertTrue(one.equals(two)); 77 assertTrue(two.equals(one));
|
TimestampTest.java | 65 Timestamp two = new Timestamp(now, cpath); local 68 assertTrue(one.equals(two)); 69 assertTrue(two.equals(one));
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
CodeSignerTest.java | 85 CodeSigner two = new CodeSigner(cpath, ts); local 92 assertTrue(one.equals(two)); 93 assertTrue(two.equals(one));
|
TimestampTest.java | 69 Timestamp two = new Timestamp(now, cpath); local 72 assertTrue(one.equals(two)); 73 assertTrue(two.equals(one)); 108 Timestamp two = new Timestamp(now, cpath); local 113 assertTrue(one.hashCode() == two.hashCode()); 115 assertTrue(two.hashCode() != three.hashCode());
|
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/ |
p3.cpp | 32 enum E2 { two }; enumerator in enum:bullet3::E2
|
/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/guava/guava-tests/test/com/google/common/cache/ |
CacheManualTest.java | 38 Object two = new Object(); local 48 assertFalse(cache.asMap().containsValue(two)); 50 assertNull(cache.getIfPresent(two)); 56 assertNull(cache.asMap().get(two)); 57 assertFalse(cache.asMap().containsKey(two)); 60 cache.put(one, two); 62 assertSame(two, cache.getIfPresent(one)); 68 assertSame(two, cache.asMap().get(one)); 70 assertTrue(cache.asMap().containsValue(two)); 72 assertNull(cache.getIfPresent(two)); [all...] |
/external/skia/src/utils/ |
SkBase64.cpp | 32 #if defined _WIN32 && _MSC_VER >= 1300 // disable 'two', etc. may be used without having been initialized 77 int two = 0; local 81 two = bytes[1]; 82 one |= two >> 4; 83 two = (uint8_t) (two << 4); 85 two |= three >> 2; 88 SkASSERT(one < 256 && two < 256 && three < 256); 95 *dst = (unsigned char) two;
|