HomeSort by relevance Sort by last modified time
    Searched refs:baseVal (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/Source/WebCore/svg/
SVGAnimatedAngle.idl 29 readonly attribute SVGAngle baseVal;
SVGAnimatedBoolean.idl 29 attribute [StrictTypeChecking] boolean baseVal;
SVGAnimatedEnumeration.idl 29 attribute [StrictTypeChecking] unsigned short baseVal;
SVGAnimatedInteger.idl 29 attribute [StrictTypeChecking] long baseVal;
SVGAnimatedLength.idl 29 readonly attribute SVGLength baseVal;
SVGAnimatedLengthList.idl 29 readonly attribute SVGLengthList baseVal;
SVGAnimatedNumber.idl 30 attribute [StrictTypeChecking] float baseVal;
SVGAnimatedNumberList.idl 29 readonly attribute SVGNumberList baseVal;
SVGAnimatedPreserveAspectRatio.idl 29 readonly attribute SVGPreserveAspectRatio baseVal;
SVGAnimatedRect.idl 29 readonly attribute SVGRect baseVal;
SVGAnimatedString.idl 29 attribute DOMString baseVal
SVGAnimatedTransformList.idl 29 readonly attribute SVGTransformList baseVal;
SVGPolyElement.cpp 139 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(m_animatablePointsList->baseVal());
SVGPathElement.cpp 296 return static_cast<SVGPathSegListPropertyTearOff*>(m_animatablePathSegList->baseVal(PathSegUnalteredRole));
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedStaticPropertyTearOff.h 31 PropertyType& baseVal()
SVGAnimatedTransformListPropertyTearOff.h 32 SVGProperty* baseVal()
SVGAnimatedPathSegListPropertyTearOff.h 34 SVGProperty* baseVal(SVGPathSegRole role)
50 // This should ever be called for our baseVal, as animVal can't modify the list.
SVGAnimatedPropertyTearOff.h 32 SVGProperty* baseVal()
SVGAnimatedListPropertyTearOff.h 40 SVGProperty* baseVal()
58 // This should ever be called for our baseVal, as animVal can't modify the list.
105 // FIXME: The list wrapper cache is shared between baseVal/animVal. If we implement animVal,
  /external/llvm/lib/MC/MCDisassembler/
EDOperand.cpp 184 uint64_t baseVal;
185 if (callback(&baseVal, baseReg, arg))
187 addr += baseVal;
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundCheckerV2.cpp 225 NonLoc baseVal, CharUnits scaling,
227 return sb.evalBinOpNN(state, BO_Mul, baseVal,
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 27 SVal baseVal = state->getSVal(Ex->getBase());
28 SVal location = state->getLValue(Ex->getDecl(), baseVal);
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]
JITOpcodes.cpp 373 unsigned baseVal = currentInstruction[1].u.operand;
375 emitGetVirtualRegister(baseVal, regT0);
377 // Check that baseVal is a cell.
378 emitJumpSlowCaseIfNotJSCell(regT0, baseVal);
380 // Check that baseVal 'ImplementsHasInstance'.
389 unsigned baseVal = currentInstruction[3].u.operand;
392 // Load the operands (baseVal, proto, and value respectively) into registers.
393 // We use regT0 for baseVal since we will be done with this first, and we can then use it for the result.
395 emitGetVirtualRegister(baseVal, regT0);
398 // Check that proto are cells. baseVal must be a cell - this is checked by op_check_has_instance
    [all...]
JITOpcodes32_64.cpp 555 unsigned baseVal = currentInstruction[1].u.operand;
557 emitLoadPayload(baseVal, regT0);
559 // Check that baseVal is a cell.
560 emitJumpSlowCaseIfNotJSCell(baseVal);
562 // Check that baseVal 'ImplementsHasInstance'.
571 unsigned baseVal = currentInstruction[3].u.operand;
575 // We use regT0 for baseVal since we will be done with this first, and we can then use it for the result.
577 emitLoadPayload(baseVal, regT0);
580 // Check that proto are cells. baseVal must be a cell - this is checked by op_check_has_instance.
589 // Check that baseVal 'ImplementsDefaultHasInstance'
    [all...]

Completed in 264 milliseconds

1 2