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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
copy.py 10 For module specific errors, copy.Error is raised.
55 class Error(Exception):
57 error = Error # backward compatibility variable
64 __all__ = ["Error", "copy", "deepcopy"]
94 raise Error("un(shallow)copyable object of type %s" % cls)
188 raise Error(
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_traceback.py 8 from test.test_support import run_unittest, is_jython, Error
185 raise Error("unable to create test traceback string")
  /art/test/003-omnibus-opcodes/src/
Main.java 78 throw new Error();
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 35 from closure_linter.common import error namespace
52 Error = error.Error
137 # possible encodings or return without an error to protect against
182 # this won't report an error for {number|Array.<string>?}, etc.
195 Reports a MISSING_SPACE error if the token does not begin with a space or
283 # block is undoubtedly a parse error.
325 # TODO(robbyw): Error about no multi-statement lines.
339 # NOTE(user): This is not a perfect check, and will not throw an error
    [all...]
  /external/chromium_org/ash/display/
resolution_notification_controller.cc 44 virtual void Error() OVERRIDE;
70 void ResolutionChangeNotificationDelegate::Error() {
  /external/chromium_org/ash/system/chromeos/bluetooth/
bluetooth_notification_controller.cc 62 virtual void Error() OVERRIDE;
99 void BluetoothPairingNotificationDelegate::Error() {
  /external/chromium_org/base/files/
file.h 97 enum Error {
168 explicit File(Error error_details);
197 Error error_details() const { return error_details_; }
207 // (relative to the start) or -1 in case of error.
211 // given offset. Returns the number of bytes read, or -1 on error. Note that
215 // an error.
223 // platforms. Returns the number of bytes read, or -1 on error.
231 // on error. Note that this function makes a best effort to write all data on
241 // platforms. Returns the number of bytes written, or -1 on error.
281 Error Lock()
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/file_handlers/
app_file_handler_util.cc 30 const char kSecurityError[] = "Security error";
108 // Reports an error in completing a work item. This may be called more than
110 void Error(const base::FilePath& error_path);
182 // Reports an error in completing a work item. This may be called more than
184 void WritableFileChecker::Error(const base::FilePath& error_path) {
192 std::string error; local
200 base::Bind(&WritableFileChecker::Error, this, *it));
217 Error(path);
342 std::string* error) {
344 *error = kInvalidParameters
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
test_utils.cc 132 void FakeImageWriterClient::Error(const std::string& message) {
  /external/chromium_org/chrome/test/base/
v8_unit_test.cc 186 console->Set(v8::String::NewFromUtf8(isolate, "error"),
187 v8::FunctionTemplate::New(isolate, &V8UnitTest::Error));
282 void V8UnitTest::Error(const v8::FunctionCallbackInfo<v8::Value>& args) {
284 LOG(ERROR) << LogArgs2String(args);
309 LOG(ERROR) << *message;
  /external/chromium_org/content/common/gpu/client/
webgraphicscontext3d_command_buffer_impl.h 155 // These are the same error codes as used by EGL.
156 enum Error {
207 Error last_error_;
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
lexer.py 25 from ..error import Error
28 class LexError(Error):
32 Error.__init__(self, filename, message, lineno=lineno)
  /external/chromium_org/mojo/system/
raw_channel.h 51 enum Error {
59 // Unknown read error.
61 // Generic write error.
71 // Called when there's a (fatal) error. This may call the raw channel's
77 virtual void OnError(Error error) = 0;
231 // Returns true on success and false on error (e.g., invalid control message).
291 // Converts an |IO_FAILED_...| for a read to a |Delegate::Error|.
292 static Delegate::Error ReadIOResultToError(IOResult io_result);
294 // Calls |delegate_->OnError(error)|. Must be called on the I/O thread WITHOU
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
manifest_util.py 100 class Error(Exception):
101 """Generic error/exception for manifest_util module"""
124 """Validate the content of the archive object. Raise an Error if
128 error_on_unknown_keys: If True, raise an Error when unknown keys are
133 raise Error('Invalid host-os name in archive')
138 raise Error('Archive "%s" has no URL' % host_os)
140 raise Error('Archive "%s" has no size' % host_os)
143 raise Error('Archive "%s" has no checksum' % host_os)
145 raise Error('Archive "%s" has a checksum, but it is not a dict' % host_os)
147 raise Error('Archive "%s" has an empty checksum dict' % host_os
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update_main.py 16 from sdk_update_common import Error
67 raise Error('Unable to read config from "%s".\n %s' % (path, e))
71 except Error as e:
72 raise Error('Parsing config file from "%s" failed.\n %s' % (path, e))
74 except Error as e:
88 raise Error('Unable to create directory "%s".\n %s' % (USER_DATA_DIR, e))
96 raise Error('Unable to write config to "%s".\n %s' % (path, e))
107 raise Error('Unable to read manifest from "%s".\n %s' % (path, e))
112 raise Error('Parsing local manifest "%s" failed.\n %s' % (path, e))
113 except Error as e
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
create_nmf.py 133 """Wrap elf.ParseElfHeader to return raise this module's Error on failure."""
136 except elf.Error, e:
137 raise Error(str(e))
140 class Error(Exception):
141 """Local Error class for this file."""
221 raise Error('Input file not found: %s' % filename)
223 raise Error('Input is not a file: %s' % filename)
246 raise Error('No objdump executable found (see --help for more info)')
247 except get_shared_deps.Error, e:
248 raise Error(str(e)
    [all...]
  /external/chromium_org/net/proxy/
proxy_script_decider_unittest.cc 31 enum Error {
711 // Since there is fallback to DNS-based WPAD, the final error will be that
  /external/chromium_org/net/tools/balsa/
balsa_frame.h 117 bool Error() {
  /external/chromium_org/net/tools/flip_server/
http_interface.cc 83 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Error detected";
140 bool HttpSM::Error() const { return http_framer_->Error(); }
187 // error creating new stream.
  /external/chromium_org/net/tools/testserver/
testserver_base.py 32 class Error(Exception):
33 """Error class for this module."""
36 class OptionError(Error):
37 """Error for bad command line options."""
79 if isinstance(value, socket.error):
  /external/chromium_org/ppapi/generators/
idl_release.py 25 error = None variable
28 global error
29 error = msg
36 global error, warning
37 error = None
128 def Error(self, msg):
175 node.Error('Missing release on overload of previous %s.' %
184 # if the max and min overlap, than's an error
187 node.Error('Declarations out of order.')
189 node.Error('Overlap in releases: %s vs %s when adding %s'
    [all...]
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
HostListLoader.java 28 public enum Error {
36 /** Callback for receiving the host list, or getting notified of an error. */
39 void onError(Error error);
70 * with an error-code describing the failure.
97 postError(callback, Error.AUTH_FAILED);
101 postError(callback, Error.SERVICE_UNAVAILABLE);
104 postError(callback, Error.UNKNOWN);
118 throw new RuntimeException("Unexpected error while fetching host list: " + ex);
120 postError(callback, Error.NETWORK_ERROR)
    [all...]
  /external/chromium_org/sync/tools/testserver/
xmppserver.py 23 class Error(Exception):
24 """Error class for this module."""
28 class UnexpectedXml(Error):
33 Error.__init__(self, 'Unexpected XML element', xml_text)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Console.js 28 Error: "error"
97 error: function(text)
99 this.addMessage(text, WebInspector.Console.MessageLevel.Error, true);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
NetworkRequest.js 99 Error: "error"
792 * @return {?Protocol.Error|undefined}
914 * @param {?Protocol.Error} error
919 function onResourceContent(error, content, contentEncoded)
921 this._content = error ? null : content;
922 this._contentError = error;
992 this._frames.push({ type: WebInspector.NetworkRequest.WebSocketFrameType.Error, text: errorMessage, time: time, opCode: -1, mask: false });

Completed in 1859 milliseconds

1 2 3 4 5 6 7 8 91011>>