Home
last modified time | relevance | path

Searched refs:InterfaceKind (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp625 : public TypeVisitor<InterfaceKindVisitor, Interpreter::InterfaceKind> {
637 Interpreter::InterfaceKind VisitRecordType(const RecordType *Ty) { in VisitRecordType()
638 return Interpreter::InterfaceKind::WithAlloc; in VisitRecordType()
641 Interpreter::InterfaceKind
643 return Interpreter::InterfaceKind::WithAlloc; in VisitMemberPointerType()
646 Interpreter::InterfaceKind
648 return Interpreter::InterfaceKind::CopyArray; in VisitConstantArrayType()
651 Interpreter::InterfaceKind
654 return Interpreter::InterfaceKind::NoAlloc; in VisitFunctionProtoType()
657 Interpreter::InterfaceKind VisitPointerType(const PointerType *Ty) { in VisitPointerType()
[all …]
/src/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h170 enum InterfaceKind { NoAlloc, WithAlloc, CopyArray, NewTag }; enum