HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 251 - 275 of 500) sorted by null

<<11121314151617181920

  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmalintrules.py 38 from closure_linter.common import error namespace
52 Error = error.Error
146 # possible encodings or return without an error to protect against
192 # error for wrong usage of '?' and '|' e.g. {?number|string|null} etc.
204 Reports a MISSING_SPACE error if the token does not begin with a space or
323 # block is undoubtedly a parse error.
375 # TODO(robbyw): Error about no multi-statement lines.
390 # NOTE(user): This is not a perfect check, and will not throw an error
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
srtpfilter.h 81 enum Error {
140 sigslot::repeater3<uint32, Mode, Error> SignalSrtpError;
227 sigslot::repeater3<uint32, SrtpFilter::Mode, SrtpFilter::Error>
272 sigslot::signal3<uint32, SrtpFilter::Mode, SrtpFilter::Error>
276 // For each different ssrc and error, we collect statistics separately.
281 error(SrtpFilter::ERROR_NONE) {
284 SrtpFilter::Error in_error)
287 error(in_error) {
293 (ssrc == key.ssrc && mode == key.mode && error < key.error);
297 SrtpFilter::Error error; member in struct:cricket::SrtpStat::FailureKey
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 49 unsigned Error:1;
92 * It checks whether \p cond is true. If not, an internal compiler error is
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
descriptor.py 48 class Error(Exception):
49 """Base error for this module."""
52 class TypeTransformationError(Error):
53 """Error transforming between python proto type and corresponding C++ type."""
164 Error: If self couldnt be serialized, due to to few constructor arguments.
172 raise Error('Descriptor does not contain serialization.')
  /external/chromium_org/third_party/webrtc/base/
socketadapters.cc 53 // TODO: Spoof error better; Signal Writeable
108 // TODO: Do something better like forwarding the error to the user.
184 SignalCloseEvent(this, 0); // TODO: error code?
379 Error(defer_error_);
412 Error(0);
418 Error(0);
427 #error Wrong code for HTTP_STATUS_PROXY_AUTH_REQ
491 void AsyncHttpsProxySocket::Error(int error) {
494 SetError(error);
    [all...]
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 42 class Error(Exception):
46 class BadSignatureError(Error):
50 class SubprocessError(Error):
52 Error.__init__(self)
271 # Function close DSOs on error and clean up dangling references.
477 with the error code.
714 # checks if they succeeded, and backs out module loads on an error.
724 # Output code to check the initialization status, clean up on error.
    [all...]
  /external/chromium_org/tools/metrics/actions/
extract_actions.py 333 # an error if the line is not a comment.
493 print "Error encountered for path %s" % path
600 class Error(Exception):
618 raise Error('More than 1 child node exists under %s' % tag_name)
620 raise Error('%s\'s child node is not a text node.' % tag_name)
667 logging.error('user actions "%s" has more than one descriptions. Exactly '
675 logging.error('user actions "%s" has more than one obsolete tag. At most '
818 logging.error('Aborting')
  /external/chromium_org/tools/win/link_limiter/
limiter.cc 24 // to confusing error output.
25 static void Error(const wchar_t* msg, ...) {
26 tstring new_msg = tstring(L"limiter fatal error: ") + msg + L"\n";
54 return L"unknown error";
86 Error(L"Error in CreateProcess[%s]: %s",
97 // Returns 0 if there was an error
116 Warn(L"Error while getting number of cores. Try setting the "
197 DWORD error = GetLastError(); local
198 if (error == ERROR_PIPE_BUSY)
    [all...]
  /external/chromium_org/ui/message_center/
notification.h 186 void Error() const { delegate()->Error(); }
  /external/chromium_org/v8/tools/
js2c.py 41 class Error(Exception):
77 raise Error("Eval disallowed in natives.")
79 raise Error("With statements disallowed in natives.")
188 raise Error("Illegal line: " + line)
205 raise Error("Macro %s unclosed" % name)
409 except Error as e:
410 raise Error("In file %s:\n%s" % (source, str(e)))
497 raise Error("Unknown compression type %s." % compression_type)
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 1 //===--- Diagnostics.h - Helper class for error diagnostics -----*- C++ -*-===//
11 /// \brief Diagnostics class to manage error messages.
50 /// \brief Helper class to manage error messages.
99 /// parsing/construction can fail. Any error triggered within a context will
106 Context(ConstructMatcherEnum, Diagnostics *Error, StringRef MatcherName,
110 Context(MatcherArgEnum, Diagnostics *Error, StringRef MatcherName,
115 Diagnostics *const Error;
124 OverloadContext(Diagnostics* Error);
131 Diagnostics *const Error;
135 /// \brief Add an error to the diagnostics
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 60 /// (emit a warning) or Error (emit as an error). It allows clients to
61 /// map ERRORs to Error or Fatal (stop emitting diagnostics after this one).
67 Error = 4, ///< Present this diagnostic as an error.
68 Fatal = 5 ///< Present this diagnostic as a fatal error.
111 Ignored, Note, Remark, Warning, Error, Fatal
166 /// treated as a warning/error by default.
218 /// for an error that is suppressed if it occurs during C++ template
221 /// When an error is suppressed due to SFINAE, the template argumen
    [all...]
  /external/clang/lib/CodeGen/
BackendUtil.cpp 98 /// In this case, we allow this method to fail and not report an error.
99 /// When MustCreateTM is used, we print an error if we are unable to load
351 std::string Error;
353 const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
356 Diags.Report(diag::err_fe_unable_to_create_target) << Error;
607 DiagnosticsEngine::Error, "backend data layout '%0' does not match "
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 150 ErrorMessage = "Error while opening JSON database: " + Result.message();
177 std::string Error;
178 llvm::raw_string_ostream ES(Error);
233 ErrorMessage = "Error while parsing YAML.";
238 ErrorMessage = "Error while parsing YAML.";
  /external/clang/tools/driver/
cc1as_main.cpp 165 // Check for missing argument error.
265 std::string Error;
267 new raw_fd_ostream(Opts.OutputPath.c_str(), Error,
269 if (!Error.empty()) {
271 << Opts.OutputPath << Error;
282 std::string Error;
283 const Target *TheTarget = TargetRegistry::lookupTarget(Opts.Triple, Error);
291 Error = EC.message();
443 // Set an error handler, so that any LLVM backend diagnostics go through our
444 // error handler
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp 35 Diagnostics Error;
37 Parser::parseExpression(Code, this, &Value, &Error);
39 Errors.push_back(Error.toStringFull());
52 Diagnostics *Error) {
86 EXPECT_EQ("1:1: Error parsing unsigned token: <12345678901>", Sema.Errors[3]);
87 EXPECT_EQ("1:1: Error parsing unsigned token: <1a1>", Sema.Errors[4]);
98 EXPECT_EQ("1:1: Error parsing string token: <\"Baz>", Sema.Errors[2]);
156 Diagnostics Error;
160 &Error));
161 EXPECT_EQ("", Error.toStringFull())
    [all...]
  /external/clang/unittests/Format/
FormatTest.cpp     [all...]
  /external/deqp/execserver/
xsWin32TestProcess.hpp 49 class Error : public std::runtime_error
52 Error (DWORD error, const char* msg);
  /external/lldb/source/Core/
Log.cpp 222 Log::Error (const char *format, ...)
232 PrintfWithFlags (LLDB_LOG_FLAG_ERROR, "error: %s", arg_msg);
252 PrintfWithFlags (LLDB_LOG_FLAG_ERROR | LLDB_LOG_FLAG_FATAL, "error: %s", arg_msg);
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 42 CAMLprim value llvm_register_ee_exns(value Error) {
43 llvm_ee_error_exn = Field(Error, 0);
177 char *Error;
178 if (LLVMCreateExecutionEngineForModule(&Interp, M, &Error))
179 llvm_raise(llvm_ee_error_exn, Error);
187 char *Error;
188 if (LLVMCreateInterpreterForModule(&Interp, M, &Error))
189 llvm_raise(llvm_ee_error_exn, Error);
197 char *Error;
198 if (LLVMCreateJITCompilerForModule(&JIT, M, Int_val(OptLevel), &Error))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 159 /// Error* - These are little helper functions for error handling.
160 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
161 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
188 return Error("Expected ')' or ',' in argument list");
213 return Error("expected ')'");
224 default: return Error("unknown token when expecting an expression");
333 // Skip token for error recovery.
342 // Skip token for error recovery
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 319 /// Error This flag is true if an error of any kind has been detected.
321 bool Error;
339 /// error_detected - Set the flag indicating that an output error has
341 void error_detected() { Error = true; }
344 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
345 /// information about the error is put into ErrorInfo, and the stream should
346 /// be immediately destroyed; the string will be empty if no error occurred.
392 /// whether an output error has been encountered.
396 return Error;
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 32 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const {
46 // long representation... this does not have to do input error checking,
56 Error("constant bigger than 64 bits detected!");
71 Error("constant bigger than 64 bits detected!");
92 Error("constant bigger than 128 bits detected!");
111 Error("constant bigger than 128 bits detected!");
201 return lltok::Error;
225 return lltok::Error;
270 Error("end of file in global variable name");
271 return lltok::Error;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 50 /// inline asm has an error in it. diagInfo is a pointer to the SrcMgrDiagInfo
57 // cookie corresponding to which line the error occurred on.
155 report_fatal_error("Error parsing inline asm\n");
216 bool Error = false;
227 // other point while processing. It's an error if so.
230 Error = true;
236 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant,
239 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant,
243 if (Error) {
382 bool Error = false
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 112 std::string Error;
115 .setErrorStr(&Error);
120 *OutError = strdup(Error.c_str());
127 std::string Error;
130 .setErrorStr(&Error);
135 *OutError = strdup(Error.c_str());
143 std::string Error;
146 .setErrorStr(&Error)
152 *OutError = strdup(Error.c_str());
191 std::string Error;
    [all...]

Completed in 1605 milliseconds

<<11121314151617181920