Searched refs:doubleValue (Results 1 - 25 of 135) sorted by relevance

123456

/macosx-10.10/WebCore-7600.1.25/bridge/
H A Dtest.js4 myInterface.logMessage ("myInterface.doubleValue = " + myInterface.doubleValue);
18 myInterface.logMessage ("myInterface.getMySecondInterface().doubleValue = " + myInterface.getMySecondInterface().doubleValue);
H A DtestC.js4 myInterface.logMessage (" myInterface.doubleValue = " + myInterface.doubleValue);
H A DtestM.js22 myInterface.logMessage ("myInterface.getMySecondInterface().doubleValue = " + myInterface.getMySecondInterface().doubleValue);
H A Dtestbindings.cpp45 double doubleValue; member in struct:__anon5609
64 "doubleValue",
134 printf ("%f\n", (float)message->value.doubleValue);
143 if (!NPN_VariantToDouble (variant, &obj->doubleValue)) {
182 NPN_InitializeVariantWithDouble (variant, obj->doubleValue);
299 newInstance->doubleValue = 666.666;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DRadiansToDegreesTransformer.py32 return degrees.doubleValue() * (3.1415927/180.0)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DRadiansToDegreesTransformer.py32 return degrees.doubleValue() * (3.1415927/180.0)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DRadiansToDegreesTransformer.py32 return degrees.doubleValue() * (3.1415927/180.0)
/macosx-10.10/libffi-18.1/tests/testsuite/libffi.call/
H A Dcls_double_va.c14 double doubleValue = *(double*)args[1]; local
16 *(ffi_arg*)resp = printf(format, doubleValue);
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dcls_double_va.c14 double doubleValue = *(double*)args[1]; local
16 *(ffi_arg*)resp = printf(format, doubleValue);
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dcls_double_va.c14 double doubleValue = *(double*)args[1]; local
16 *(ffi_arg*)resp = printf(format, doubleValue);
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/testsuite/libffi.call/
H A Dcls_double_va.c14 double doubleValue = *(double*)args[1]; local
16 *(ffi_arg*)resp = printf(format, doubleValue);
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSCalculationValue.h65 virtual double doubleValue() const = 0;
94 double doubleValue() const;
95 bool isNegative() const { return m_expression->doubleValue() < 0; }
H A DCSSCalculationValue.cpp184 double CSSCalcValue::doubleValue() const function in class:WebCore::CSSCalcValue
186 return clampToPermittedRange(m_expression->doubleValue());
245 virtual double doubleValue() const override
370 return CSSCalcPrimitiveValue::create(evaluateOperator(op, leftSide->doubleValue(), rightSide->doubleValue()), evaluationType, isInteger);
380 return CSSCalcPrimitiveValue::create(evaluateOperator(op, leftSide->doubleValue(), rightSide->doubleValue()), leftType, isInteger);
385 double leftValue = leftSide->doubleValue() * CSSPrimitiveValue::conversionToCanonicalUnitsScaleFactor(leftType);
386 double rightValue = rightSide->doubleValue() * CSSPrimitiveValue::conversionToCanonicalUnitsScaleFactor(rightType);
402 double number = numberSide->doubleValue();
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DDoubleBinding.java46 output.writeDouble(((Number) object).doubleValue());
H A DSortedDoubleBinding.java52 output.writeSortedDouble(((Number) object).doubleValue());
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLFormattedValue.h75 static inline FormattedValue doubleValue(LValue value) { return FormattedValue(ValueFormatDouble, value); } function in namespace:JSC::FTL
/macosx-10.10/WebCore-7600.1.25/bridge/objc/
H A Dobjc_utility.h49 double doubleValue; member in union:JSC::Bindings::__anon5607
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DNumberPrototype.cpp525 double doubleValue; local
526 if (!toThisNumber(exec->thisValue(), doubleValue))
533 int32_t integerValue = static_cast<int32_t>(doubleValue);
534 if (integerValue == doubleValue)
539 return JSValue::encode(jsString(vm, vm->numericStrings.add(doubleValue)));
542 if (!std::isfinite(doubleValue))
543 return JSValue::encode(jsString(exec, String::numberToStringECMAScript(doubleValue)));
546 return JSValue::encode(jsString(exec, toStringWithRadix(s, doubleValue, radix)));
/macosx-10.10/ICU-531.30/icuSources/io/
H A Dufmt_cmn.h57 double doubleValue; /* double */ member in union:ufmt_args
/macosx-10.10/WebKit2-7600.1.25/Shared/Plugins/
H A DNPVariantData.h77 double doubleValue() const function in class:WebKit::NPVariantData
/macosx-10.10/libclosure-65/tests/
H A DNSFuture.h67 - (double)doubleValue;
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXmath.c36 (doubleVar) = (argPtr).doubleValue; \
43 (doubleVar) = (argPtr).doubleValue; \
214 resultPtr->doubleValue = (d0 < d1) ? d1 : d0;
216 resultPtr->doubleValue = (d0 > d1) ? d1 : d0;
/macosx-10.10/WebCore-7600.1.25/platform/
H A DScrollableArea.cpp513 void ScrollableArea::computeScrollbarValueAndOverhang(float currentPosition, float totalSize, float visibleSize, float& doubleValue, float& overhangAmount) argument
515 doubleValue = 0;
521 doubleValue = 0;
525 doubleValue = 1;
530 doubleValue = currentPosition / maximum;
532 doubleValue = 0;
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclDTrace.d157 double doubleValue;
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DNSScrollerImpDetails.h41 - (void)setDoubleValue:(double)doubleValue;

Completed in 331 milliseconds

123456