Home
last modified time | relevance | path

Searched defs:StringRef (Results 1 – 25 of 222) sorted by relevance

123456789

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp220 bool parseSectionDirectiveBss(StringRef, SMLoc) { in parseSectionDirectiveBss() argument
224 bool parseSectionDirectiveConst(StringRef, SMLoc) { in parseSectionDirectiveConst() argument
232 bool parseSectionDirectiveCString(StringRef, SMLoc) { in parseSectionDirectiveCString() argument
237 bool parseSectionDirectiveLiteral4(StringRef, SMLoc) { in parseSectionDirectiveLiteral4() argument
242 bool parseSectionDirectiveLiteral8(StringRef, SMLoc) { in parseSectionDirectiveLiteral8() argument
282 bool parseSectionDirectiveData(StringRef, SMLoc) { in parseSectionDirectiveData() argument
305 bool parseSectionDirectiveDyld(StringRef, SMLoc) { in parseSectionDirectiveDyld() argument
420 bool parseSectionDirectiveTData(StringRef, SMLoc) { in parseSectionDirectiveTData() argument
425 bool parseSectionDirectiveText(StringRef, SMLoc) { in parseSectionDirectiveText() argument
430 bool parseSectionDirectiveTLV(StringRef, SMLoc) { in parseSectionDirectiveTLV() argument
[all …]
H A DCOFFAsmParser.cpp98 bool ParseSectionDirectiveText(StringRef, SMLoc) { in ParseSectionDirectiveText() argument
106 bool ParseSectionDirectiveData(StringRef, SMLoc) { in ParseSectionDirectiveData() argument
113 bool ParseSectionDirectiveBSS(StringRef, SMLoc) { in ParseSectionDirectiveBSS() argument
373 bool COFFAsmParser::parseSectionArguments(StringRef, SMLoc) { in parseSectionArguments() argument
449 bool COFFAsmParser::ParseDirectiveDef(StringRef, SMLoc) { in ParseDirectiveDef() argument
463 bool COFFAsmParser::ParseDirectiveScl(StringRef, SMLoc) { in ParseDirectiveScl() argument
476 bool COFFAsmParser::ParseDirectiveType(StringRef, SMLoc) { in ParseDirectiveType() argument
489 bool COFFAsmParser::ParseDirectiveEndef(StringRef, SMLoc) { in ParseDirectiveEndef() argument
524 bool COFFAsmParser::ParseDirectiveRVA(StringRef, SMLoc) { in ParseDirectiveRVA() argument
570 bool COFFAsmParser::ParseDirectiveSecIdx(StringRef, SMLoc) { in ParseDirectiveSecIdx() argument
[all …]
H A DELFAsmParser.cpp91 bool ParseSectionDirectiveData(StringRef, SMLoc) { in ParseSectionDirectiveData() argument
96 bool ParseSectionDirectiveText(StringRef, SMLoc) { in ParseSectionDirectiveText() argument
101 bool ParseSectionDirectiveBSS(StringRef, SMLoc) { in ParseSectionDirectiveBSS() argument
106 bool ParseSectionDirectiveRoData(StringRef, SMLoc) { in ParseSectionDirectiveRoData() argument
111 bool ParseSectionDirectiveTData(StringRef, SMLoc) { in ParseSectionDirectiveTData() argument
117 bool ParseSectionDirectiveTBSS(StringRef, SMLoc) { in ParseSectionDirectiveTBSS() argument
123 bool ParseSectionDirectiveDataRel(StringRef, SMLoc) { in ParseSectionDirectiveDataRel() argument
128 bool ParseSectionDirectiveDataRelRo(StringRef, SMLoc) { in ParseSectionDirectiveDataRelRo() argument
134 bool ParseSectionDirectiveEhFrame(StringRef, SMLoc) { in ParseSectionDirectiveEhFrame() argument
222 bool ELFAsmParser::ParseDirectiveSize(StringRef, SMLoc) { in ParseDirectiveSize() argument
[all …]
H A DWasmAsmParser.cpp91 bool parseSectionDirectiveText(StringRef, SMLoc) { in parseSectionDirectiveText() argument
96 bool parseSectionDirectiveData(StringRef, SMLoc) { in parseSectionDirectiveData() argument
146 bool parseSectionDirective(StringRef, SMLoc loc) { in parseSectionDirective() argument
212 bool parseDirectiveSize(StringRef, SMLoc Loc) { in parseDirectiveSize() argument
235 bool parseDirectiveType(StringRef, SMLoc) { in parseDirectiveType() argument
268 bool ParseDirectiveIdent(StringRef, SMLoc) { in ParseDirectiveIdent() argument
H A DCOFFMasmParser.cpp57 bool IgnoreDirective(StringRef, SMLoc) { in IgnoreDirective() argument
186 bool ParseSectionDirectiveCode(StringRef, SMLoc) { in ParseSectionDirectiveCode() argument
194 bool ParseSectionDirectiveInitializedData(StringRef, SMLoc) { in ParseSectionDirectiveInitializedData() argument
202 bool ParseSectionDirectiveUninitializedData(StringRef, SMLoc) { in ParseSectionDirectiveUninitializedData() argument
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DArgumentsAdjusters.cpp36 return [](const CommandLineArguments &Args, StringRef /*unused*/) { in getClangSyntaxOnlyAdjuster()
72 return [](const CommandLineArguments &Args, StringRef /*unused*/) { in getClangStripOutputAdjuster()
90 return [](const CommandLineArguments &Args, StringRef /*unused*/) { in getClangStripDependencyFileAdjuster()
120 return [Extra, Pos](const CommandLineArguments &Args, StringRef /*unused*/) { in getInsertArgumentAdjuster()
153 return [](const CommandLineArguments &Args, StringRef /*unused*/) { in getStripPluginsAdjuster()
/freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubCommon.cpp130 QuotingType ScalarTraits<PlatformSet>::mustQuote(StringRef) { in mustQuote() argument
151 QuotingType ScalarTraits<Architecture>::mustQuote(StringRef) { in mustQuote() argument
165 QuotingType ScalarTraits<PackedVersion>::mustQuote(StringRef) { in mustQuote() argument
216 QuotingType ScalarTraits<SwiftVersion>::mustQuote(StringRef) { in mustQuote() argument
227 QuotingType ScalarTraits<UUID>::mustQuote(StringRef) { in mustQuote() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.h108 void emitImportModule(const MCSymbolWasm *, StringRef) override {} in emitImportModule() argument
109 void emitImportName(const MCSymbolWasm *, StringRef) override {} in emitImportName() argument
110 void emitExportName(const MCSymbolWasm *, StringRef) override {} in emitExportName() argument
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h31 class StringRef; variable
84 /*implicit*/ constexpr StringRef(const char *Str) in StringRef() function
96 /*implicit*/ constexpr StringRef(const char *data, size_t length) in StringRef() function
100 /*implicit*/ StringRef(const std::string &Str) in StringRef() function
104 /*implicit*/ constexpr StringRef(std::string_view Str) in StringRef() function
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-as/
H A Dllvm-as.cpp124 auto SetDataLayout = [](StringRef, StringRef) -> std::optional<std::string> { in main() argument
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIASession.h19 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DLocale.h5 class StringRef; variable
H A DSignals.h21 class StringRef; variable
H A DSignposts.h23 class StringRef; variable
H A DProcess.h36 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DWindowsMachineFlag.h18 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/
H A DFrontendActions.h261 StringRef) override { in CreateASTConsumer() argument
272 StringRef) override { in CreateASTConsumer() argument
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/InterfaceStub/
H A DIFSHandler.h30 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DFuzzerCLI.h22 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDKernelCodeTUtils.h22 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyVariableDumper.h16 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DTargetRegistry.cpp111 static int TargetArraySortFn(const std::pair<StringRef, const Target *> *LHS, in TargetArraySortFn()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParserUtils.h17 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRPrintingPasses.h22 class StringRef; variable
/freebsd-14.2/contrib/llvm-project/lldb/tools/lldb-server/
H A DAcceptor.h20 class StringRef; variable

123456789