HomeSort by relevance Sort by last modified time
    Searched defs:StructorType (Results 1 - 3 of 3) 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...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 228 unsigned StructorType;
391 StructorType(0), SeqID(0), AbiTagsRoot(AbiTags) {
398 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
402 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
407 Structor(Outer.Structor), StructorType(Outer.StructorType),
412 Structor(Outer.Structor), StructorType(Outer.StructorType),
    [all...]
MicrosoftMangle.cpp 254 unsigned StructorType;
275 : Context(C), Out(Out_), Structor(nullptr), StructorType(-1),
281 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
287 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
    [all...]

Completed in 981 milliseconds