Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Sema/
DSemaCXXScopeSpec.cpp384 NestedNameSpecInfo &IdInfo) { in isNonTypeNestedNameSpecifier() argument
385 QualType ObjectType = GetTypeFromParser(IdInfo.ObjectType); in isNonTypeNestedNameSpecifier()
386 LookupResult Found(*this, IdInfo.Identifier, IdInfo.IdentifierLoc, in isNonTypeNestedNameSpecifier()
483 bool Sema::BuildCXXNestedNameSpecifier(Scope *S, NestedNameSpecInfo &IdInfo, in BuildCXXNestedNameSpecifier() argument
489 if (IdInfo.Identifier->isEditorPlaceholder()) in BuildCXXNestedNameSpecifier()
491 LookupResult Found(*this, IdInfo.Identifier, IdInfo.IdentifierLoc, in BuildCXXNestedNameSpecifier()
494 QualType ObjectType = GetTypeFromParser(IdInfo.ObjectType); in BuildCXXNestedNameSpecifier()
579 SS.Extend(Context, IdInfo.Identifier, IdInfo.IdentifierLoc, IdInfo.CCLoc); in BuildCXXNestedNameSpecifier()
598 Diag(IdInfo.CCLoc, diag::err_nested_name_spec_is_not_class) in BuildCXXNestedNameSpecifier()
599 << IdInfo.Identifier << getLangOpts().CPlusPlus in BuildCXXNestedNameSpecifier()
[all …]
DTreeTransform.h3962 Sema::NestedNameSpecInfo IdInfo(QNNS->getAsIdentifier(), in TransformNestedNameSpecifierLoc()
3964 if (SemaRef.BuildCXXNestedNameSpecifier(/*Scope=*/nullptr, IdInfo, false, in TransformNestedNameSpecifierLoc()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DIterator.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 …]
DContainerModeling.cpp763 const auto *IdInfo = Func->getIdentifier(); in isBeginCall() local
764 if (!IdInfo) in isBeginCall()
766 return IdInfo->getName().endswith_lower("begin"); in isBeginCall()
770 const auto *IdInfo = Func->getIdentifier(); in isEndCall() local
771 if (!IdInfo) in isEndCall()
773 return IdInfo->getName().endswith_lower("end"); in isEndCall()
DIteratorModeling.cpp438 const auto *IdInfo = cast<FunctionDecl>(Call.getDecl())->getIdentifier(); in handleAdvanceLikeFunction() local
439 if (IdInfo) { in handleAdvanceLikeFunction()
440 if (IdInfo->getName() == "advance") { in handleAdvanceLikeFunction()
/external/llvm-project/clang/lib/Lex/
DDependencyDirectivesSourceMinimizer.cpp49 struct IdInfo { struct
57 LLVM_NODISCARD IdInfo lexIdentifier(const char *First, const char *const End);
546 Minimizer::IdInfo Minimizer::lexIdentifier(const char *First, in lexIdentifier()
551 return IdInfo{Last, StringRef(First, Last - First)}; in lexIdentifier()
560 return IdInfo{ in lexIdentifier()
608 IdInfo FoundId = lexIdentifier(First, End); in isNextIdentifier()
636 IdInfo Id = lexIdentifier(First, End); in lexModule()
696 IdInfo Id = lexIdentifier(First, End); in lexDefine()
728 IdInfo FoundId = lexIdentifier(First, End); in lexPragma()
836 IdInfo Id = lexIdentifier(First, End); in lexPPLine()
/external/libwebm/webm_parser/fuzzing/
Dwebm.dict16 IdInfo = "\x15\x49\xA9\x66"
/external/cldr/tools/java/org/unicode/cldr/tool/
DShowKeyboards.java128 IdInfo idInfo = new IdInfo(); in showRepertoire()
573 static class IdInfo { class in ShowKeyboards
/external/llvm-project/clang/lib/Parse/
DParseExprCXX.cpp390 Sema::NestedNameSpecInfo IdInfo(&II, Tok.getLocation(), Next.getLocation(), in ParseOptionalCXXScopeSpecifier() local
396 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, IdInfo, in ParseOptionalCXXScopeSpecifier()
456 getCurScope(), IdInfo, EnteringContext, SS, false, in ParseOptionalCXXScopeSpecifier()
/external/llvm-project/clang/include/clang/Sema/
DSema.h6290 NestedNameSpecInfo &IdInfo);
6293 NestedNameSpecInfo &IdInfo,
6327 NestedNameSpecInfo &IdInfo,
6341 NestedNameSpecInfo &IdInfo,