OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RecTy
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/TableGen/
Record.h
31
//
RecTy
subclasses.
69
class
RecTy
{
90
RecTy
(RecTyKind K) : Kind(K), ListTy(0) {}
91
virtual ~
RecTy
() {}
99
virtual bool typeIsConvertibleTo(const
RecTy
*RHS) const = 0;
132
virtual bool baseClassOf(const
RecTy
*) const;
135
inline raw_ostream &operator<<(raw_ostream &OS, const
RecTy
&Ty) {
143
class BitRecTy : public
RecTy
{
145
BitRecTy() :
RecTy
(BitRecTyKind) {}
147
static bool classof(const
RecTy
*RT)
[
all
...]
/external/clang/lib/CodeGen/
CGCall.cpp
55
QualType
RecTy
= Context.getTagDeclType(RD)->getCanonicalTypeInternal();
56
return Context.getPointerType(CanQualType::CreateUnsafe(
RecTy
));
[
all
...]
Completed in 57 milliseconds