/art/test/569-checker-pattern-replacement/src-multidex/ |
Base.java | 24 Base(int intValue) { 25 intField = intValue; 39 Base(int intValue, double doubleValue, Object objectValue) { 40 intField = intValue; 45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { 47 intField = intValue; 62 Base(int intValue, long dummy) { 63 this(intValue, 0.0, null);
|
DerivedWithFinalField.java | 22 DerivedWithFinalField(int intValue) { 23 super(intValue); 32 DerivedWithFinalField(int intValue, double doubleValue) { 33 super(intValue);
|
Derived.java | 22 public Derived(int intValue) { 23 super(intValue); 35 public Derived(int intValue, double doubleValue, Object objectValue) { 36 super(intValue, doubleValue, objectValue); 41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { 42 super(intValue, doubleValue, objectValue, stringValue); 56 public Derived(int intValue, double doubleValue, Object objectValue, float floatValue) { 57 super(intValue, doubleValue, objectValue);
|
BaseWithFinalField.java | 22 BaseWithFinalField(int intValue) { 23 intField = intValue;
|
DerivedInSecondDex.java | 22 DerivedInSecondDex(int intValue) { 24 super(intValue);
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
Uint.java | 23 public final int intValue; 26 this.intValue = value; 30 return Unsigned.compare(intValue, uint.intValue);
|
/art/test/610-arraycopy/src/ |
Main.java | 25 expectEquals(0, ((Integer)a[0]).intValue()); 26 expectEquals(0, ((Integer)a[1]).intValue()); 27 expectEquals(1, ((Integer)a[2]).intValue()); 28 expectEquals(2, ((Integer)a[3]).intValue()); 29 expectEquals(4, ((Integer)a[4]).intValue());
|
/external/deqp/framework/common/ |
tcuEither.cpp | 89 const int intValue = 1503457782; 90 const Either<int, float> either (intValue); 98 TCU_CHECK(either.getFirst() == intValue); 99 TCU_CHECK(either.get<int>() == intValue); 119 const int intValue = 1942092699; 123 either = intValue; 131 TCU_CHECK(either.getFirst() == intValue); 132 TCU_CHECK(either.get<int>() == intValue); 137 const int intValue = 1942092699; 139 Either<int, float> either (intValue); [all...] |
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/ |
NotBindableVo.java | 29 public NotBindableVo(int intValue) { 30 this.mIntValue = intValue; 37 public NotBindableVo(int intValue, String stringValue) { 38 this.mIntValue = intValue; 51 public void setIntValue(int intValue) { 52 this.mIntValue = intValue;
|
/art/test/569-checker-pattern-replacement/src/ |
BaseInMainDex.java | 21 BaseInMainDex(int intValue) { 22 intField = intValue;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
NumberTest.java | 28 ((byte) new Integer(number).intValue()) == new Integer(number) 32 ((byte) new Integer(number).intValue()) == new Integer(number) 36 ((byte) new Integer(number).intValue()) == new Integer(number) 40 ((byte) new Integer(number).intValue()) == new Integer(number) 50 ((short) new Integer(number).intValue()) == new Integer(number) 54 ((short) new Integer(number).intValue()) == new Integer(number) 58 ((short) new Integer(number).intValue()) == new Integer(number) 62 ((short) new Integer(number).intValue()) == new Integer(number)
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldAndroidArrayListTest.java | 43 assertEquals(1, ((Integer) array.get(0)).intValue()); 44 assertEquals(2, ((Integer) array.get(1)).intValue()); 45 assertEquals(0, ((Integer) array.get(2)).intValue()); 46 assertEquals(3, ((Integer) array.get(3)).intValue()); 47 assertEquals(1, ((Integer) array.get(4)).intValue()); 61 assertEquals(1, ((Integer) array.get(0)).intValue()); 62 assertEquals(3, ((Integer) array.get(1)).intValue()); 63 assertEquals(1, ((Integer) array.get(2)).intValue());
|
/external/icu/icu4c/source/test/cintltst/ |
cstrtest.c | 37 int32_t intValue=0; 82 intValue=T_CString_stringToInteger("34556", 10); 83 if(intValue != 34556){ 84 log_err("FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", intValue); 86 intValue=T_CString_stringToInteger("100", 16); 87 if(intValue != 256){ 88 log_err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intValue); 111 if((intValue=uprv_stricmp(NULL, "first string is null") )!= -1){ 112 log_err("FAIL: uprv_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue); 114 if((intValue=uprv_stricmp("second string is null", NULL)) != 1) [all...] |
/external/javassist/sample/vector/ |
Sample2.java | 10 int i = ((Integer)args[0]).intValue();
|
/external/jcommander/src/test/java/com/beust/jcommander/ |
DefaultProviderTest.java | 51 Assert.assertEquals(a.log.intValue(), 42); 60 Assert.assertEquals(a.log.intValue(), 42); 69 Assert.assertEquals(a.log.intValue(), 42); 79 Assert.assertEquals(a.log.intValue(), 19); 88 Assert.assertEquals(a.log.intValue(), 18); 97 Assert.assertEquals(a.log.intValue(), 18); 107 Assert.assertEquals(a.log.intValue(), 18); 117 Assert.assertEquals(a.log.intValue(), 19);
|
/libcore/support/src/test/java/tests/support/ |
Support_GetPutFields.java | 43 public int intValue = 0; 83 intValue = 77777; 100 intValue == other.intValue && 114 intValue = getField.get("intValue", 0); 128 putField.put("intValue", intValue);
|
Support_GetPutFieldsDeprecated.java | 45 public int intValue = 0; 85 intValue = 33333; 102 intValue == other.intValue && 115 intValue = getField.get("intValue", 0); 129 putField.put("intValue", intValue);
|
/packages/apps/Dialer/tests/src/com/android/dialer/util/ |
ExpirableCacheTest.java | 50 assertEquals(1, mCache.getPossiblyExpired("a").intValue()); 51 assertEquals(2, mCache.getPossiblyExpired("b").intValue()); 53 assertEquals(3, mCache.getPossiblyExpired("a").intValue()); 64 assertEquals(1, mCache.getPossiblyExpired("a").intValue()); 66 assertEquals(1, mCache.getPossiblyExpired("a").intValue()); 77 assertEquals(1, mCache.get("a").intValue()); 115 assertEquals(0, cachedValue.getValue().intValue()); 122 assertEquals(0, expiredCachedValue.getValue().intValue());
|
/system/netd/include/ |
Fwmark.h | 25 uint32_t intValue; 32 Fwmark() : intValue(0) {}
|
/libcore/luni/src/test/java/tests/security/spec/ |
DSAPrivateKeySpecTest.java | 60 assertEquals(4, dpks.getG().intValue()); 73 assertEquals(2, dpks.getP().intValue()); 86 assertEquals(3, dpks.getQ().intValue()); 99 assertEquals(1, dpks.getX().intValue());
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
UnsignedIntegerTest.java | 64 .intValue()); 151 int expected = aUnsigned.bigIntegerValue().add(bUnsigned.bigIntegerValue()).intValue(); 153 assertEquals(expected, unsignedSum.intValue()); 164 force32(aUnsigned.bigIntegerValue().subtract(bUnsigned.bigIntegerValue()).intValue()); 166 assertEquals(expected, unsignedSub.intValue()); 178 force32(aUnsigned.bigIntegerValue().multiply(bUnsigned.bigIntegerValue()).intValue()); 180 assertEquals(aUnsigned + " * " + bUnsigned, expected, unsignedMul.intValue()); 192 aUnsigned.bigIntegerValue().divide(bUnsigned.bigIntegerValue()).intValue(); 194 assertEquals(expected, unsignedDiv.intValue()); 217 aUnsigned.bigIntegerValue().mod(bUnsigned.bigIntegerValue()).intValue(); [all...] |
/frameworks/data-binding/integration-tests/TestApp/app/src/main/res/layout/ |
layout_with_include.xml | 33 bind:innerValue="@{`modified ` + outerObject.intValue}" 37 android:text="@{`` + outerObject.intValue}"/> 41 bind:innerValue="@{`hello ` + outerObject.intValue}"/> 45 bind:innerValue="@{`goodbye ` + outerObject.intValue}"/> 51 bind:innerValue="@{`third ` + outerObject.intValue}"/>
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
LevelTest.java | 39 * values. As byproducts, getName & intValue are also tested. 44 assertEquals(1, l.intValue()); 50 * As byproducts, getName & intValue are also tested. 63 * As byproducts, getName & intValue are also tested. 68 assertEquals(-3, l.intValue()); 74 * values. As byproducts, getName & intValue are also tested. 79 assertEquals(1, l.intValue()); 85 * As byproducts, getName & intValue are also tested. 99 * As byproducts, getName & intValue are also tested. 104 assertEquals(-1000, l.intValue()); [all...] |
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
ListViewActivity.java | 89 Color.rgb(new Double(rl * 255).intValue(), new Double(gl * 255).intValue(), new Double(bl * 255).intValue()),
90 Color.rgb(new Double(rp * 255).intValue(), new Double(gp * 255).intValue(), new Double(bp * 255).intValue()),
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
AnnotationElementNameReferenceTest.java | 45 ".method public abstract intValue()I\n" + 58 Assert.assertEquals("intValue", ((PsiAnnotationMethod)resolved).getName()); 66 " int intValue();\n" + 79 Assert.assertEquals("intValue", ((PsiAnnotationMethod)resolved).getName()); 90 ".method public abstract intValue()I\n" + 100 Assert.assertEquals("intValue", ((PsiAnnotationMethod)resolved).getName());
|