Searched refs:Parse (Results 1 - 25 of 85) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUriParser.h25 static bool Parse(llvm::StringRef uri, llvm::StringRef &scheme,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.h24 virtual bool Parse(const char *value) { return false; } function in class:__sanitizer::FlagHandlerBase
50 bool Parse(const char *value) final;
71 inline bool FlagHandler<bool>::Parse(const char *value) { function in class:__sanitizer::FlagHandler
83 inline bool FlagHandler<HandleSignalMode>::Parse(const char *value) { function in class:__sanitizer::FlagHandler
105 inline bool FlagHandler<const char *>::Parse(const char *value) { function in class:__sanitizer::FlagHandler
116 inline bool FlagHandler<int>::Parse(const char *value) { function in class:__sanitizer::FlagHandler
131 inline bool FlagHandler<uptr>::Parse(const char *value) { function in class:__sanitizer::FlagHandler
146 inline bool FlagHandler<s64>::Parse(const char *value) { function in class:__sanitizer::FlagHandler
H A Dsanitizer_suppressions.h36 void Parse(const char *str);
H A Dsanitizer_suppressions.cpp88 Parse(file_contents);
116 void SuppressionContext::Parse(const char *str) { function in class:__sanitizer::SuppressionContext
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCommentBriefParser.h47 std::string Parse();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.h16 /// entity provides a \c Parse method which is capable of transparently
113 /// Parse an ELFHeader entry starting at position \p offset and update the
128 bool Parse(lldb_private::DataExtractor &data, lldb::offset_t *offset);
149 /// Parse an ELFHeader header extension entry. This method is called by
150 /// Parse().
173 /// Parse an ELFSectionHeader entry from the given DataExtracter starting at
187 bool Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
204 /// Parse an ELFProgramHeader entry from the given DataExtractor starting at
219 bool Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
253 /// Parse a
[all...]
H A DELFHeader.cpp101 bool ok = section_zero.Parse(sh_data, &offset);
114 bool ELFHeader::Parse(lldb_private::DataExtractor &data, function in class:ELFHeader
222 bool ELFSectionHeader::Parse(const lldb_private::DataExtractor &data, function in class:ELFSectionHeader
319 bool ELFSymbol::Parse(const lldb_private::DataExtractor &data, function in class:ELFSymbol
362 bool ELFProgramHeader::Parse(const lldb_private::DataExtractor &data, function in class:ELFProgramHeader
400 bool ELFDynamic::Parse(const lldb_private::DataExtractor &data, function in class:ELFDynamic
410 bool ELFRel::Parse(const lldb_private::DataExtractor &data, function in class:ELFRel
422 bool ELFRela::Parse(const lldb_private::DataExtractor &data, function in class:ELFRela
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DOptionParser.h43 static int Parse(llvm::MutableArrayRef<char *> argv,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMerge.h63 bool Parse(std::istream &IS, bool ParseCoverage);
64 bool Parse(const std::string &Str, bool ParseCoverage);
H A DFuzzerMerge.cpp26 bool Merger::Parse(const std::string &Str, bool ParseCoverage) { function in class:fuzzer::Merger
28 return Parse(SS, ParseCoverage);
32 if (!Parse(IS, ParseCoverage)) {
52 bool Merger::Parse(std::istream &IS, bool ParseCoverage) { function in class:fuzzer::Merger
56 // Parse NumFiles.
63 // Parse NumFilesInFirstCorpus.
70 // Parse file names.
76 // Parse STARTED, FT, and COV lines.
318 if (M.Parse(IF, /*ParseCoverage=*/true)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.h56 lldb_private::Status Parse(const lldb_private::DataExtractor &data,
77 lldb_private::Status Parse(const lldb_private::DataExtractor &data,
112 lldb_private::Status Parse(const lldb_private::DataExtractor &data,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h42 Parse();
61 void Parse();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpTypes.h100 static const MinidumpMiscInfo *Parse(llvm::ArrayRef<uint8_t> &data);
113 static llvm::Optional<LinuxProcStatus> Parse(llvm::ArrayRef<uint8_t> &data);
H A DMinidumpTypes.cpp18 const MinidumpMiscInfo *MinidumpMiscInfo::Parse(llvm::ArrayRef<uint8_t> &data) { function in class:MinidumpMiscInfo
38 LinuxProcStatus::Parse(llvm::ArrayRef<uint8_t> &data) { function in class:LinuxProcStatus
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DUriParser.cpp18 // UriParser::Parse
19 bool UriParser::Parse(llvm::StringRef uri, llvm::StringRef &scheme, function in class:UriParser
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.h71 /// Parse a single expression and convert it to IR using Clang. Don't wrap
80 unsigned Parse(DiagnosticManager &diagnostic_manager);
H A DClangUtilityFunction.cpp90 // Parse the expression
108 unsigned num_errors = parser.Parse(diagnostic_manager);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFormatEntity.cpp23 Status error = FormatEntity::Parse(default_format_str, m_default_entry);
95 error = FormatEntity::Parse(value_str, entry);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cpp57 suppression_ctx->Parse(__tsan_default_suppressions());
58 suppression_ctx->Parse(std_suppressions);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DOptionParser.cpp30 int OptionParser::Parse(llvm::MutableArrayRef<char *> argv, function in class:OptionParser
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCodeEmitter.h59 uint32_t Parse) const;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp43 suppression_ctx->Parse(__asan_default_suppressions());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp230 auto Parse = [&](StringRef Str) { local
247 // Parse the substitution and optional following template arguments.
276 std::tie(FirstNode, FirstIsNew) = Parse(First);
281 std::tie(SecondNode, SecondIsNew) = Parse(Second);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentBriefParser.cpp62 std::string BriefParser::Parse() { function in class:clang::comments::BriefParser
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/
H A DAcceptor.cpp90 if (UriParser::Parse(name, scheme, host, port, path)) {

Completed in 157 milliseconds

1234