reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/CodeGen/CGFunctionInfo.h
  255   Kind getKind() const { return TheKind; }
  256   bool isDirect() const { return TheKind == Direct; }
  257   bool isInAlloca() const { return TheKind == InAlloca; }
  258   bool isExtend() const { return TheKind == Extend; }
  259   bool isIgnore() const { return TheKind == Ignore; }
  260   bool isIndirect() const { return TheKind == Indirect; }
  261   bool isExpand() const { return TheKind == Expand; }
  262   bool isCoerceAndExpand() const { return TheKind == CoerceAndExpand; }
tools/clang/lib/CodeGen/TargetInfo.cpp
  223   switch (TheKind) {