Searched defs:TheKind (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
H A DABIInfo.h71 Kind TheKind; member in class:clang::ABIArgInfo
80 : TheKind(K), TypeData(TD), PaddingType(P), UIntData(UI), BoolData0(B0),
84 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {}
104 Kind getKind() const { return TheKind; }
105 bool isDirect() const { return TheKind == Direct; }
106 bool isExtend() const { return TheKind == Extend; }
107 bool isIgnore() const { return TheKind == Ignore; }
108 bool isIndirect() const { return TheKind == Indirect; }
109 bool isExpand() const { return TheKind == Expand; }
112 return TheKind
[all...]

Completed in 82 milliseconds