HomeSort by relevance Sort by last modified time
    Searched defs:Poly (Results 1 - 7 of 7) 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}}
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.h 60 enum Shape { Default, Poly, Rect, Circle, Unknown };
  /frameworks/base/core/jni/android/opengl/
poly.h 41 } Poly;
47 int poly_clip_to_frustum(Poly *p1);
  /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/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...]

Completed in 666 milliseconds