Searched defs:intValue (Results 1 - 25 of 78) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicStringTest.cpp40 int intValue = 1234; local
41 ASSERT_EQ(AtomicString::number(intValue), "1234");
42 intValue = -1234;
43 ASSERT_EQ(AtomicString::number(intValue), "-1234");
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DUint.java23 public final int intValue; field in class:Uint
26 this.intValue = value;
30 return Unsigned.compare(intValue, uint.intValue);
/external/smack/src/com/kenai/jbosh/
H A DAbstractIntegerAttr.java93 public int intValue() { method in class:AbstractIntegerAttr
94 return getValue().intValue();
/external/chromium_org/third_party/icu/source/samples/udata/
H A Dwriter.c64 uint16_t intValue=2000; local
89 printf("Writing uint16_t value of %d\n", intValue);
90 udata_write16(pData, intValue);
100 size=sizeof(stringValue) + sizeof(intValue);
H A Dreader.c79 uint16_t intValue = 0; local
/external/icu/icu4c/source/samples/udata/
H A Dwriter.c64 uint16_t intValue=2000; local
89 printf("Writing uint16_t value of %d\n", intValue);
90 udata_write16(pData, intValue);
100 size=sizeof(stringValue) + sizeof(intValue);
H A Dreader.c79 uint16_t intValue = 0; local
/external/smack/src/org/xbill/DNS/
H A DOptions.java109 intValue(String option) { method in class:Options
/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/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValuePool.cpp101 int intValue = static_cast<int>(value); local
102 if (value != intValue)
107 if (!m_pixelValueCache[intValue])
108 m_pixelValueCache[intValue] = CSSPrimitiveValue::create(value, type);
109 return m_pixelValueCache[intValue];
111 if (!m_percentValueCache[intValue])
112 m_percentValueCache[intValue] = CSSPrimitiveValue::create(value, type);
113 return m_percentValueCache[intValue];
115 if (!m_numberValueCache[intValue])
116 m_numberValueCache[intValue]
[all...]
/external/chromium_org/third_party/icu/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/chromium_org/third_party/icu/source/tools/gentest/
H A Dgentest.c106 uint16_t intValue=2000; local
120 udata_write16(pData, intValue);
129 size=sizeof(stringValue) + sizeof(intValue);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java94 public int intValue() { method in class:AtomicInteger
H A DAtomicLong.java94 public int intValue() { method in class:AtomicLong
/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/icu/icu4c/source/tools/gentest/
H A Dgentest.c106 uint16_t intValue=2000; local
120 udata_write16(pData, intValue);
129 size=sizeof(stringValue) + sizeof(intValue);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
H A DStringSwitcher.java32 TypeUtils.parseSignature("int intValue(String)");
46 * @param fixedInput if false, an unknown key will be returned from {@link #intValue} as <code>-1</code>; if true,
67 abstract public int intValue(String s); method in class:StringSwitcher
100 * @param fixedInput if false, an unknown key will be returned from {@link #intValue} as <code>-1</code>; if true,
/external/aac/libFDK/include/
H A Dfixpoint_math.h454 * \param intValue Integer input value.
455 * \param FIXP_DBL representation of 1/intValue
457 inline FIXP_DBL GetInvInt(int intValue) argument
459 FDK_ASSERT((intValue > 0) && (intValue < 50));
460 FDK_ASSERT(intValue<50);
461 return invCount[intValue];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERBitString.java190 public int intValue() method in class:DERBitString
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java165 public int intValue() method in class:SimpleBigDecimal
167 return floor().intValue();
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DBinaryStream.h162 int intValue = static_cast<int>(param); local
163 write(&intValue, 1);
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java81 return asUnsigned(value.intValue());
158 public int intValue() { method in class:UnsignedInteger
H A DUnsignedLong.java151 public int intValue() { method in class:UnsignedLong
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java208 public int intValue() { method in class:AtomicDouble
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
H A DDexDataWriterTest.java348 private void testWriteRightZeroExtendedIntHelper(int intValue, int... encodedValue) throws IOException { argument
350 writer.writeRightZeroExtendedInt(ValueType.FLOAT, intValue);

Completed in 9598 milliseconds

1234