Searched refs:intValue (Results 1 - 25 of 481) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/cintltst/
H A Dcstrtest.c39 int32_t intValue=0; local
84 intValue=T_CString_stringToInteger("34556", 10);
85 if(intValue != 34556){
86 log_err("FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", intValue);
88 intValue=T_CString_stringToInteger("100", 16);
89 if(intValue != 256){
90 log_err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intValue);
113 if((intValue=uprv_stricmp(NULL, "first string is null") )!= -1){
114 log_err("FAIL: uprv_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
116 if((intValue
[all...]
/external/deqp/framework/common/
H A DtcuEither.cpp89 const int intValue = 1503457782; local
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; local
123 either = intValue;
131 TCU_CHECK(either.getFirst() == intValue);
132 TCU_CHECK(either.get<int>() == intValue);
137 const int intValue = 1942092699; local
139 Either<int, float> either (intValue);
155 const int intValue = 1942092699; local
174 const int intValue = 1942092699; local
223 const int intValue = 1942092699; local
241 const int intValue = 1942092699; local
259 const int intValue = 1942092699; local
278 const int intValue = 1942092699; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DRSAKeyParameters.java22 if ((exponent.intValue() & 1) == 0)
34 if ((modulus.intValue() & 1) == 0)
/external/jcommander/src/test/java/com/beust/jcommander/
H A DDefaultProviderTest.java51 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);
H A DConverterFactoryTest.java58 Assert.assertEquals(a.hostPort.port.intValue(), 8080);
70 Assert.assertEquals(a.getHostPorts().get(0).port.intValue(), 10);
72 Assert.assertEquals(a.getHostPorts().get(1).port.intValue(), 20);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
H A DPoint2.java34 this.x = x.intValue();
35 this.y = y.intValue();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DPerl5Target.java83 final int intValue;
85 intValue = v;
87 intValue = -(0x10000 - v);
90 return String.valueOf(intValue);
/external/deqp/framework/randomshaders/
H A DrsgToken.cpp64 m_arg.intValue = other.m_arg.intValue;
86 else if (m_type == INT_LITERAL && m_arg.intValue != other.m_arg.intValue)
/external/icu/icu4c/source/samples/udata/
H A Dwriter.c70 uint16_t intValue=2000; local
95 printf("Writing uint16_t value of %d\n", intValue);
96 udata_write16(pData, intValue);
106 size=sizeof(stringValue) + sizeof(intValue);
/external/javassist/sample/vector/
H A DSample2.java10 int i = ((Integer)args[0]).intValue();
/external/javassist/src/main/javassist/compiler/
H A DKeywordTable.java26 return ((Integer)found).intValue();
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue203/
H A DGenericTest.java30 assertEquals(33, obj.getContent().getId().intValue());
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DListViewActivity.java89 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/main/java/org/jf/smalidea/debugging/value/
H A DLazyPrimitiveValue.java63 @Override public int intValue() { method in class:LazyPrimitiveValue
64 return getValue().intValue();
/external/deqp/framework/qphelper/
H A DqpXmlWriter.h48 int intValue; member in struct:qpXmlAttribute_s
58 attrib.intValue = -678;
69 attrib.intValue = value;
80 attrib.intValue = -679;
/external/guava/guava-tests/test/com/google/common/primitives/
H A DUnsignedIntegerTest.java64 .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...]
/external/icu/icu4c/source/i18n/
H A Dvisibledigits.cpp122 double &source, int64_t &intValue, int64_t &f, int64_t &t, int32_t &v, UBool &hasIntValue) const {
124 intValue = 0;
143 // intValue
148 intValue = fAbsIntValue;
156 intValue = intValue * 10LL + getDigitByExponent(i);
158 if (intValue == 0LL && startPos > 0) {
159 intValue = 100000000000000000LL;
121 getFixedDecimal( double &source, int64_t &intValue, int64_t &f, int64_t &t, int32_t &v, UBool &hasIntValue) const argument
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLevelTest.java39 * 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/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DProperFractionFormat.java170 if (num.intValue() < 0) {
183 return new Fraction(num.intValue(), 1);
209 if (den.intValue() < 0) {
215 int w = whole.intValue();
216 int n = num.intValue();
217 int d = den.intValue();
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
H A DSLF4JBridgeHandler.java105 private static final int TRACE_LEVEL_THRESHOLD = Level.FINEST.intValue();
106 private static final int DEBUG_LEVEL_THRESHOLD = Level.FINE.intValue();
107 private static final int INFO_LEVEL_THRESHOLD = Level.INFO.intValue();
108 private static final int WARN_LEVEL_THRESHOLD = Level.WARNING.intValue();
206 int julLevelValue = record.getLevel().intValue();
226 int julLevelValue = record.getLevel().intValue();
/external/webrtc/webrtc/modules/video_capture/mac/qtkit/
H A Dvideo_capture_qtkit_info.mm43 [[_captureInfo getCaptureDeviceCount]intValue];
59 WithLength:productUniqueIdUTF8Length]intValue];
111 intValue];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/field/
H A DFiniteFields.java42 switch (characteristic.intValue())
/external/guava/guava-tests/test/com/google/common/base/
H A DDefaultsTest.java32 assertEquals(0, Defaults.defaultValue(int.class).intValue());
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DIntHashtable.java37 return value.intValue();
H A DLongHashtable.java36 return value.intValue();

Completed in 801 milliseconds

1234567891011>>