/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | Parsing.cpp | 59 class ParseError : public llvm::ErrorInfo<ParseError> { class 64 ParseError(size_t Pos, std::string ErrorMsg, std::string InputExcerpt) in ParseError() function in __anon28198e1b0111::ParseError 84 char ParseError::ID; 139 return llvm::make_error<ParseError>(Pos, std::move(ErrorMsg), in makeParseError()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerDataFlowTrace.cpp | 132 static bool ParseError(const char *Err, const std::string &Line) { in ParseError() function 145 return ParseError("no space in the trace line", Line); in ParseDFTLine() 147 return ParseError("the trace line doesn't start with 'F'", Line); in ParseDFTLine() 155 return ParseError("the trace should contain only 0 or 1", Line); in ParseDFTLine() 234 return ParseError("N is greater than the number of functions", L); in Init()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SpecialCaseList.cpp | 116 std::string ParseError; in createInternal() 117 if (!parse(FileOrErr.get().get(), ParseError)) { in createInternal() 118 Error = (Twine("error parsing file '") + Path + "': " + ParseError).str(); in createInternal() 105 std::string ParseError; createInternal() local
|
H A D | JSON.cpp | 678 std::make_unique<ParseError>(Msg, Line, P - StartOfLine, P - Start)); in parseError() 691 char ParseError::ID = 0;
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | Format.cpp | 1245 std::error_code make_error_code(ParseError e) { in make_error_code() 1259 switch (static_cast<ParseError>(EV)) { in message() 1260 case ParseError::Success: in message() 1262 case ParseError::Error: in message() 1264 case ParseError::Unsuitable: in message() 1266 case ParseError::BinPackTrailingCommaConflict: in message() 1268 case ParseError::InvalidQualifierSpecified: in message() 1270 case ParseError::DuplicateQualifierSpecified: in message() 1272 case ParseError::MissingQualifierType: in message() 1274 case ParseError::MissingQualifierOrder: in message() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Format/ |
H A D | Format.h | 35 enum class ParseError { enum 51 std::error_code make_error_code(ParseError e); 5478 struct std::is_error_code_enum<clang::format::ParseError> : std::true_type {};
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
H A D | X86AsmParser.cpp | 1135 bool &ParseError, SMLoc &End); 1137 bool &ParseError, SMLoc &End); 1809 bool &ParseError, SMLoc &End) { in ParseIntelNamedOperator() argument 1834 ParseError = ParseIntelOffsetOperator(Val, ID, Info, End); in ParseIntelNamedOperator() 1835 if (ParseError) in ParseIntelNamedOperator() 1838 ParseError = in ParseIntelNamedOperator() 1840 if (ParseError) in ParseIntelNamedOperator() 1851 bool &ParseError, SMLoc &End) { in ParseMasmNamedOperator() argument 2020 bool ParseError = false; in ParseIntelExpression() local 2021 if (ParseIntelNamedOperator(Identifier, SM, ParseError, End)) { in ParseIntelExpression() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | JSON.h | 895 class ParseError : public llvm::ErrorInfo<ParseError> { 901 ParseError(const char *Msg, unsigned Line, unsigned Column, unsigned Offset) in ParseError() function
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnit.cpp | 714 Error ParseError = getLocationTable().visitAbsoluteLocationList( in findLoclistFromOffset() local 726 if (ParseError || InterpretationError) in findLoclistFromOffset() 727 return joinErrors(std::move(ParseError), std::move(InterpretationError)); in findLoclistFromOffset()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProfReader.cpp | 1873 std::move(E), [&](const SymbolRemappingParseError &ParseError) { in create() argument 1875 ParseError.getLineNum(), in create() 1876 ParseError.getMessage())); in create()
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | TextStubV5.cpp | 170 class JSONStubError : public llvm::ErrorInfo<llvm::json::ParseError> {
|
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 108 bool ParseError = false; member 2327 Info.ParseError = ParseHadError; in parseAndMatchAndEmitTargetInstruction() 6015 if (StatementErr || Info.ParseError) { in parseMSInlineAsm()
|
H A D | MasmParser.cpp | 106 bool ParseError = false; member 2662 Info.ParseError = ParseHadError; in parseStatement() 7372 if (StatementErr || Info.ParseError) { in parseMSInlineAsm()
|