Searched refs:StringRef (Results 151 - 175 of 3240) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/
H A DPassInfo.h16 #include "llvm/ADT/StringRef.h"
35 StringRef PassName; // Nice name for Pass
36 StringRef PassArgument; // Command Line argument to run this pass
47 PassInfo(StringRef name, StringRef arg, const void *pi, NormalCtor_t normal,
55 PassInfo(StringRef name, const void *pi)
62 StringRef getPassName() const { return PassName; }
67 StringRef getPassArgument() const { return PassArgument; }
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemarkParser.h17 #include "llvm/ADT/StringRef.h"
61 StringRef Buffer;
66 ParsedStringTable(StringRef Buffer);
75 Expected<StringRef> operator[](size_t Index) const;
79 StringRef Buf);
82 createRemarkParser(Format ParserFormat, StringRef Buf,
86 createRemarkParserFromMeta(Format ParserFormat, StringRef Buf,
88 Optional<StringRef> ExternalFilePrependPath = None);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileUtilities.h17 #include "llvm/ADT/StringRef.h"
32 int DiffFilesWithTolerance(StringRef FileA,
33 StringRef FileB,
107 llvm::Error writeFileAtomically(StringRef TempPathModel, StringRef FinalPath,
108 StringRef Buffer);
111 writeFileAtomically(StringRef TempPathModel, StringRef FinalPath,
H A DX86TargetParser.h19 class StringRef;
127 CPUKind parseArchX86(StringRef CPU, bool Only64Bit = false);
131 void fillValidCPUArchList(SmallVectorImpl<StringRef> &Values,
138 void getFeaturesForCPU(StringRef CPU, SmallVectorImpl<StringRef> &Features);
142 void getImpliedFeatures(StringRef Feature, bool Enabled,
143 SmallVectorImpl<StringRef> &Features);
H A DBinaryStreamError.h12 #include "llvm/ADT/StringRef.h"
31 explicit BinaryStreamError(StringRef Context);
32 BinaryStreamError(stream_error_code C, StringRef Context);
37 StringRef getErrorMessage() const;
H A DCachePruning.h23 class StringRef;
68 Expected<CachePruningPolicy> parseCachePruningPolicy(StringRef PolicyStr);
76 bool pruneCache(StringRef Path, CachePruningPolicy Policy);
H A DFileOutputBuffer.h16 #include "llvm/ADT/StringRef.h"
49 create(StringRef FilePath, size_t Size, unsigned Flags = 0);
61 StringRef getPath() const { return FinalPath; }
80 FileOutputBuffer(StringRef Path) : FinalPath(Path) {}
H A DToolOutputFile.h38 explicit CleanupInstaller(StringRef Filename);
52 ToolOutputFile(StringRef Filename, std::error_code &EC,
55 ToolOutputFile(StringRef Filename, int FD);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkStringTable.cpp14 #include "llvm/ADT/StringRef.h"
25 if (Expected<StringRef> MaybeStr = Other[i])
31 std::pair<unsigned, StringRef> StringTable::add(StringRef Str) {
42 auto Impl = [&](StringRef &S) { S = add(S).second; };
58 for (StringRef Str : serialize()) {
65 std::vector<StringRef> StringTable::serialize() const {
66 std::vector<StringRef> Strings{StrTab.size()};
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DSectCreateFile.h27 SectCreateAtom(const File &file, StringRef segName, StringRef sectName,
43 StringRef customSectionName() const override { return _combinedName; }
53 StringRef segmentName() const { return _segName; }
54 StringRef sectionName() const { return _sectName; }
58 StringRef _segName;
59 StringRef _sectName;
65 void addSection(StringRef seg, StringRef sect,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.h23 virtual void HandleAsyncStdout(llvm::StringRef out) = 0;
24 virtual void HandleAsyncMisc(llvm::StringRef data) = 0;
31 virtual void HandleAsyncStructuredDataPacket(llvm::StringRef data) = 0;
42 llvm::StringRef payload, StringExtractorGDBRemote &response);
44 PacketResult SendPacketAndWaitForResponse(llvm::StringRef payload,
49 llvm::StringRef payload, StringExtractorGDBRemote &response,
51 llvm::function_ref<void(llvm::StringRef)> output_callback);
53 bool SendvContPacket(llvm::StringRef payload,
78 SendPacketAndWaitForResponseNoLock(llvm::StringRef payload,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ARCMigrate/
H A DARCMT.h45 StringRef plistOut = StringRef());
71 DiagnosticConsumer *DiagClient, StringRef outputDir,
72 bool emitPremigrationARCErrors, StringRef plistOut);
79 StringRef outputDir,
88 ArrayRef<StringRef> remapFiles,
108 StringRef outputDir = StringRef());
117 virtual void insert(SourceLocation loc, StringRef text) { }
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h40 BugType(CheckerNameRef CheckerName, StringRef Name, StringRef Cat,
44 BugType(const CheckerBase *Checker, StringRef Name, StringRef Cat,
50 StringRef getDescription() const { return Description; }
51 StringRef getCategory() const { return Category; }
52 StringRef getCheckerName() const {
58 StringRef Ret = Checker ? Checker->getCheckerName() : CheckerName;
87 StringRef getDescription() const { return desc; }
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionSourceCode.h14 #include "llvm/ADT/StringRef.h"
33 ExpressionSourceCode(llvm::StringRef name, llvm::StringRef prefix,
34 llvm::StringRef body, Wrapping wrap)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DUDPSocket.h20 Connect(llvm::StringRef name, bool child_processes_inherit);
28 Status Connect(llvm::StringRef name) override;
29 Status Listen(llvm::StringRef name, int backlog) override;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DDomainSocket.h19 Status Connect(llvm::StringRef name) override;
20 Status Listen(llvm::StringRef name, int backlog) override;
29 virtual void DeleteSocketFile(llvm::StringRef name);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DRISCV.h13 #include "llvm/ADT/StringRef.h"
24 std::vector<llvm::StringRef> &Features);
25 StringRef getRISCVABI(const llvm::opt::ArgList &Args,
27 StringRef getRISCVArch(const llvm::opt::ArgList &Args,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h17 #include "llvm/ADT/StringRef.h"
30 /// Initialize from a StringRef.
31 SmallString(StringRef S) : SmallVector<char, InternalLen>(S.begin(), S.end()) {}
56 /// Assign from a StringRef.
57 void assign(StringRef RHS) {
82 /// Append from a StringRef.
83 void append(StringRef RHS) {
98 bool equals(StringRef RHS) const {
103 bool equals_lower(StringRef RHS) const {
109 int compare(StringRef RH
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DParser.h17 #include "llvm/ADT/StringRef.h"
31 typedef llvm::function_ref<Optional<std::string>(StringRef)>
45 std::unique_ptr<Module> parseAssemblyFile(StringRef Filename, SMDiagnostic &Err,
60 std::unique_ptr<Module> parseAssemblyString(StringRef AsmString,
86 StringRef Filename, SMDiagnostic &Err, LLVMContext &Context,
88 DataLayoutCallbackTy DataLayoutCallback = [](StringRef) { return None; });
92 StringRef Filename, SMDiagnostic &Err, LLVMContext &Context,
104 parseSummaryIndexAssemblyFile(StringRef Filename, SMDiagnostic &Err);
116 DataLayoutCallbackTy DataLayoutCallback = [](StringRef) { return None; });
156 DataLayoutCallbackTy DataLayoutCallback = [](StringRef) { retur
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAvailability.h17 #include "llvm/ADT/StringRef.h"
37 StringRef Platform;
42 AvailabilitySpec(VersionTuple Version, StringRef Platform,
52 StringRef getPlatform() const { return Platform; }
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h22 #include "llvm/ADT/StringRef.h"
95 using Name = StringRef;
103 virtual void handleInvalidLockExp(StringRef Kind, SourceLocation Loc) {}
108 /// \param LockName -- A StringRef name for the lock expression, to be printed
112 virtual void handleUnmatchedUnlock(StringRef Kind, Name LockName,
119 /// \param LockName -- A StringRef name for the lock expression, to be printed
126 virtual void handleIncorrectUnlockKind(StringRef Kind, Name LockName,
133 /// \param LockName -- A StringRef name for the lock expression, to be printed
137 virtual void handleDoubleLock(StringRef Kind, Name LockName,
147 /// \param LockName -- A StringRef nam
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DObjectFilePCHContainerOperations.h19 StringRef getFormat() const override { return "obj"; }
35 StringRef getFormat() const override { return "obj"; }
38 StringRef ExtractPCH(llvm::MemoryBufferRef Buffer) const override;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistryData.h26 #include "llvm/ADT/StringRef.h"
45 StringRef OptionType;
46 StringRef OptionName;
47 StringRef DefaultValStr;
48 StringRef Description;
49 StringRef DevelopmentStatus;
52 CmdLineOption(StringRef OptionType, StringRef OptionName,
53 StringRef DefaultValStr, StringRef Descriptio
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRule.h14 #include "llvm/ADT/StringRef.h"
26 StringRef Name;
28 StringRef Title;
30 StringRef Description;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DELFAttributes.cpp10 #include "llvm/ADT/StringRef.h"
14 StringRef ELFAttrs::attrTypeAsString(unsigned attr, TagNameMap tagNameMap,
20 StringRef tagName = tagNameIt->tagName;
24 Optional<unsigned> ELFAttrs::attrTypeFromString(StringRef tag,

Completed in 348 milliseconds

1234567891011>>