Home
last modified time | relevance | path

Searched refs:USR (Results 1 – 25 of 38) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h197 SmallString<128> USR; in getBases() local
198 index::generateUSRForDecl(TTPTD, USR); in getBases()
199 BaseClass.USR = API.copyString(USR); in getBases()
235 SmallString<128> USR; in createSymbolReferenceForDecl() local
236 index::generateUSRForDecl(&D, USR); in createSymbolReferenceForDecl()
238 APIRecord *Record = API.findRecordForUSR(USR); in createSymbolReferenceForDecl()
246 return API.createSymbolReference(Name, USR, getOwningModuleName(D)); in createSymbolReferenceForDecl()
301 SmallString<128> USR; in VisitVarDecl() local
302 index::generateUSRForDecl(Decl, USR); in VisitVarDecl()
320 USR, Name, createHierarchyInformationForDecl(*Decl), Loc, in VisitVarDecl()
[all …]
H A DAPI.h159 StringRef USR; member
168 SymbolReference(StringRef Name, StringRef USR, StringRef Source = "")
169 : Name(Name), USR(USR), Source(Source) {} in Name()
175 bool empty() const { return Name.empty() && USR.empty() && Source.empty(); } in empty()
234 StringRef USR; member
282 APIRecord(RecordKind Kind, StringRef USR, StringRef Name,
288 : USR(USR), Name(Name), Parent(std::move(Parent)), Location(Location), in USR() function
294 APIRecord(RecordKind Kind, StringRef USR, StringRef Name) in APIRecord()
295 : USR(USR), Name(Name), KindForDisplay(Kind), Kind(Kind) {} in APIRecord()
383 NamespaceRecord(StringRef USR, StringRef Name, SymbolReference Parent, in NamespaceRecord()
[all …]
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp24 : Name(R->Name), USR(R->USR), Record(R) {} in SymbolReference()
110 APIRecord *APISet::findRecordForUSR(StringRef USR) const { in findRecordForUSR()
111 if (USR.empty()) in findRecordForUSR()
114 auto FindIt = USRBasedLookupTable.find(USR); in findRecordForUSR()
134 SymbolReference APISet::createSymbolReference(StringRef Name, StringRef USR, in createSymbolReference() argument
136 return SymbolReference(copyString(Name), copyString(USR), copyString(Source)); in createSymbolReference()
139 void APISet::removeRecord(StringRef USR) { in removeRecord() argument
140 auto Result = USRBasedLookupTable.find(USR); in removeRecord()
146 ParentRecord = findRecordForUSR(ParentReference.USR); in removeRecord()
166 void APISet::removeRecord(APIRecord *Record) { removeRecord(Record->USR); } in removeRecord()
H A DDeclarationFragments.cpp226 SmallString<128> USR; in getFragmentsForNNS() local
227 index::generateUSRForDecl(NS, USR); in getFragmentsForNNS()
229 DeclarationFragments::FragmentKind::Identifier, USR, NS); in getFragmentsForNNS()
235 SmallString<128> USR; in getFragmentsForNNS() local
236 index::generateUSRForDecl(Alias, USR); in getFragmentsForNNS()
238 DeclarationFragments::FragmentKind::Identifier, USR, in getFragmentsForNNS()
313 std::string USR = TypedefResolver.getUSRForType(QualType(T, 0)); in getFragmentsForType() local
322 USR, TypedefResolver.getUnderlyingTypeDecl(QualType(T, 0))); in getFragmentsForType()
413 SmallString<64> USR(""); in getFragmentsForType() local
415 index::generateUSRForDecl(TemplDecl, USR); in getFragmentsForType()
[all …]
H A DExtractAPIConsumer.cpp322 SmallString<128> USR; in EndOfMainFile() local
323 index::generateUSRForMacro(Name, DefLoc, SM, USR); in EndOfMainFile()
325 USR, Name, SymbolReference(), Loc, in EndOfMainFile()
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfmul.S156 BTMPL = USR
163 USR = BTMPL define
226 TMP = USR
246 USR = TMP define
260 TMP = USR
270 USR = TMP define
347 TMP = USR
356 USR = TMP define
368 TMP = USR
375 USR = TMP define
H A Ddfdiv.S250 TMP = USR
275 USR = TMP define
302 TMP = USR // If not, just return
308 TMP = USR // Else, we want to set Unf+Inexact
315 USR = TMP define
327 TMP = USR
337 USR = TMP define
448 TMP = USR
456 USR = TMP define
H A Ddffma.S324 TMP = USR
406 AH = USR
431 USR = AH define
454 BH = USR
461 USR = BH define
469 TMP = USR
479 USR = TMP define
649 TMP = USR
H A Ddfaddsub.S164 TMP = USR
231 TMP = USR
240 USR = TMP define
371 TMP = USR
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp234 Identifier["precise"] = Record.USR; in serializeIdentifier()
610 Elem["usr"] = Parent.USR; in generateParentContexts()
736 << Source.USR << " $ "; in serializeRelationship()
737 if (Target.USR.empty()) in serializeRelationship()
740 OS << Target.USR; in serializeRelationship()
743 Relationship["source"] = Source.USR; in serializeRelationship()
744 Relationship["target"] = Target.USR; in serializeRelationship()
770 Obj["!testLabel"] = Record->USR; in serializeAPIRecord()
940 !API.findRecordForUSR(Record->Interface.USR)) in traverseObjCCategoryRecord()
1010 (*CurrentSymbol)["type"] = Record->UnderlyingType.USR; in visitTypedefRecord()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticCrossTUKinds.td15 "error parsing index file: '%0' line: %1 '<USR-Length>:<USR> <File-Path>' "
H A DDiagnosticCommonKinds.td58 "for %select{language name|source container name|USR}1 in "
/freebsd/crypto/openssh/contrib/aix/
H A DREADME34 The script treats all packages as USR packages (not ROOT+USR when
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCChecker.cpp141 R = Hexagon::USR; in init()
623 unsigned UsrR = Hexagon::USR; // Silence warning about mixed types in ?:. in checkRegisters()
624 unsigned BadR = RI.isSubRegister(Hexagon::USR, R) ? UsrR : R; in checkRegisters()
636 unsigned UsrR = Hexagon::USR; in checkRegisters()
637 unsigned BadR = RI.isSubRegister(Hexagon::USR, R) ? UsrR : R; in checkRegisters()
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Dam335x-pocketbeagle.dts130 "[USR LED 0]",
131 "[USR LED 1]",
132 "[USR LED 2]",
133 "[USR LED 3]",
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp504 auto USR = getUSRForDecl(Decl); in isInUSRSet() local
505 if (USR.empty()) in isInUSRSet()
507 return llvm::is_contained(USRSet, USR); in isInUSRSet()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.td161 // Fake register to represent USR.OVF bit. Arithmetic/saturating instruc-
164 // on the entire USR.
167 def USR : Rc<8, "usr", ["c8"]>, DwarfRegNum<[75]> {
184 // Define C8 separately and make it aliased with USR.
185 // The problem is that USR has subregisters (e.g. overflow). If USR was
189 def C8: Rc<8, "c8", [], [USR]>, DwarfRegNum<[75]>;
210 // Use C8 instead of USR as a subregister of C9_8.
563 M0, M1, USR)>;
H A DHexagonRegisterInfo.cpp162 Reserved.set(Hexagon::USR); // C8 in getReservedRegs()
H A DHexagonDepInstrInfo.td4118 let Uses = [USR];
4130 let Uses = [USR];
4140 let Uses = [USR];
4150 let Uses = [USR];
4162 let Uses = [USR];
4172 let Uses = [USR];
4182 let Uses = [USR];
4194 let Uses = [USR];
4206 let Uses = [USR];
4218 let Uses = [USR];
[all …]
H A DHexagonPseudo.td149 let Defs = [SA0, LC0, USR], isCodeGenOnly = 1, isExtended = 1,
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp935 SmallString<128> USR; in visitFullComment() local
936 generateUSRForDecl(DI->CommentDecl, USR); in visitFullComment()
937 if (!USR.empty()) { in visitFullComment()
939 appendToResultWithXMLEscaping(USR); in visitFullComment()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.h131 static std::optional<Object> serializeSingleSymbolSGF(StringRef USR,
/freebsd/sys/contrib/device-tree/src/arm/st/
H A Dste-snowball.dts129 gpio-line-names = "USR PB", "", "", "", "", "", "", "",
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp761 /* 8 */ USR, PC, UGP, GP, in DecodeCtrRegsRegisterClass()
/freebsd/contrib/llvm-project/clang/include/clang-c/
H A DIndex.h6310 const char *USR; member

12