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

References

tools/clang/include/clang/AST/DeclCXX.h
 2059     return getType()->castAs<FunctionProtoType>()->getMethodQuals();
tools/clang/include/clang/AST/Type.h
 3944     EPI.TypeQuals = getMethodQuals();
tools/clang/lib/AST/ASTContext.cpp
 8731     if (lproto->getMethodQuals() != rproto->getMethodQuals())
 8731     if (lproto->getMethodQuals() != rproto->getMethodQuals())
tools/clang/lib/AST/ASTStructuralEquivalence.cpp
  640     if (Proto1->getMethodQuals() != Proto2->getMethodQuals())
  640     if (Proto1->getMethodQuals() != Proto2->getMethodQuals())
tools/clang/lib/AST/DeclCXX.cpp
 2294   return C.getQualifiedType(ClassTy, FPT->getMethodQuals());
tools/clang/lib/AST/ItaniumMangle.cpp
 2813   mangleQualifiers(T->getMethodQuals());
tools/clang/lib/AST/MicrosoftMangle.cpp
 2155   if (T->getMethodQuals() || T->getRefQualifier() != RQ_None) {
 2204     Qualifiers Quals = Proto->getMethodQuals();
tools/clang/lib/AST/TypePrinter.cpp
  821   if (!T->getMethodQuals().empty())
  822     OS << " " << T->getMethodQuals().getAsString();
tools/clang/lib/AST/VTableBuilder.cpp
  482   if (LT->getMethodQuals() != RT->getMethodQuals())
  482   if (LT->getMethodQuals() != RT->getMethodQuals())
tools/clang/lib/Sema/SemaCodeComplete.cpp
 3075   if (!Proto || !Proto->getMethodQuals())
 3081   if (Proto->getMethodQuals().hasOnlyConst()) {
 3086   if (Proto->getMethodQuals().hasOnlyVolatile()) {
 3091   if (Proto->getMethodQuals().hasOnlyRestrict()) {
tools/clang/lib/Sema/SemaDeclCXX.cpp
 6921     if (Type->getMethodQuals().hasConst() || Type->getMethodQuals().hasVolatile()) {
 6921     if (Type->getMethodQuals().hasConst() || Type->getMethodQuals().hasVolatile()) {
tools/clang/lib/Sema/SemaOverload.cpp
 2563         FromFunctionType->getMethodQuals() != ToFunctionType->getMethodQuals())
 2563         FromFunctionType->getMethodQuals() != ToFunctionType->getMethodQuals())
 2870   if (FromFunction->getMethodQuals() != ToFunction->getMethodQuals()) {
 2870   if (FromFunction->getMethodQuals() != ToFunction->getMethodQuals()) {
 2871     PDiag << ft_qualifer_mismatch << ToFunction->getMethodQuals()
 2872           << FromFunction->getMethodQuals();
 8125         if (Proto->getMethodQuals() || Proto->getRefQualifier())
13329     Qualifiers funcQuals = proto->getMethodQuals();
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 1673       if (FunctionProtoParam->getMethodQuals()
 1674             != FunctionProtoArg->getMethodQuals() ||
tools/clang/lib/Sema/SemaType.cpp
 1916   std::string Quals = FnTy->getMethodQuals().getAsString();
 1959       (FPT->getMethodQuals().empty() && FPT->getRefQualifier() == RQ_None))
 1971       (FPT->getMethodQuals().empty() && FPT->getRefQualifier() == RQ_None))
 4036       (!T->castAs<FunctionProtoType>()->getMethodQuals().empty() ||
tools/clang/lib/Serialization/ASTWriter.cpp
  313   Record.push_back(T->getMethodQuals().getAsOpaqueValue());
  326   if (T->isVariadic() || T->hasTrailingReturn() || T->getMethodQuals() ||