Searched defs:Error (Results 126 - 150 of 408) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/libjingle/xmpp/
H A Dxmppstanzaparser.h51 virtual void Error(XmlParseContext * pctx, function in class:buzz::XmppStanzaParser::ParseHandler
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DDFA.cs85 Console.Error.WriteLine("Enter DFA.predict for decision " + decisionNumber);
92 Console.Error.WriteLine("DFA " + decisionNumber + " state " + s + " LA(1)=" + (char)input.LA(1) + "(" + input.LA(1) +
97 Console.Error.WriteLine("DFA " + decisionNumber +
102 Console.Error.WriteLine("DFA " + decisionNumber +
114 Console.Error.WriteLine("accept; predict " + accept[s] + " from state " + s);
128 Console.Error.WriteLine("EOT transition");
147 Console.Error.WriteLine("EOT transition");
154 Console.Error.WriteLine("accept via EOF; predict " + accept[eof[s]] + " from " + eof[s]);
159 Console.Error.WriteLine("min[" + s + "]=" + min[s]);
160 Console.Error
191 public virtual void Error(NoViableAltException nvae) { method in class:Antlr.Runtime.DFA
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Derror.rb45 module Error module in class:ANTLR3
47 =begin rdoc ANTLR3::Error::BacktrackingFailed
96 =begin rdoc ANTLR3::Error::RecognitionError
207 =begin rdoc ANTLR3::Error::MismatchedToken
230 =begin rdoc ANTLR3::Error::UnwantedToken
248 =begin rdoc ANTLR3::Error::MissingToken
286 # raises ANTLR3::Error::MissingToken: at "c"
313 =begin rdoc ANTLR3::Error::MismatchedRange
338 =begin rdoc ANTLR3::Error::MismatchedSet
361 =begin rdoc ANTLR3::Error
[all...]
/external/autotest/client/common_lib/cros/
H A Dchrome.py18 Error = exceptions.Error variable
261 except Error:
/external/clang/include/clang/Basic/
H A DDiagnosticOptions.h35 Error = 1 << 3, member in class:clang::DiagnosticLevelMask
36 All = Note | Remark | Warning | Error
/external/clang/lib/Driver/
H A DCompilation.cpp156 std::string Error; local
158 int Res = C.Execute(Redirects, &Error, &ExecutionFailed);
159 if (!Error.empty()) {
160 assert(Res && "Error string set with 0 result code!");
161 getDriver().Diag(clang::diag::err_drv_command_failure) << Error;
/external/clang/test/SemaCXX/
H A Dcxx0x-defaulted-functions.cpp89 struct Error { struct in namespace:DefaultedFnExceptionSpec
92 // get one error for 'Error<int>::Error()' and one for 'Error<int>::~Error()'.
95 Error() noexcept(T::error);
96 Error(const Error&) noexcept(T::error);
97 Error(Error
[all...]
/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp187 llvm::raw_string_ostream ES(Error);
192 std::string Error; member in class:clang::tooling::FileMatchTrieTest
220 EXPECT_EQ("Path is ambiguous", Error);
248 EXPECT_EQ("Cannot resolve relative paths", Error);
H A DToolingTest.cpp373 std::string Error; local
377 if (llvm::TargetRegistry::lookupTarget(TargetName, Error) == &Target) {
/external/gemmlowp/meta/generators/
H A Dgemm_NxMxK_neon.py12 class Error(Exception): class in inherits:Exception
16 class ConfigurationError(Error):
H A Dgemv_1xMxK_neon.py13 class Error(Exception): class in inherits:Exception
17 class ConfigurationError(Error):
/external/libmojo/mojo/public/tools/bindings/
H A Dmojom_bindings_generator.py38 from mojom.error import Error namespace
185 print "%s: Error: Circular dependency" % rel_filename.path + \
193 print "%s: Error: %s" % (e.rel_filename.path, e.strerror) + \
199 except Error as e:
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dcodegen.ml7 exception Error of string Exception
19 | Not_found -> raise (Error "unknown variable name"))
32 | _ -> raise (Error "invalid binary operator")
39 | None -> raise (Error "unknown function referenced")
45 raise (Error "incorrect # arguments passed");
185 raise (Error "redefinition of function");
189 raise (Error "redefinition of function with different # args");
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml7 exception Error of string Exception
19 | Not_found -> raise (Error "unknown variable name"))
26 | None -> raise (Error "unknown unary operator")
48 | None -> raise (Error "binary operator not found!")
57 | None -> raise (Error "unknown function referenced")
63 raise (Error "incorrect # arguments passed");
203 raise (Error "redefinition of function");
207 raise (Error "redefinition of function with different # args");
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml7 exception Error of string Exception
25 | Not_found -> raise (Error "unknown variable name")
35 | None -> raise (Error "unknown unary operator")
46 | _ -> raise (Error "destination of '=' must be a variable")
54 | Not_found -> raise (Error "unknown variable name")
77 | None -> raise (Error "binary operator not found!")
87 | None -> raise (Error "unknown function referenced")
93 raise (Error "incorrect # arguments passed");
301 raise (Error "redefinition of function");
305 raise (Error "redefinitio
[all...]
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h104 bool Error = false; local
112 Error = true;
113 return !Error;
/external/llvm/lib/Support/
H A DFileUtilities.cpp176 std::string *Error) {
181 if (Error)
182 *Error = EC.message();
189 if (Error)
190 *Error = EC.message();
212 if (Error)
213 *Error = "Files differ without tolerance allowance";
235 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) {
254 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error))
173 DiffFilesWithTolerance(StringRef NameA, StringRef NameB, double AbsTol, double RelTol, std::string *Error) argument
H A DSpecialCaseList.cpp51 std::string &Error) {
57 Error = (Twine("can't open file '") + Path + "': " + EC.message()).str();
62 Error = (Twine("error parsing file '") + Path + "': " + ParseError).str();
71 std::string &Error) {
73 if (!SCL->parse(MB, Error))
81 std::string Error; local
82 if (auto SCL = create(Paths, Error))
84 report_fatal_error(Error);
87 bool SpecialCaseList::parse(const MemoryBuffer *MB, std::string &Error) { argument
101 Error
50 create(const std::vector<std::string> &Paths, std::string &Error) argument
70 create(const MemoryBuffer *MB, std::string &Error) argument
[all...]
/external/llvm/tools/bugpoint/
H A DBugDriver.cpp175 std::string Error; local
176 compileProgram(Program, &Error);
177 if (!Error.empty()) {
178 outs() << Error;
205 bool Diff = diffProgram(Program, "", "", false, &Error);
206 if (!Error.empty()) {
207 errs() << Error;
212 debugMiscompilation(&Error);
213 if (!Error.empty()) {
214 errs() << Error;
[all...]
H A DToolRunner.h66 std::string *Error = nullptr,
78 std::string &Error);
118 virtual void compileProgram(const std::string &Bitcode, std::string *Error, argument
123 /// fails, it sets Error, otherwise, this function returns the type of code
126 std::string &OutFile, std::string &Error,
129 Error = "OutputCode not supported by this AbstractInterpreter!";
142 std::string *Error,
173 void compileProgram(const std::string &Bitcode, std::string *Error,
180 std::string *Error,
190 /// fails, it sets Error, otherwis
125 OutputCode(const std::string &Bitcode, std::string &OutFile, std::string &Error, unsigned Timeout = 0, unsigned MemoryLimit = 0) argument
[all...]
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp34 SMDiagnostic Error; local
35 std::unique_ptr<Module> M = parseAssemblyString(Assembly, Error, Context);
39 Error.print("", OS);
/external/llvm/unittests/MI/
H A DLiveIntervalTest.cpp41 std::string Error; local
42 const Target *T = TargetRegistry::lookupTarget("", TargetTriple, Error);
/external/llvm/unittests/Support/
H A DProgramTest.cpp149 std::string Error; local
153 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &Error,
155 EXPECT_FALSE(ExecutionFailed) << Error;
221 std::string Error; local
224 &Error, &ExecutionFailed);
225 ASSERT_FALSE(ExecutionFailed) << Error;
234 ProcessInfo WaitResult = llvm::sys::Wait(PI1, 0, true, &Error);
235 ASSERT_TRUE(Error.empty());
243 &Error, &ExecutionFailed);
244 ASSERT_FALSE(ExecutionFailed) << Error;
279 std::string Error; local
292 std::string Error; local
[all...]
/external/nanopb-c/generator/google/protobuf/
H A Dmessage.py40 class Error(Exception): pass class in inherits:Exception
41 class DecodeError(Error): pass
42 class EncodeError(Error): pass
/external/pdfium/xfa/fde/css/
H A Dcfde_csssyntaxparser.h27 Error, member in class:FDE_CSSSyntaxStatus

Completed in 506 milliseconds

1234567891011>>