HomeSort by relevance Sort by last modified time
    Searched refs:ctf (Results 1 - 9 of 9) 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/clang/test/SemaCXX/
overloaded-operator.cpp 208 void test_funcptr_call(ConvertToFunc ctf, ConvertToFuncDerived ctfd) {
209 int &i1 = ctf(1.0f, 2.0);
210 float &f1 = ctf((short int)1, 1.0f);
211 ctf((long int)17, 2.0); // expected-error{{call to object of type 'ConvertToFunc' is ambiguous}}
212 ctf();
  /external/quake/quake/src/WinQuake/
quake-rogue.spec.sh 70 dirty' devastation. CTF is one of the most exciting team multi-player
73 Including two brand new CTF features.
103 %attr(644,root,root) $3/rogue/docs/ctf.doc
104 %attr(644,root,root) $3/rogue/docs/ctf.htm
105 %attr(644,root,root) $3/rogue/docs/ctf.txt
Makefile.linuxi386 1202 cp $(MASTER_DIR)/rogue/docs/ctf.doc $(RPMROGUEDIR)/$(INSTALLDIR)/rogue/docs/.
1203 cp $(MASTER_DIR)/rogue/docs/ctf.htm $(RPMROGUEDIR)/$(INSTALLDIR)/rogue/docs/
    [all...]
  /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/platform/graphics/ca/mac/
PlatformCAAnimationMac.mm 140 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(timingFunction);
141 return [CAMediaTimingFunction functionWithControlPoints:static_cast<float>(ctf->x1()) :static_cast<float>(ctf->y1())
142 :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 93 milliseconds