Searched refs:intValue (Results 26 - 50 of 136) sorted by relevance

123456

/macosx-10.10.1/libclosure-65/tests/
H A DNSFuture.m133 - (NSInteger)intValue {
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dudatatst.c865 uint16_t* intValue=0; local
900 intValue=(uint16_t *)udata_getMemory(result);
901 /*printf("%d ..... %s", *(intValue), intValue+1));*/
902 if( *intValue != 2000 || strcmp((char*)(intValue+1), "YEAR") != 0 )
903 log_err("FAIL: udata_getMemory() failed: intValue :- Expected:2000 Got:%d \n\tstringValue:- Expected:YEAR Got:%s\n", *intValue, (intValue+1));
913 uint16_t* intValue local
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclObj.c2059 Tcl_NewIntObj(intValue)
2060 register int intValue; /* Int used to initialize the new object. */
2062 return Tcl_DbNewLongObj((long)intValue, "unknown", 0);
2068 Tcl_NewIntObj(intValue)
2069 register int intValue; /* Int used to initialize the new object. */
2076 objPtr->internalRep.longValue = (long)intValue;
2102 Tcl_SetIntObj(objPtr, intValue)
2104 register int intValue; /* Integer used to set object's value. */
2116 objPtr->internalRep.longValue = (long) intValue;
H A DtclCmdAH.c1997 long intValue; /* Used to hold value to pass to sprintf, if
2005 int whichValue; /* Indicates which of intValue, ptrValue,
2264 objv[objIndex], &intValue) != TCL_OK) {
2269 intValue = Tcl_WideAsLong(wideValue);
2314 objv[objIndex], &intValue) != TCL_OK) {
2380 sprintf(dst, newFormat, (short) intValue);
2382 sprintf(dst, newFormat, intValue);
2394 ptr += Tcl_UniCharToUtf(intValue, ptr);
1978 long intValue; /* Used to hold value to pass to sprintf, if local
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/IAS/
H A DIrIASService.h198 IrDAErr AddIntegerEntry(const UChar* className, const UChar* attributeName, ULong intValue);
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DRawAbstractInput.java180 return ((Integer) readNext()).intValue();
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/test/
H A DBindingSpeedTest.java328 to.writeInt(((Integer) getters[2].invoke(data, (Object[]) null)).intValue());
329 to.writeInt(((Integer) getters[3].invoke(data, (Object[]) null)).intValue());
367 to.writeInt(((Integer) fields[2].get(data)).intValue());
368 to.writeInt(((Integer) fields[3].get(data)).intValue());
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/persist/test/
H A DEnhanced3.java102 output.writeInt(iw.intValue());
H A DOperationTest.java365 assertEquals(1, k.intValue());
368 assertEquals(1, k.intValue());
376 assertEquals(expectKey, k.intValue());
379 assertEquals(expectKey, k.intValue());
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXutil.c301 int intValue;
303 if (Tcl_GetIntFromObj (interp, objPtr, &intValue) != TCL_OK)
305 if (intValue < 0) {
311 *valuePtr = intValue;
295 int intValue; local
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredList.java246 return ((Number) key[0]).intValue();
611 recordNumberToEntry(((Number) object).intValue() + baseIndex,
/macosx-10.10.1/vim-55/src/
H A Dos_macosx.m79 motion_type = [[plist objectAtIndex:0] intValue];
/macosx-10.10.1/Chess-310.6/Sources/
H A DMBCDocument.mm93 return [[properties valueForKey:key] intValue];
140 if (minSearchTime && [minSearchTime intValue] > [curSearchTime intValue])
142 [[[[self windowControllers] objectAtIndex:0] engine] setSearchTime:[curSearchTime intValue]];
477 if ([self engineSide] != kNeitherSide && [[properties valueForKey:kMBCSearchTime] intValue] < 5)
/macosx-10.10.1/IOAudioFamily-200.6/
H A DIOAudioControl.cpp516 IOReturn IOAudioControl::setValue(SInt32 intValue) argument
521 number = OSNumber::withNumber(intValue, sizeof(SInt32)*8);
700 SInt32 intValue = 0; local
704 intValue = (SInt32)number->unsigned32BitValue();
707 return intValue;
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DClassWriter.java819 int val = ((Integer) cst).intValue();
822 int val = ((Byte) cst).intValue();
828 int val = ((Short) cst).intValue();
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dplurrule.cpp1423 // double fraction = intValue + (decimalDigits / (double) visiblePower);
1474 intValue = other.intValue;
1494 intValue = 0;
1497 intValue = (int64_t)source;
1498 hasIntegerValue = (source == intValue);
1614 case tVariableI: return (double)intValue;
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/db/GettingStarted/
H A DExampleDatabaseLoad.java145 theInventory.setVendorInventory((new Integer(sArray[3])).intValue());
/macosx-10.10.1/WebKit2-7600.1.25/Shared/API/Cocoa/
H A DWKRemoteObjectCoder.mm347 *static_cast<int*>(data) = [decodeObjectFromObjectStream(self, [NSSet setWithObject:[NSNumber class]]) intValue];
433 int value = [decodeObjectFromObjectStream(decoder, [NSSet setWithObject:[NSNumber class]]) intValue];
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Plugins/
H A DNPRemoteObjectMap.cpp115 return NPVariantData::makeInt32(variant.value.intValue);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNPRuntimeObjectMap.cpp130 return jsNumber(variant.value.intValue);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/FieldGraph/
H A DCGraphController.py99 if self.fieldNormalizeCheck.intValue():
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nscell.py17 self.assertEquals(cell.intValue(), i)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/FieldGraph/
H A DCGraphController.py99 if self.fieldNormalizeCheck.intValue():
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nscell.py17 self.assertEqual(cell.intValue(), i)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/FieldGraph/
H A DCGraphController.py99 if self.fieldNormalizeCheck.intValue():

Completed in 178 milliseconds

123456