Home
last modified time | relevance | path

Searched refs:IdInfo (Results 1 – 8 of 8) sorted by relevance

/freebsd-head/contrib/llvm-project/clang/lib/Sema/
HDSemaCXXScopeSpec.cpp408 bool Sema::BuildCXXNestedNameSpecifier(Scope *S, NestedNameSpecInfo &IdInfo, in BuildCXXNestedNameSpecifier() argument
414 if (IdInfo.Identifier->isEditorPlaceholder()) in BuildCXXNestedNameSpecifier()
416 LookupResult Found(*this, IdInfo.Identifier, IdInfo.IdentifierLoc, in BuildCXXNestedNameSpecifier()
419 QualType ObjectType = GetTypeFromParser(IdInfo.ObjectType); in BuildCXXNestedNameSpecifier()
504 SS.Extend(Context, IdInfo.Identifier, IdInfo.IdentifierLoc, IdInfo.CCLoc); in BuildCXXNestedNameSpecifier()
523 Diag(IdInfo.CCLoc, diag::err_nested_name_spec_is_not_class) in BuildCXXNestedNameSpecifier()
524 << IdInfo.Identifier << getLangOpts().CPlusPlus in BuildCXXNestedNameSpecifier()
525 << FixItHint::CreateReplacement(IdInfo.CCLoc, ":"); in BuildCXXNestedNameSpecifier()
534 << IdInfo.Identifier << getLangOpts().CPlusPlus; in BuildCXXNestedNameSpecifier()
537 << IdInfo.Identifier; in BuildCXXNestedNameSpecifier()
[all …]
HDTreeTransform.h4404 Sema::NestedNameSpecInfo IdInfo(QNNS->getAsIdentifier(), in TransformNestedNameSpecifierLoc()
4407 if (SemaRef.BuildCXXNestedNameSpecifier(/*Scope=*/nullptr, IdInfo, false, in TransformNestedNameSpecifierLoc()
/freebsd-head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDIterator.cpp77 const auto *IdInfo = Func->getIdentifier(); in isInsertCall() local
78 if (!IdInfo) in isInsertCall()
84 return IdInfo->getName() == "insert"; in isInsertCall()
88 const auto *IdInfo = Func->getIdentifier(); in isEmplaceCall() local
89 if (!IdInfo) in isEmplaceCall()
95 return IdInfo->getName() == "emplace"; in isEmplaceCall()
99 const auto *IdInfo = Func->getIdentifier(); in isEraseCall() local
100 if (!IdInfo) in isEraseCall()
109 return IdInfo->getName() == "erase"; in isEraseCall()
113 const auto *IdInfo = Func->getIdentifier(); in isEraseAfterCall() local
[all …]
HDContainerModeling.cpp754 const auto *IdInfo = Func->getIdentifier(); in isBeginCall() local
755 if (!IdInfo) in isBeginCall()
757 return IdInfo->getName().ends_with_insensitive("begin"); in isBeginCall()
761 const auto *IdInfo = Func->getIdentifier(); in isEndCall() local
762 if (!IdInfo) in isEndCall()
764 return IdInfo->getName().ends_with_insensitive("end"); in isEndCall()
HDIteratorModeling.cpp435 const auto *IdInfo = cast<FunctionDecl>(Call.getDecl())->getIdentifier(); in handleAdvanceLikeFunction() local
436 if (IdInfo) { in handleAdvanceLikeFunction()
437 if (IdInfo->getName() == "advance") { in handleAdvanceLikeFunction()
/freebsd-head/sys/contrib/dev/acpica/components/disassembler/
HDdmopcode.c802 const AH_DEVICE_ID *IdInfo; in AcpiDmDisassembleOneOp() local
921 IdInfo = AcpiAhMatchHardwareId (Op->Common.Value.String); in AcpiDmDisassembleOneOp()
922 if (IdInfo) in AcpiDmDisassembleOneOp()
924 AcpiOsPrintf (" /* %s */", IdInfo->Description); in AcpiDmDisassembleOneOp()
/freebsd-head/contrib/llvm-project/clang/lib/Parse/
HDParseExprCXX.cpp438 Sema::NestedNameSpecInfo IdInfo(&II, Tok.getLocation(), Next.getLocation(), in ParseOptionalCXXScopeSpecifier() local
444 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, IdInfo, in ParseOptionalCXXScopeSpecifier()
504 getCurScope(), IdInfo, EnteringContext, SS, CorrectionFlagPtr, in ParseOptionalCXXScopeSpecifier()
/freebsd-head/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h2868 bool BuildCXXNestedNameSpecifier(Scope *S, NestedNameSpecInfo &IdInfo,
2897 bool ActOnCXXNestedNameSpecifier(Scope *S, NestedNameSpecInfo &IdInfo,
2946 NestedNameSpecInfo &IdInfo,