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

1234567

/macosx-10.10/ICU-531.30/icuSources/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...]
/macosx-10.10/ICU-531.30/icuSources/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
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A DinstanceVariables.m11 int intValue;
30 intValue = 42;
/macosx-10.10/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DSCSIInitiator.m188 domain = [ [ value objectForKey: @kIOPropertySCSIDomainIdentifierKey ] intValue ];
216 if ( [ [ device deviceIdentifier ] intValue ] == [ [ newDevice deviceIdentifier ] intValue ] )
250 if ( [ [ device deviceIdentifier ] intValue ] == targetID )
288 initiatorID = [ value intValue ];
298 domainID = [ [ value objectForKey: @kIOPropertySCSIDomainIdentifierKey ] intValue ];
423 if ( [ [ obj1 deviceIdentifier ] intValue ] < [ [ obj2 deviceIdentifier ] intValue ] )
428 else if ( [ [ obj1 deviceIdentifier ] intValue ] > [ [ obj2 deviceIdentifier ] intValue ] )
[all...]
H A DSCSIDevice.m185 [ self setPeripheralDeviceType: [ NSString stringWithFormat: @"%02Xh", [ value intValue ] ] ];
268 domain = [ [ value objectForKey: @kIOPropertySCSIDomainIdentifierKey ] intValue ];
292 target = [ [ value objectForKey: @kIOPropertySCSITargetIdentifierKey ] intValue ];
313 value = [ number intValue ];
537 result = ReprobeDomainTarget ( [ domainIdentifier intValue ],
538 [ deviceIdentifier intValue ] );
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DIntegerBinding.java41 output.writeInt(((Number) object).intValue());
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/test/
H A DinstanceVariables.m11 int intValue;
30 intValue = 42;
/macosx-10.10/WebCore-7600.1.25/bridge/
H A Dtest.js5 myInterface.logMessage ("myInterface.intValue = " + myInterface.intValue);
H A DtestC.js5 myInterface.logMessage (" myInterface.intValue = " + myInterface.intValue);
H A Dtestbindings.cpp46 int intValue; member in struct:__anon5609
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;
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXmath.c32 (doubleVar) = (double) (argPtr).intValue; \
41 (doubleVar) = (double) (argPtr).intValue; \
224 w0 = (t0 == TCL_INT) ? Tcl_LongAsWide(args[0].intValue) :
226 w1 = (t1 == TCL_INT) ? Tcl_LongAsWide(args[1].intValue) :
240 long i0 = args[0].intValue;
241 long i1 = args[1].intValue;
245 resultPtr->intValue = (i0 < i1) ? i1 : i0;
247 resultPtr->intValue = (i0 > i1) ? i1 : i0;
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSValuePool.cpp98 int intValue = static_cast<int>(value); local
99 if (value != intValue)
117 if (!cache[intValue])
118 cache[intValue] = CSSPrimitiveValue::create(value, type);
119 return *cache[intValue];
/macosx-10.10/WebCore-7600.1.25/bridge/objc/
H A Dobjc_utility.h45 int intValue; member in union:JSC::Bindings::__anon5607
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/test/
H A DinstanceVariables.m11 int intValue;
30 intValue = 42;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/Todo/
H A DInfoWindowController.py47 if self.infoNotifyHour.intValue():
50 self.infoNotifyHour.intValue(),
51 self.infoNotifyMinute.intValue(),
69 infoNotifyOtherHours.intValue() *
106 self.infoNotifyHour.intValue(),
107 self.infoNotifyMinute.intValue(),
113 theItem.setSecsUntilNotify_(self.infoNotifyOtherHours.intValue() * SECS_IN_HOUR)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/Todo/
H A DInfoWindowController.py47 if self.infoNotifyHour.intValue():
50 self.infoNotifyHour.intValue(),
51 self.infoNotifyMinute.intValue(),
69 infoNotifyOtherHours.intValue() *
106 self.infoNotifyHour.intValue(),
107 self.infoNotifyMinute.intValue(),
113 theItem.setSecsUntilNotify_(self.infoNotifyOtherHours.intValue() * SECS_IN_HOUR)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/Todo/
H A DInfoWindowController.py47 if self.infoNotifyHour.intValue():
50 self.infoNotifyHour.intValue(),
51 self.infoNotifyMinute.intValue(),
69 infoNotifyOtherHours.intValue() *
106 self.infoNotifyHour.intValue(),
107 self.infoNotifyMinute.intValue(),
113 theItem.setSecsUntilNotify_(self.infoNotifyOtherHours.intValue() * SECS_IN_HOUR)
/macosx-10.10/ICU-531.30/icuSources/tools/gentest/
H A Dgentest.c106 uint16_t intValue=2000; local
120 udata_write16(pData, intValue);
129 size=sizeof(stringValue) + sizeof(intValue);
/macosx-10.10/configd-699.1.5/scutil.tproj/
H A Ddictionary.c203 int intValue; local
205 if (sscanf(argv[0], "%d", &intValue) == 1) {
206 val = CFNumberCreate(NULL, kCFNumberIntType, &intValue);
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Ddcfmapts.cpp606 ASSERT_EQUAL(123, fd.intValue);
617 ASSERT_EQUAL(123, fd.intValue);
628 ASSERT_EQUAL(123, fd.intValue);
639 ASSERT_EQUAL(123, fd.intValue);
650 ASSERT_EQUAL(123, fd.intValue);
661 ASSERT_EQUAL(1, fd.intValue);
686 ASSERT_EQUAL(12, fd.intValue);
697 ASSERT_EQUAL(12, fd.intValue);
709 ASSERT_EQUAL(345678901234567890LL, fd.intValue);
721 ASSERT_EQUAL(1, fd.intValue);
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/
H A DKeyedCoding.h71 int64_t intValue; local
72 if (!decodeInt64(key, intValue))
75 if (!isValidEnumFunction(static_cast<T>(intValue)))
78 value = static_cast<T>(intValue);
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclTestObj.c611 int intValue, varIndex, i;
635 intValue = i;
646 Tcl_SetIntObj(varPtr[varIndex], intValue);
648 SetVarToObj(varIndex, Tcl_NewIntObj(intValue));
659 intValue = i;
661 Tcl_SetIntObj(varPtr[varIndex], intValue);
663 SetVarToObj(varIndex, Tcl_NewIntObj(intValue));
673 intValue = i;
675 Tcl_SetLongObj(varPtr[varIndex], intValue);
677 SetVarToObj(varIndex, Tcl_NewLongObj(intValue));
605 int intValue, varIndex, i; local
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclTestObj.c517 int intValue, varIndex, i;
541 intValue = i;
552 Tcl_SetIntObj(varPtr[varIndex], intValue);
554 SetVarToObj(varIndex, Tcl_NewIntObj(intValue));
565 intValue = i;
567 Tcl_SetIntObj(varPtr[varIndex], intValue);
569 SetVarToObj(varIndex, Tcl_NewIntObj(intValue));
579 intValue = i;
581 Tcl_SetLongObj(varPtr[varIndex], intValue);
583 SetVarToObj(varIndex, Tcl_NewLongObj(intValue));
511 int intValue, varIndex, i; local
[all...]
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/IAS/
H A DIrIASService.cpp96 IrDAErr TIASService::AddIntegerEntry(const UChar* className, const UChar* attributeName, ULong intValue) argument
101 theEntry = TIASElement::tIASElement(intValue); // create and initialize
922 ULong intValue; local
940 if (buffer->Getn((UByte*)&intValue, sizeof(intValue)) != sizeof(intValue)) {
943 intValue = ntohl(intValue); // convert to host before saving
944 rc = SetInteger(intValue);

Completed in 229 milliseconds

1234567