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

References

tools/clang/include/clang/AST/Type.h
 3661   CallingConv getCallConv() const { return getExtInfo().getCC(); }
tools/clang/include/clang/CodeGen/CGFunctionInfo.h
  688     ID.AddInteger(info.getCC());
tools/clang/lib/AST/ASTContext.cpp
 8694   if (lbaseInfo.getCC() != rbaseInfo.getCC())
 8694   if (lbaseInfo.getCC() != rbaseInfo.getCC())
tools/clang/lib/AST/ASTStructuralEquivalence.cpp
  385   if (EI1.getCC() != EI2.getCC())
  385   if (EI1.getCC() != EI2.getCC())
tools/clang/lib/AST/ItaniumMangle.cpp
 2771   StringRef CCQualifier = getCallingConvQualifierName(T->getExtInfo().getCC());
tools/clang/lib/AST/JSONNodeDumper.cpp
  495   JOS.attribute("cc", FunctionType::getNameForCallConv(E.getCC()));
tools/clang/lib/AST/TextNodeDumper.cpp
 1139   OS << " " << FunctionType::getNameForCallConv(EI.getCC());
tools/clang/lib/AST/TypePrinter.cpp
  848     switch (Info.getCC()) {
tools/clang/lib/CodeGen/CGCall.cpp
  756   unsigned CC = ClangCallConvToLLVMCallConv(info.getCC());
  772   } else if (info.getCC() == CC_Swift) {
  814   FI->ASTCallingConvention = info.getCC();
tools/clang/lib/Sema/SemaDecl.cpp
 3287   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
 3287   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
 3296       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
 3303           << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
 3305       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
 3311         << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
 3314             FunctionType::getNameForCallConv(FI.getCC()));
 9103       CallingConv CC = FT->getExtInfo().getCC();
 9800     if (OldTypeInfo.getCC() != NewTypeInfo.getCC())
 9800     if (OldTypeInfo.getCC() != NewTypeInfo.getCC())
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 3973   if (EPI.ExtInfo.getCC() != CC) {
tools/clang/lib/Sema/SemaType.cpp
 2499     if (EPI.ExtInfo.getCC() == CC_Swift) return;
tools/clang/lib/Serialization/ASTWriter.cpp
  277   Record.push_back(C.getCC());