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

  /external/webkit/Source/WebCore/platform/animation/
TimingFunction.h 94 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(&other); local
95 return m_x1 == ctf->m_x1 && m_y1 == ctf->m_y1 && m_x2 == ctf->m_x2 && m_y2 == ctf->m_y2;
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCAAnimationWin.cpp 129 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(timingFunction); local
130 return RetainPtr<CACFTimingFunctionRef>(AdoptCF, CACFTimingFunctionCreate(static_cast<float>(ctf->x1()), static_cast<float>(ctf->y1()), static_cast<float>(ctf->x2()), static_cast<float>(ctf->y2())));
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp 555 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(tf); local
556 list->append(CSSCubicBezierTimingFunctionValue::create(ctf->x1(), ctf->y1(), ctf->x2(), ctf->y2()));
568 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(tf.get()); local
569 list->append(CSSCubicBezierTimingFunctionValue::create(ctf->x1(), ctf->y1(), ctf->x2(), ctf->y2()))
    [all...]
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 1326 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(tf); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 1349 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(timingFunction); local
    [all...]

Completed in 77 milliseconds