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

/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAnimatedAngle.idl30 readonly attribute SVGAngle baseVal;
H A DSVGAnimatedBoolean.idl30 [StrictTypeChecking, SetterRaisesException] attribute boolean baseVal;
H A DSVGAnimatedEnumeration.idl30 [StrictTypeChecking, SetterRaisesException] attribute unsigned short baseVal;
H A DSVGAnimatedInteger.idl30 [StrictTypeChecking, SetterRaisesException] attribute long baseVal;
H A DSVGAnimatedLength.idl30 readonly attribute SVGLength baseVal;
H A DSVGAnimatedLengthList.idl30 readonly attribute SVGLengthList baseVal;
H A DSVGAnimatedNumber.idl31 [StrictTypeChecking, SetterRaisesException] attribute float baseVal;
H A DSVGAnimatedNumberList.idl30 readonly attribute SVGNumberList baseVal;
H A DSVGAnimatedPreserveAspectRatio.idl30 readonly attribute SVGPreserveAspectRatio baseVal;
H A DSVGAnimatedRect.idl30 readonly attribute SVGRect baseVal;
H A DSVGAnimatedString.idl30 [SetterRaisesException] attribute DOMString baseVal;
H A DSVGAnimatedTransformList.idl30 readonly attribute SVGTransformList baseVal;
H A DSVGPolyElement.cpp160 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(static_pointer_cast<SVGAnimatedPointList>(lookupOrCreatePointsWrapper(this))->baseVal());
H A DSVGPathElement.cpp344 return static_cast<SVGPathSegListPropertyTearOff*>(static_pointer_cast<SVGAnimatedPathSegListPropertyTearOff>(lookupOrCreateDWrapper(this))->baseVal());
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DCommonSlowPaths.h78 inline bool opIn(ExecState* exec, JSValue propName, JSValue baseVal) argument
80 if (!baseVal.isObject()) {
81 exec->vm().exception = createInvalidParamError(exec, "in", baseVal);
85 JSObject* baseObj = asObject(baseVal);
/macosx-10.9.5/WebCore-7537.78.1/svg/properties/
H A DSVGAnimatedStaticPropertyTearOff.h33 PropertyType& baseVal() function in class:WebCore::SVGAnimatedStaticPropertyTearOff
H A DSVGAnimatedTransformListPropertyTearOff.h32 virtual SVGListPropertyTearOff<SVGTransformList>* baseVal() function in class:WebCore::SVGAnimatedTransformListPropertyTearOff
H A DSVGAnimatedPropertyTearOff.h47 PropertyTearOff* baseVal() function in class:WebCore::SVGAnimatedPropertyTearOff
H A DSVGAnimatedPathSegListPropertyTearOff.h35 virtual SVGListProperty<SVGPathSegList>* baseVal() function in class:WebCore::SVGAnimatedPathSegListPropertyTearOff
51 // This should ever be called for our baseVal, as animVal can't modify the list.
58 // This should ever be called for our baseVal, as animVal can't modify the list.
H A DSVGAnimatedListPropertyTearOff.h43 virtual ListProperty* baseVal() function in class:WebCore::SVGAnimatedListPropertyTearOff
61 // This should ever be called for our baseVal, as animVal can't modify the list.
69 // This should ever be called for our baseVal, as animVal can't modify the list.
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/MCDisassembler/
H A DEDOperand.cpp188 uint64_t baseVal; local
189 if (callback(&baseVal, baseReg, arg))
191 addr += baseVal;
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITOpcodes32_64.cpp239 unsigned baseVal = currentInstruction[3].u.operand; local
241 emitLoadPayload(baseVal, regT0);
243 // Check that baseVal is a cell.
244 emitJumpSlowCaseIfNotJSCell(baseVal);
246 // Check that baseVal 'ImplementsHasInstance'.
258 // We use regT0 for baseVal since we will be done with this first, and we can then use it for the result.
262 // Check that proto are cells. baseVal must be a cell - this is checked by op_check_has_instance.
295 unsigned baseVal = currentInstruction[3].u.operand; local
297 linkSlowCaseIfNotJSCell(iter, baseVal);
302 stubCall.addArgument(baseVal);
[all...]
H A DJITOpcodes.cpp121 unsigned baseVal = currentInstruction[3].u.operand; local
123 emitGetVirtualRegister(baseVal, regT0);
125 // Check that baseVal is a cell.
126 emitJumpSlowCaseIfNotJSCell(regT0, baseVal);
128 // Check that baseVal 'ImplementsHasInstance'.
139 // Load the operands (baseVal, proto, and value respectively) into registers.
140 // We use regT0 for baseVal since we will be done with this first, and we can then use it for the result.
144 // Check that proto are cells. baseVal must be a cell - this is checked by op_check_has_instance.
1081 unsigned baseVal = currentInstruction[3].u.operand; local
1083 linkSlowCaseIfNotJSCell(iter, baseVal);
[all...]
H A DJITStubs.cpp1884 JSValue baseVal = stackFrame.args[1].jsValue(); local
1886 if (baseVal.isObject()) {
1887 JSObject* baseObject = asObject(baseVal);
1896 stackFrame.vm->exception = createInvalidParamError(callFrame, "instanceof", baseVal);
3305 JSValue baseVal = stackFrame.args[1].jsValue(); local
3307 if (!baseVal.isObject()) {
3308 stackFrame.vm->exception = createInvalidParamError(stackFrame.callFrame, "in", baseVal);
3313 JSObject* baseObj = asObject(baseVal);
/macosx-10.9.5/JavaScriptCore-7537.78.1/llint/
H A DLLIntSlowPaths.cpp734 JSValue baseVal = LLINT_OP_C(3).jsValue(); local
735 if (baseVal.isObject()) {
736 JSObject* baseObject = asObject(baseVal);
743 LLINT_THROW(createInvalidParamError(exec, "instanceof", baseVal));

Completed in 217 milliseconds