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

  /external/clang/lib/CodeGen/
ABIInfo.h 73 Kind TheKind;
84 : TheKind(K), TypeData(TD), PaddingType(P), UIntData(UI), BoolData0(B0),
88 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {}
125 Kind getKind() const { return TheKind; }
126 bool isDirect() const { return TheKind == Direct; }
127 bool isExtend() const { return TheKind == Extend; }
128 bool isIgnore() const { return TheKind == Ignore; }
129 bool isIndirect() const { return TheKind == Indirect; }
130 bool isExpand() const { return TheKind == Expand; }
133 return TheKind == Direct || TheKind == Extend
    [all...]
TargetInfo.cpp 97 switch (TheKind) {
    [all...]
  /external/clang/include/clang/Basic/
TargetCXXABI.h 87 Kind TheKind;
91 TargetCXXABI() : TheKind(GenericItanium) {}
93 TargetCXXABI(Kind kind) : TheKind(kind) {}
96 TheKind = kind;
99 Kind getKind() const { return TheKind; }
ObjCRuntime.h 56 Kind TheKind;
61 ObjCRuntime() : TheKind(MacOSX) {}
64 : TheKind(kind), Version(version) {}
67 TheKind = kind;
71 Kind getKind() const { return TheKind; }
  /external/clang/lib/Basic/
ObjCRuntime.cpp 77 TheKind = kind;

Completed in 110 milliseconds