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 72 Kind TheKind;
83 : TheKind(K), TypeData(TD), PaddingType(P), UIntData(UI), BoolData0(B0),
87 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {}
124 Kind getKind() const { return TheKind; }
125 bool isDirect() const { return TheKind == Direct; }
126 bool isExtend() const { return TheKind == Extend; }
127 bool isIgnore() const { return TheKind == Ignore; }
128 bool isIndirect() const { return TheKind == Indirect; }
129 bool isExpand() const { return TheKind == Expand; }
132 return TheKind == Direct || TheKind == Extend
    [all...]
TargetInfo.cpp 62 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 59 milliseconds