/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) 103 * (n+6)gon, so POLY_NMAX in poly.h must be big enough to allow that. 106 int poly_clip_to_frustum(Poly *p1) 111 Poly p2, *p, *q, *r; 150 memcpy(p1, &p2, sizeof(Poly)-(POLY_NMAX-p2.n)*sizeof(Poly_vert));
|
util.cpp | 42 #include "poly.h" 57 print_poly(const char* label, Poly* pPoly) { 116 Poly poly; local 117 float* pDest = & poly.vert[0].sx; 119 poly.n = 3; 123 result = poly_clip_to_frustum(&poly); [all...] |
/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/skia/src/gpu/ |
GrTessellator.cpp | 104 struct Poly; 390 Poly* fLeftPoly; // The Poly to the left of this edge, if any. 391 Poly* fRightPoly; // The Poly to the right of this edge, if any. 518 struct Poly { 519 Poly(Vertex* v, int winding) 531 LOG("*** created Poly %d\n", fID); 609 Poly* addEdge(Edge* e, Side side, SkArenaAlloc& alloc) { 610 LOG("addEdge (%g -> %g) to poly %d, %s side\n" 613 Poly* poly = this; local 680 Poly* poly = alloc.make<Poly>(v, winding); local 1610 Poly* poly = new_poly(&polys, v, winding, alloc); local [all...] |
/external/skqp/src/gpu/ |
GrTessellator.cpp | 104 struct Poly; 390 Poly* fLeftPoly; // The Poly to the left of this edge, if any. 391 Poly* fRightPoly; // The Poly to the right of this edge, if any. 518 struct Poly { 519 Poly(Vertex* v, int winding) 531 LOG("*** created Poly %d\n", fID); 609 Poly* addEdge(Edge* e, Side side, SkArenaAlloc& alloc) { 610 LOG("addEdge (%g -> %g) to poly %d, %s side\n" 613 Poly* poly = this; local 680 Poly* poly = alloc.make<Poly>(v, winding); local 1610 Poly* poly = new_poly(&polys, v, winding, alloc); local [all...] |