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

12

/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/icu4c/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/webkit/Source/WebCore/css/
H A DCSSPrimitiveValueCache.cpp87 int intValue = static_cast<int>(value); local
88 if (value != intValue)
94 if (intValue == 0)
99 if (intValue == 0)
104 if (intValue == 0)
113 pair<IntegerValueCache::iterator, bool> entry = cache->add(intValue, dummyValue);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERBitString.java189 public int intValue() method in class:DERBitString
/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/icu4c/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=T_CString_stricmp(NULL, "first string is null") )!= -1){
114 log_err("FAIL: T_CString_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
116 if((intValue
[all...]
H A Dudatatst.c829 uint16_t* intValue=0; local
864 intValue=(uint16_t *)udata_getMemory(result);
865 /*printf("%d ..... %s", *(intValue), intValue+1));*/
866 if( *intValue != 2000 || strcmp((char*)(intValue+1), "YEAR") != 0 )
867 log_err("FAIL: udata_getMemory() failed: intValue :- Expected:2000 Got:%d \n\tstringValue:- Expected:YEAR Got:%s\n", *intValue, (intValue+1));
877 uint16_t* intValue local
[all...]
/external/icu4c/tools/gentest/
H A Dgentest.c106 uint16_t intValue=2000; local
120 udata_write16(pData, intValue);
129 size=sizeof(stringValue) + sizeof(intValue);
/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/math/ec/
H A DSimpleBigDecimal.java165 public int intValue() method in class:SimpleBigDecimal
167 return floor().intValue();
/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/webkit/Source/WebCore/bridge/objc/
H A Dobjc_utility.h49 int intValue; member in union:JSC::Bindings::__anon14536
/external/webkit/Source/JavaScriptGlue/
H A DJSUtils.cpp229 int intValue = (int)number2; local
230 result = CFNumberCreate(0, kCFNumberIntType, &intValue);
/external/skia/src/utils/
H A DSkJSON.cpp146 int32_t SkJSON::Object::Iter::intValue() const { function in class:SkJSON::Object::Iter
186 this->addInt(iter.name(), iter.intValue());
/external/webkit/Source/WebCore/bridge/
H A Dnpruntime.h104 int32_t intValue; member in union:_NPVariant::__anon14535
132 #define NPVARIANT_TO_INT32(_v) ((_v).value.intValue)
158 (_v).value.intValue = _val; \
H A Dtestbindings.cpp46 int intValue; member in struct:__anon14540
65 "intValue",
136 printf ("%d\n", message->value.intValue);
154 if (!NPN_VariantToInt32 (variant, &obj->intValue)) {
187 NPN_InitializeVariantWithInt32 (variant, obj->intValue);
300 newInstance->intValue = 1234;
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java892 Method intSwap = instanceSwapMethod(int.class, "intValue");
893 instance.intValue = 5;
895 assertEquals(10, instance.intValue);
939 public int intValue; field in class:DexMakerTest.Instance
954 * int oldValue = instance.intValue;
955 * instance.intValue = newValue;
975 Method intSwap = staticSwapMethod(int.class, "intValue");
976 Static.intValue = 5;
978 assertEquals(10, Static.intValue);
1022 public static int intValue; field in class:DexMakerTest.Static
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Binding.cpp166 v8::Local<v8::Int32> intValue = value->ToInt32(); local
167 if (intValue.IsEmpty()) {
173 return intValue->Value();
214 v8::Local<v8::Int32> intValue = value->ToInt32(); local
215 if (intValue.IsEmpty()) {
220 return static_cast<uint32_t>(intValue->Value());
/external/webkit/Source/JavaScriptCore/parser/
H A DJSParser.h141 int intValue; member in union:JSC::JSTokenData
/external/webkit/Tools/DumpRenderTree/gtk/
H A DAccessibilityUIElementGtk.cpp316 double AccessibilityUIElement::intValue() const function in class:AccessibilityUIElement
445 return intValue();
/external/webkit/Tools/DumpRenderTree/win/
H A DAccessibilityUIElementWin.cpp378 double AccessibilityUIElement::intValue() const function in class:AccessibilityUIElement

Completed in 504 milliseconds

12