Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp584 case Interpreter::InterfaceKind::WithAlloc: in getCall()
585 case Interpreter::InterfaceKind::CopyArray: { in getCall()
633 case Interpreter::InterfaceKind::NoAlloc: { in getCall()
648 Interpreter::InterfaceKind
653 Interpreter::InterfaceKind
658 Interpreter::InterfaceKind
661 return Interpreter::InterfaceKind::NoAlloc; in VisitFunctionProtoType()
666 return Interpreter::InterfaceKind::NoAlloc; in VisitPointerType()
673 return Interpreter::InterfaceKind::NoAlloc; in VisitReferenceType()
687 return Interpreter::InterfaceKind::NoAlloc; in VisitBuiltinType()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h132 enum InterfaceKind { NoAlloc, WithAlloc, CopyArray, NewTag }; enum