HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 176 - 200 of 477) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/browser/devtools/
devtools_protocol.cc 14 const char kErrorParam[] = "error";
22 enum Error {
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation.cc 52 Error(error::kAborted);
79 Error(error::kTempDirError);
105 Error(error::kUnzipGenericError);
110 Error(error::kUnzipInvalidArchive);
120 Error(error::kTempDirError)
    [all...]
test_utils.cc 110 void FakeImageWriterClient::Error(const std::string& message) {
  /external/chromium_org/components/json_schema/
json_schema_validator.h 59 // Details about a validation error.
60 struct Error {
61 Error();
63 explicit Error(const std::string& message);
65 Error(const std::string& path, const std::string& message);
67 // The path to the location of the error in the JSON structure.
70 // An english message describing the error.
80 // Error messages.
101 // Utility methods to format error messages. The first method can have one
114 // returns NULL. In that case, |error| contains an error description
    [all...]
  /external/chromium_org/content/browser/media/capture/
content_video_capture_device_core.cc 292 Error(reason);
321 "Idle", "Allocated", "Capturing", "Error"
330 void ContentVideoCaptureDeviceCore::Error(const std::string& reason) {
  /external/chromium_org/extensions/browser/value_store/
value_store.h 18 // Error codes returned from storage methods.
38 // Any other error.
43 struct Error {
44 Error(ErrorCode code,
47 ~Error();
49 static scoped_ptr<Error> Create(ErrorCode code,
52 return make_scoped_ptr(new Error(code, message, key.Pass()));
55 // The error code.
58 // Message associated with the error.
61 // The key associated with the error, if any. Use a scoped_ptr her
95 const Error& error() const { return *error_; } function in class:ValueStore::ReadResultType
122 const Error& error() const { return *error_; } function in class:ValueStore::WriteResultType
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
update.py 16 from sdk_update_common import Error
144 raise Error('Unable to read from URL "%s".\n %s' % (url, e))
146 raise Error('Unable to write to file "%s".\n %s' % (dest_filename, e))
174 raise Error('Unable to chdir into "%s".\n %s' % (extract_path, e))
191 raise Error("Can't open archive '%s'.\n %s" % (archive_path, e))
201 raise Error('Error extracting archive: %s' % archive_path)
216 logging.error('Failed to remove directory \"%s\". %s' % (
297 logging.error('Bundle %s does not exist.' % (bundle_name,))
385 raise Error('Size mismatch on "%s". Expected %s but got %s bytes' %
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
nacl_config.py 77 class Error(Exception):
83 raise Error(message)
263 parser.error('Expected a command. Run with --help for more information.')
271 except Error as e:
  /external/chromium_org/net/tools/flip_server/
streamer_interface.cc 90 bool StreamerSM::Error() const { return false; }
123 LOG(ERROR) << "StreamerSM: Could not create server conenction.";
197 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Error detected";
  /external/chromium_org/ppapi/generators/
idl_namespace.py 82 # Mocks the IDLNode to support error, warning handling, and string functions.
103 def Error(self, msg):
104 if GetOption('release_debug'): print 'Error: %s' % msg
126 print ' ERROR: %s' % err
146 # Add expecting a specific error any any number of warnings
152 DumpFailure(namespace, node, 'Expected error: %s' % msg)
idl_node.py 98 def Error(self, msg):
99 """Log an error for this object."""
313 self.Error('requires %s in %s which is undefined at %s.' % (
  /external/chromium_org/ppapi/tests/
test_fullscreen.cc 83 std::string TestFullscreen::Error() {
116 return Error();
137 return Error();
171 void TestFullscreen::FailFullscreenTest(const std::string& error) {
172 error_ = error;
176 void TestFullscreen::FailNormalTest(const std::string& error) {
177 error_ = error;
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.h 56 enum LoadStatus { Unloaded, Loading, Loaded, Error };
89 DOMError* error() const { return m_error.get(); } function in class:WebCore::FontFace
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
MessageSink.js 28 Error: "error"
65 this.addMessage(text, WebInspector.MessageSink.MessageLevel.Error, show);
  /external/chromium_org/third_party/closure_linter/closure_linter/
indentation.py 25 from closure_linter.common import error namespace
36 Error = error.Error
124 raise Exception("INTERNAL ERROR: indentation stack is not empty: %r" %
135 An error array [error code, error string, error token] if the token is
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 202 std::string Error;
203 const Target *T = TargetRegistry::lookupTarget(Triple, Error);
212 debug_printf("error: no assembly info for target %s\n", Triple.c_str());
223 debug_printf("error: no disassembler for target %s\n", Triple.c_str());
238 debug_printf("error: no register info for target %s\n", Triple.c_str());
244 debug_printf("error: no instruction info for target %s\n", Triple.c_str());
263 debug_printf("error: no instruction printer for target %s\n", Triple.c_str());
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
message.py 40 class Error(Exception): pass
41 class DecodeError(Error): pass
42 class EncodeError(Error): pass
  /external/chromium_org/third_party/skia/tools/
submit_try 153 def Error(msg=None):
166 Error()
185 Error('--bot specified multiple times.')
187 Error('You must specify a builder with "--bot".')
193 Error('Cannot specify "%s" with additional builder names or '
211 Error('Unrecognized builder: %s' % bot)
215 Error('You must specify a revision with "-r".')
219 Error('Unknown argument: %s' % arg)
222 Error('You must specify a changelist name.')
224 Error('You must specify one or more builders using --bot.'
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 1 //===--- Diagnostics.cpp - Helper class for error diagnostics -----*- C++ -*-===//
25 Diagnostics::Context::Context(ConstructMatcherEnum, Diagnostics *Error,
28 : Error(Error) {
29 Error->pushContextFrame(CT_MatcherConstruct, MatcherRange) << MatcherName;
32 Diagnostics::Context::Context(MatcherArgEnum, Diagnostics *Error,
36 : Error(Error) {
37 Error->pushContextFrame(CT_MatcherArg, MatcherRange) << ArgNumber
41 Diagnostics::Context::~Context() { Error->ContextStack.pop_back();
    [all...]
  /external/clang/lib/Driver/
Multilib.cpp 244 std::string Error;
245 if (!R.isValid(Error)) {
246 llvm::errs() << Error;
  /external/clang/test/SemaCXX/
cxx0x-defaulted-functions.cpp 3 void fn() = default; // expected-error {{only special member}}
5 void fn() = default; // expected-error {{only special member}}
89 struct Error {
91 // declaration which has the type 'void () noexcept (T::error)'. We should
92 // get one error for 'Error<int>::Error()' and one for 'Error<int>::~Error()'.
93 void f() noexcept(T::error); // expected-error 2{{has no members}
    [all...]
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 27 << "Expected an error because of: " << Explanation.str();
141 llvm::raw_string_ostream ES(Error);
146 std::string Error;
174 EXPECT_EQ("Path is ambiguous", Error);
202 EXPECT_EQ("Cannot resolve relative paths", Error);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/
ExecutionUtils.java 259 throw new Error(message, e);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 7 exception Error of string
19 | Not_found -> raise (Error "unknown variable name"))
32 | _ -> raise (Error "invalid binary operator")
39 | None -> raise (Error "unknown function referenced")
43 (* If argument mismatch error. *)
45 raise (Error "incorrect # arguments passed");
129 * don't allow an error *)
185 raise (Error "redefinition of function");
189 raise (Error "redefinition of function with different # args");
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 7 exception Error of string
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")
61 (* If argument mismatch error. *)
63 raise (Error "incorrect # arguments passed");
147 * don't allow an error *)
203 raise (Error "redefinition of function");
207 raise (Error "redefinition of function with different # args")
    [all...]

Completed in 798 milliseconds

1 2 3 4 5 6 78 91011>>