Home
last modified time | relevance | path

Searched refs:FinalRelations (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Index/
DIndexingContext.cpp307 SmallVector<SymbolRelation, 6> FinalRelations; in handleDeclOccurrence() local
308 FinalRelations.reserve(Relations.size()+1); in handleDeclOccurrence()
311 auto It = std::find_if(FinalRelations.begin(), FinalRelations.end(), in handleDeclOccurrence()
315 if (It != FinalRelations.end()) { in handleDeclOccurrence()
318 FinalRelations.push_back(Rel); in handleDeclOccurrence()
332 return DataConsumer.handleDeclOccurence(D, Roles, FinalRelations, FID, Offset, in handleDeclOccurrence()
/external/llvm-project/clang/lib/Index/
DIndexingContext.cpp419 SmallVector<SymbolRelation, 6> FinalRelations; in handleDeclOccurrence() local
420 FinalRelations.reserve(Relations.size()+1); in handleDeclOccurrence()
423 auto It = llvm::find_if(FinalRelations, [&](SymbolRelation Elem) -> bool { in handleDeclOccurrence()
426 if (It != FinalRelations.end()) { in handleDeclOccurrence()
429 FinalRelations.push_back(Rel); in handleDeclOccurrence()
454 return DataConsumer.handleDeclOccurrence(D, Roles, FinalRelations, Loc, Node); in handleDeclOccurrence()