Home
last modified time | relevance | path

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

123456789

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
HDDarwinAsmParser.cpp220 bool parseSectionDirectiveBss(StringRef, SMLoc) { in parseSectionDirectiveBss() argument
224 bool parseSectionDirectiveConst(StringRef, SMLoc) { in parseSectionDirectiveConst() argument
228 bool parseSectionDirectiveStaticConst(StringRef, SMLoc) { in parseSectionDirectiveStaticConst() 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
247 bool parseSectionDirectiveLiteral16(StringRef, SMLoc) { in parseSectionDirectiveLiteral16() argument
252 bool parseSectionDirectiveConstructor(StringRef, SMLoc) { in parseSectionDirectiveConstructor() argument
256 bool parseSectionDirectiveDestructor(StringRef, SMLoc) { in parseSectionDirectiveDestructor() argument
260 bool parseSectionDirectiveFVMLibInit0(StringRef, SMLoc) { in parseSectionDirectiveFVMLibInit0() argument
[all …]
HDCOFFAsmParser.cpp95 bool ParseSectionDirectiveText(StringRef, SMLoc) { in ParseSectionDirectiveText() argument
101 bool ParseSectionDirectiveData(StringRef, SMLoc) { in ParseSectionDirectiveData() argument
107 bool ParseSectionDirectiveBSS(StringRef, SMLoc) { in ParseSectionDirectiveBSS() argument
354 bool COFFAsmParser::parseSectionArguments(StringRef, SMLoc) { in parseSectionArguments() argument
423 bool COFFAsmParser::ParseDirectivePopSection(StringRef, SMLoc) { in ParseDirectivePopSection() argument
429 bool COFFAsmParser::ParseDirectiveDef(StringRef, SMLoc) { in ParseDirectiveDef() argument
443 bool COFFAsmParser::ParseDirectiveScl(StringRef, SMLoc) { in ParseDirectiveScl() argument
456 bool COFFAsmParser::ParseDirectiveType(StringRef, SMLoc) { in ParseDirectiveType() argument
469 bool COFFAsmParser::ParseDirectiveEndef(StringRef, SMLoc) { in ParseDirectiveEndef() argument
475 bool COFFAsmParser::ParseDirectiveSecRel32(StringRef, SMLoc) { in ParseDirectiveSecRel32() argument
[all …]
HDELFAsmParser.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 …]
HDWasmAsmParser.cpp91 bool parseSectionDirectiveText(StringRef, SMLoc) { in parseSectionDirectiveText() argument
96 bool parseSectionDirectiveData(StringRef, SMLoc) { in parseSectionDirectiveData() argument
149 bool parseSectionDirective(StringRef, SMLoc loc) { in parseSectionDirective() argument
215 bool parseDirectiveSize(StringRef, SMLoc Loc) { in parseDirectiveSize() argument
238 bool parseDirectiveType(StringRef, SMLoc) { in parseDirectiveType() argument
271 bool ParseDirectiveIdent(StringRef, SMLoc) { in ParseDirectiveIdent() argument
HDCOFFMasmParser.cpp56 bool IgnoreDirective(StringRef, SMLoc) { in IgnoreDirective() argument
185 bool ParseSectionDirectiveCode(StringRef, SMLoc) { in ParseSectionDirectiveCode() argument
191 bool ParseSectionDirectiveInitializedData(StringRef, SMLoc) { in ParseSectionDirectiveInitializedData() argument
197 bool ParseSectionDirectiveUninitializedData(StringRef, SMLoc) { in ParseSectionDirectiveUninitializedData() argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
HDArgumentsAdjusters.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-13-stable/contrib/llvm-project/llvm/lib/TextAPI/
HDTextStubCommon.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-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
HDWebAssemblyTargetStreamer.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-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDStringRef.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-13-stable/contrib/llvm-project/llvm/tools/llvm-as/
HDllvm-as.cpp126 auto SetDataLayout = [](StringRef, StringRef) -> std::optional<std::string> { in main() argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDLocale.h5 class StringRef; variable
HDSipHash.h25 class StringRef; variable
HDSignals.h21 class StringRef; variable
HDSignposts.h23 class StringRef; variable
HDProcess.h36 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
HDDIASession.h19 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Frontend/
HDFrontendActions.h278 StringRef) override { in CreateASTConsumer() argument
289 StringRef) override { in CreateASTConsumer() argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/InterfaceStub/
HDIFSHandler.h30 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
HDWindowsMachineFlag.h21 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
HDFuzzerCLI.h22 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
HDPrettyVariableDumper.h16 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
HDMCAsmParserUtils.h17 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
HDLanaiInstPrinter.h19 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-server/
HDAcceptor.h20 class StringRef; variable
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/
HDXCoreInstPrinter.h21 class StringRef; variable

123456789