Searched defs:ctf (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp178 const CubicBezierTimingFunction& ctf = toCubicBezierTimingFunction(rhs); local
179 if ((lhs.subType() == CubicBezierTimingFunction::Custom) && (ctf.subType() == CubicBezierTimingFunction::Custom))
180 return (lhs.x1() == ctf.x1()) && (lhs.y1() == ctf.y1()) && (lhs.x2() == ctf.x2()) && (lhs.y2() == ctf.y2());
182 return lhs.subType() == ctf.subType();
/external/libnfc-nci/src/nfc/ndef/
H A Dndef_cho_utils.c125 char *p_id_str, UINT8 ctf,
140 UINT8_TO_STREAM (p, (ctf & 0x07));
124 NDEF_MsgAddWktHc(UINT8 *p_msg, UINT32 max_size, UINT32 *p_cur_size, char *p_id_str, UINT8 ctf, UINT8 carrier_type_len, UINT8 *p_carrier_type, UINT8 carrier_data_len, UINT8 *p_carrier_data) argument
/external/clang/test/SemaCXX/
H A Doverloaded-operator.cpp208 void test_funcptr_call(ConvertToFunc ctf, ConvertToFuncDerived ctfd) { argument
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();

Completed in 131 milliseconds