Searched refs:StringRef (Results 1 - 25 of 3240) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DBitstreamRemarkContainer.h17 #include "llvm/ADT/StringRef.h"
70 constexpr StringRef MetaBlockName = StringRef("Meta", 4);
71 constexpr StringRef RemarkBlockName = StringRef("Remark", 6);
92 constexpr StringRef MetaContainerInfoName = StringRef("Container info", 14);
93 constexpr StringRef MetaRemarkVersionName = StringRef("Remark version", 14);
94 constexpr StringRef MetaStrTabNam
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.h15 #include "llvm/ADT/StringRef.h"
19 MSVCUndecoratedNameSpecifier(llvm::StringRef full_name,
20 llvm::StringRef base_name)
23 llvm::StringRef GetFullName() const { return m_full_name; }
24 llvm::StringRef GetBaseName() const { return m_base_name; }
27 llvm::StringRef m_full_name;
28 llvm::StringRef m_base_name;
33 explicit MSVCUndecoratedNameParser(llvm::StringRef name);
39 static bool IsMSVCUndecoratedName(llvm::StringRef name);
40 static bool ExtractContextAndIdentifier(llvm::StringRef nam
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DHost.h20 class StringRef;
43 StringRef getHostCPUName();
64 StringRef getHostCPUNameForPowerPC(StringRef ProcCpuinfoContent);
65 StringRef getHostCPUNameForARM(StringRef ProcCpuinfoContent);
66 StringRef getHostCPUNameForS390x(StringRef ProcCpuinfoContent);
67 StringRef getHostCPUNameForBPF();
H A DStringSaver.h13 #include "llvm/ADT/StringRef.h"
20 /// StringRef with a stable character pointer.
28 StringRef save(const char *S) { return save(StringRef(S)); }
29 StringRef save(StringRef S);
30 StringRef save(const Twine &S) { return save(StringRef(S.str())); }
31 StringRef save(const std::string &S) { return save(StringRef(
[all...]
H A DGlobPattern.h27 class StringRef;
31 static Expected<GlobPattern> create(StringRef Pat);
32 bool match(StringRef S) const;
35 bool matchOne(ArrayRef<BitVector> Pat, StringRef S) const;
41 Optional<StringRef> Exact;
42 Optional<StringRef> Prefix;
43 Optional<StringRef> Suffix;
H A DTarWriter.h12 #include "llvm/ADT/StringRef.h"
20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
21 StringRef BaseDir);
23 void append(StringRef Path, StringRef Data);
26 TarWriter(int FD, StringRef BaseDir);
H A DProgram.h18 #include "llvm/ADT/StringRef.h"
77 findProgramByName(StringRef Name, ArrayRef<StringRef> Paths = {});
97 StringRef Program, ///< Path of the program to be executed. It is
99 ArrayRef<StringRef> Args, ///< An array of strings that are passed to the
101 ///< The array should **not** be terminated by an empty StringRef.
102 Optional<ArrayRef<StringRef>> Env = None, ///< An optional vector of
105 ///< vector should **not** be terminated by an empty StringRef.
106 ArrayRef<Optional<StringRef>> Redirects = {}, ///<
138 ProcessInfo ExecuteNoWait(StringRef Progra
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DFPEnv.h22 class StringRef;
42 Optional<RoundingMode> StrToRoundingMode(StringRef);
46 Optional<StringRef> RoundingModeToStr(RoundingMode);
50 Optional<fp::ExceptionBehavior> StrToExceptionBehavior(StringRef);
54 Optional<StringRef> ExceptionBehaviorToStr(fp::ExceptionBehavior);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h13 #include "llvm/ADT/StringRef.h"
26 static inline StringRef getUSRSpacePrefix() {
35 void generateUSRForObjCClass(StringRef Cls, raw_ostream &OS,
36 StringRef ExtSymbolDefinedIn = "",
37 StringRef CategoryContextExtSymbolDefinedIn = "");
40 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS,
41 StringRef ClsExtSymbolDefinedIn = "",
42 StringRef CatExtSymbolDefinedIn = "");
47 void generateUSRForObjCIvar(StringRef Iva
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerBlacklist.h18 #include "llvm/ADT/StringRef.h"
36 bool isBlacklistedGlobal(SanitizerMask Mask, StringRef GlobalName,
37 StringRef Category = StringRef()) const;
38 bool isBlacklistedType(SanitizerMask Mask, StringRef MangledTypeName,
39 StringRef Category = StringRef()) const;
40 bool isBlacklistedFunction(SanitizerMask Mask, StringRef FunctionName) const;
41 bool isBlacklistedFile(SanitizerMask Mask, StringRef FileName,
42 StringRef Categor
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWindowsMachineFlag.h18 class StringRef;
25 StringRef machineToStr(COFF::MachineTypes MT);
29 COFF::MachineTypes getMachineType(StringRef S);
/freebsd-13-stable/contrib/llvm-project/lld/include/lld/Common/
H A DFilesystem.h16 void unlinkAsync(StringRef path);
17 std::error_code tryCreateFile(StringRef path);
H A DStrings.h14 #include "llvm/ADT/StringRef.h"
22 std::string demangleItanium(llvm::StringRef name);
24 std::vector<uint8_t> parseHex(llvm::StringRef s);
25 bool isValidCIdentifier(llvm::StringRef s);
28 void saveBuffer(llvm::StringRef buffer, const llvm::Twine &path);
37 SingleStringMatcher(llvm::StringRef Pattern);
40 bool match(llvm::StringRef s) const;
50 // StringRef to match exactly if doing an exact match.
51 llvm::StringRef ExactPattern;
66 StringMatcher(llvm::StringRef Patter
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFSection.h12 #include "llvm/ADT/StringRef.h"
17 StringRef Data;
21 StringRef Name;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DTableGenBackend.h18 class StringRef;
23 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Frontend/
H A DCheckerRegistry.h23 #include "llvm/ADT/StringRef.h"
119 StringRef FullName, StringRef Desc, StringRef DocsUri,
128 void addChecker(StringRef FullName, StringRef Desc, StringRef DocsUri,
139 void addDependency(StringRef FullName, StringRef Dependency);
143 void addWeakDependency(StringRef FullNam
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUriParser.h12 #include "llvm/ADT/StringRef.h"
25 static bool Parse(llvm::StringRef uri, llvm::StringRef &scheme,
26 llvm::StringRef &hostname, int &port,
27 llvm::StringRef &path);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetStreamer.h19 virtual void emitCCTopData(StringRef Name) = 0;
20 virtual void emitCCTopFunction(StringRef Name) = 0;
21 virtual void emitCCBottomData(StringRef Name) = 0;
22 virtual void emitCCBottomFunction(StringRef Name) = 0;
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DScriptLexer.h13 #include "llvm/ADT/StringRef.h"
27 static StringRef skipSpace(StringRef s);
29 StringRef next();
30 StringRef peek();
31 StringRef peek2();
33 bool consume(StringRef tok);
34 void expect(StringRef expect);
35 bool consumeLabel(StringRef tok);
39 std::vector<StringRef> token
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DDriver.h17 #include "llvm/ADT/StringRef.h"
54 std::vector<StringRef> exports;
55 std::vector<StringRef> includes;
65 llvm::opt::InputArgList parse(StringRef s) { return parse(tokenize(s)); }
70 ParsedDirectives parseDirectives(StringRef s);
76 std::vector<const char *> tokenize(StringRef s);
88 StringRef parentName);
90 void enqueuePDB(StringRef Path) { enqueuePath(Path, false, false); }
94 void enqueuePath(StringRef path, bool wholeArchive, bool lazy);
100 MemoryBufferRef openFile(StringRef pat
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DTextStubCommon.h16 #include "llvm/ADT/StringRef.h"
25 LLVM_YAML_STRONG_TYPEDEF(llvm::StringRef, FlowStringRef)
35 static StringRef input(StringRef, void *, FlowStringRef &);
36 static QuotingType mustQuote(StringRef);
45 static StringRef input(StringRef, void *, MachO::PlatformSet &);
46 static QuotingType mustQuote(StringRef);
55 static StringRef input(StringRef, voi
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringExtras.cpp23 StringRef::size_type llvm::StrInStrNoCase(StringRef s1, StringRef s2) {
26 return StringRef::npos;
30 return StringRef::npos;
39 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source,
40 StringRef Delimiters) {
42 StringRef
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DConfig.h13 #include "llvm/ADT/StringRef.h"
28 llvm::StringRef installName;
29 llvm::StringRef outputFile;
32 std::vector<llvm::StringRef> librarySearchPaths;
34 std::vector<llvm::StringRef> frameworkSearchPaths;
35 llvm::DenseMap<llvm::StringRef, SymbolPriorityEntry> priorities;
49 llvm::DenseMap<llvm::StringRef, size_t> objectFiles;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DSortJavaScriptImports.h20 #include "llvm/ADT/StringRef.h"
28 StringRef Code,
30 StringRef FileName);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHash.h13 #include "llvm/ADT/StringRef.h"
19 uint32_t hashStringV1(StringRef Str);
20 uint32_t hashStringV2(StringRef Str);

Completed in 206 milliseconds

1234567891011>>