OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Poly
(Results
1 - 10
of
10
) 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
61
enum Shape { Default,
Poly
, Rect, Circle, Unknown };
HTMLAreaElement.cpp
60
else if (equalIgnoringCase(value, "
poly
"))
61
m_shape =
Poly
;
140
shape =
Poly
;
146
case
Poly
:
/external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h
171
static void mergePolyMatchers(const PolyMatcher &
Poly
, MatcherList *Out,
175
static void mergePolyMatchers(const PolyMatcher &
Poly
, MatcherList *Out,
177
Out->add(ast_matchers::internal::Matcher<typename TypeList::head>(
Poly
));
178
mergePolyMatchers(
Poly
, Out, typename TypeList::tail());
185
/// the latter, we instantiate all the possible Matcher<T> of the
poly
matcher.
Completed in 694 milliseconds