HomeSort by relevance Sort by last modified time
    Searched refs:StructorType (Results 1 - 15 of 15) sorted by null

  /external/clang/lib/CodeGen/
CodeGenTypes.h 59 enum class StructorType {
65 inline CXXCtorType toCXXCtorType(StructorType T) {
67 case StructorType::Complete:
69 case StructorType::Base:
71 case StructorType::Deleting:
74 llvm_unreachable("not a StructorType");
77 inline StructorType getFromCtorType(CXXCtorType T) {
80 return StructorType::Complete;
82 return StructorType::Base;
92 inline CXXDtorType toCXXDtorType(StructorType T)
    [all...]
CGCXX.cpp 218 StructorType Type) {
243 const CXXMethodDecl *MD, StructorType Type, const CGFunctionInfo *FnInfo,
321 DD, StructorType::Complete);
CGCXXABI.h 286 virtual void buildStructorSignature(const CXXMethodDecl *MD, StructorType T,
558 virtual void emitCXXStructor(const CXXMethodDecl *MD, StructorType Type) = 0;
MicrosoftCXXABI.cpp 205 void buildStructorSignature(const CXXMethodDecl *MD, StructorType T,
669 void emitCXXStructor(const CXXMethodDecl *MD, StructorType Type) override;
    [all...]
CodeGenModule.h 811 StructorType Type);
815 getAddrOfCXXStructor(const CXXMethodDecl *MD, StructorType Type,
    [all...]
ItaniumCXXABI.cpp 215 void buildStructorSignature(const CXXMethodDecl *MD, StructorType T,
371 void emitCXXStructor(const CXXMethodDecl *MD, StructorType Type) override;
    [all...]
CGDeclCXX.cpp 97 function = CGM.getAddrOfCXXStructor(dtor, StructorType::Complete);
CGExprCXX.cpp 88 const CallExpr *CE, StructorType Type) {
211 Dtor, StructorType::Complete);
214 Ctor, StructorType::Complete);
241 CGM.getAddrOfCXXStructor(Dtor, StructorType::Complete, FInfo, Ty);
    [all...]
CGClass.cpp     [all...]
CGCall.cpp 224 StructorType Type) {
    [all...]
CodeGenFunction.h     [all...]
CGExpr.cpp 288 StructorType::Complete);
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 219 unsigned StructorType;
237 : Context(C), Out(Out_), Structor(nullptr), StructorType(-1),
243 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
249 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
    [all...]
ItaniumMangle.cpp 220 unsigned StructorType;
271 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(0),
279 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
283 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 108 milliseconds