Home | History | Annotate | Download | only in Interpreter

Lines Matching defs:error

18 #include "lldb/Core/Error.h"
41 static Error
45 return Error("must specify a valid named summary");
48 return Error("must specify a valid named summary");
49 return Error();
52 static Error
56 return Error("must specify a non-empty summary string");
57 return Error();
72 Error
77 Error error;
92 error = summary.SetCurrentValue(option_arg);
95 error = summary_string.SetCurrentValue(option_arg);
98 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
102 return error;