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

  /external/clang/test/SemaCXX/
runtimediag-ppe.cpp 14 class Poly { virtual ~Poly(); };
15 Poly& P(int);
dynamic-cast.cpp 13 struct Poly
18 struct PolyDerived : Poly
66 void poly() function
68 (void)dynamic_cast<A*>((Poly*)0);
69 (void)dynamic_cast<A&>(*((Poly*)0));
74 (void)dynamic_cast<Poly*>((A*)0); // expected-error {{'A' is not polymorphic}}
  /external/clang/test/CXX/basic/basic.def.odr/
p2-typeid.cpp 13 struct Poly {
14 virtual ~Poly();
28 void test(X<Poly> xp, X<Poly, Poly&> xpr, X<NonPoly> xnp, X<NonPoly, NonPoly&> xnpr) {
30 xp.g(Poly());
35 xpr.g(Poly()); // expected-note{{instantiation of member function}}
  /frameworks/base/core/jni/android/opengl/
poly.h 41 } Poly;
47 int poly_clip_to_frustum(Poly *p1);
poly_clip.cpp 30 #include "poly.h"
59 void poly_clip_to_halfspace(Poly* p, Poly* q, int index, float sign, float k)
104 * (n+6)gon, so POLY_NMAX in poly.h must be big enough to allow that.
107 int poly_clip_to_frustum(Poly *p1)
112 Poly p2, *p, *q, *r;
151 memcpy(p1, &p2, sizeof(Poly)-(POLY_NMAX-p2.n)*sizeof(Poly_vert));
util.cpp 39 #include "poly.h"
75 print_poly(const char* label, Poly* pPoly) {
136 Poly poly; local
137 float* pDest = & poly.vert[0].sx;
139 poly.n = 3;
143 result = poly_clip_to_frustum(&poly);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p12-0x.cpp 27 class Poly { virtual ~Poly(); };
29 const std::type_info& m = typeid(*(Poly*)S::m); // expected-error {{invalid use of non-static data member}}
30 const std::type_info& n = typeid(*(Poly*)(0*sizeof S::m));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.h 59 enum Shape { Default, Poly, Rect, Circle, Unknown };
HTMLAreaElement.cpp 56 else if (equalIgnoringCase(value, "poly"))
57 m_shape = Poly;
136 shape = Poly;
141 case Poly:
  /external/clang/utils/TableGen/
NeonEmitter.cpp 62 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
133 bool Float, Signed, Void, Poly, Constant, Pointer;
142 : Float(false), Signed(false), Void(true), Poly(false), Constant(false),
147 : TS(TS), Float(false), Signed(false), Void(false), Poly(false),
167 bool isInteger() const { return !Float && !Poly; }
174 bool isPoly() const { return Poly; }
192 Poly = false;
549 if (Poly)
550 S += "poly";
627 if (Poly) {
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 236 static void mergePolyMatchers(const PolyMatcher &Poly,
241 static void mergePolyMatchers(const PolyMatcher &Poly,
243 Out.push_back(ast_matchers::internal::Matcher<typename TypeList::head>(Poly));
244 mergePolyMatchers(Poly, Out, typename TypeList::tail());
251 /// For the latter, we instantiate all the possible Matcher<T> of the poly

Completed in 1128 milliseconds