Lines Matching defs:references
144 /// recorded references.
159 /// The source location of the references of the definition.
160 SmallVector<SMRange> references;
210 /// The type of interval map used to store source references. SMRange is
278 sym->references.push_back(refLoc);
288 // Add references to the definition.
346 std::vector<lsp::Location> &references);
497 std::vector<lsp::Location> &references) {
503 references.push_back(getLocationFromLoc(sourceMgr, symbol->defLoc, uri));
504 for (SMRange refLoc : symbol->references)
505 references.push_back(getLocationFromLoc(sourceMgr, refLoc, uri));
713 std::vector<Location> &references) {
716 fileIt->second->findReferencesOf(uri, pos, references);