HomeSort by relevance Sort by last modified time
    Searched defs:baseVal (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedPathSegListPropertyTearOff.h 34 SVGProperty* baseVal(SVGPathSegRole role)
50 // This should ever be called for our baseVal, as animVal can't modify the list.
SVGAnimatedTransformListPropertyTearOff.h 32 SVGProperty* baseVal()
SVGAnimatedPropertyTearOff.h 32 SVGProperty* baseVal()
SVGAnimatedStaticPropertyTearOff.h 31 PropertyType& 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/Core/
ExprEngineObjC.cpp 27 SVal baseVal = state->getSVal(Ex->getBase());
28 SVal location = state->getLValue(Ex->getDecl(), baseVal);
ExprEngine.cpp 367 SVal baseVal =
369 const MemRegion *baseReg = baseVal.getAsRegion();
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
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...]
JITStubs.cpp     [all...]

Completed in 384 milliseconds