Searched refs:StringRef (Results 551 - 575 of 3240) sorted by relevance

<<21222324252627282930>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMagic.h15 class StringRef;
66 file_magic identify_magic(StringRef magic);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h15 #include "llvm/ADT/StringRef.h"
33 /// StringRef is interned in the given \p StringPool.
34 StringRef resolve(std::string Path, NonRelocatableStringpool &StringPool) {
35 StringRef FileName = sys::path::filename(Path);
43 ResolvedPaths.insert({ParentPath, StringRef(RealPath).str()});
81 StringRef Name, StringRef File, const DeclContext &Parent,
98 StringRef getName() const { return Name; }
108 StringRef Name;
109 StringRef Fil
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeTableCollection.h28 StringRef getTypeName(TypeIndex Index) override;
37 std::vector<StringRef> Names;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBStringTable.h13 #include "llvm/ADT/StringRef.h"
42 Expected<StringRef> getStringForID(uint32_t ID) const;
43 Expected<uint32_t> getIDForString(StringRef Str) const;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DComdat.h24 class StringRef;
46 StringRef getName() const;
H A DLLVMContext.h36 class StringRef;
100 unsigned getMDKindID(StringRef Name) const;
104 void getMDKindNames(SmallVectorImpl<StringRef> &Result) const;
110 void getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const;
114 StringMapEntry<uint32_t> *getOrInsertBundleTag(StringRef TagName) const;
118 uint32_t getOperandBundleTagID(StringRef Tag) const;
123 SyncScope::ID getOrInsertSyncScopeID(StringRef SSN);
128 void getSyncScopeNames(SmallVectorImpl<StringRef> &SSNs) const;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDataCollection.h42 /// method update(StringRef)
44 void addDataToConsumer(T &DataConsumer, llvm::StringRef Str) {
57 DataConsumer.update(StringRef(reinterpret_cast<char *>(&Data), sizeof(Data)));
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/DirectoryWatcher/
H A DDirectoryWatcher.h13 #include "llvm/ADT/StringRef.h"
98 Event(EventKind Kind, llvm::StringRef Filename)
107 create(llvm::StringRef Path,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h26 #include "llvm/ADT/StringRef.h"
140 using ModuleOffset = std::pair<uint32_t, StringRef>;
183 ModuleFile *lookupByFileName(StringRef FileName) const;
186 ModuleFile *lookupByModuleName(StringRef ModName) const;
192 std::unique_ptr<llvm::MemoryBuffer> lookupBuffer(StringRef Name);
212 using ASTFileSignatureReader = ASTFileSignature (*)(StringRef);
248 AddModuleResult addModule(StringRef FileName, ModuleKind Type,
261 void addInMemoryBuffer(StringRef FileName,
310 bool lookupModuleFile(StringRef FileName,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningWorker.h38 StringRef Filename) = 0;
62 StringRef WorkingDirectory,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DLangStandards.cpp29 LangStandard::Kind LangStandard::getLangKind(StringRef Name) {
37 const LangStandard *LangStandard::getLangStandardForName(StringRef Name) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DBPF.cpp17 #include "llvm/ADT/StringRef.h"
37 bool BPFTargetInfo::isValidCPUName(StringRef Name) const {
41 void BPFTargetInfo::fillValidCPUList(SmallVectorImpl<StringRef> &Values) const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp18 const Triple &TT, StringRef CPU, StringRef FS,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp20 GuidAdapter::GuidAdapter(StringRef Guid)
26 void GuidAdapter::format(raw_ostream &Stream, StringRef Style) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp33 const StringRef GNUBuildID(".note.gnu.build-id");
35 Expected<StringRef> SectNameOrErr = Sect.getName();
40 StringRef SectName(*SectNameOrErr);
43 StringRef BuildIDData;
44 Expected<StringRef> E = Sect.getContents();
56 StringRef Name(Decoder.getFixedLengthString(&Offset, NameSize));
59 StringRef UUIDBytes(Decoder.getBytes(&Offset, PayloadSize));
101 Expected<StringRef> Name = Sym.getName();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp10 #include "llvm/ADT/StringRef.h"
23 Error llvm::pdb::loadDataForPDB(PDB_ReaderType Type, StringRef Path,
36 Error llvm::pdb::loadDataForEXE(PDB_ReaderType Type, StringRef Path,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.h48 StringRef Name, bool SetSectionIDMinus1 = false);
50 static constexpr StringRef getImportSymbolPrefix() { return "__imp_"; }
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyVariableDumper.h16 class StringRef;
43 void dumpSymbolTypeAndName(const PDBSymbol &Type, StringRef Name);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagInstr.cpp27 SmallVector<std::pair<unsigned, StringRef>, 8> ToPrint;
31 StringRef Separator = "";
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetFeatureInfo.cpp91 StringRef TargetName, StringRef ClassName, StringRef FuncName,
93 StringRef ExtraParams) {
102 StringRef CondStr = SFI.TheDef->getValueAsString("CondString");
113 StringRef TargetName, StringRef ClassName, StringRef FuncName,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRSubtarget.cpp50 AVRSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS,
H A DAVRTargetMachine.h30 AVRTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
31 StringRef FS, const TargetOptions &Options,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.h30 HexagonTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
31 StringRef FS, const TargetOptions &Options,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiTargetMachine.h32 StringRef Cpu, StringRef FeatureString,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXSubtarget.cpp33 NVPTXSubtarget &NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU,
34 StringRef FS) {

Completed in 177 milliseconds

<<21222324252627282930>>