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

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test__locale.py 2 from _locale import (setlocale, LC_NUMERIC, localeconv, Error)
57 except Error:
74 except Error:
85 except Error:
96 except Error:
104 except Error:
118 except Error:
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
error.rb 45 module Error
47 =begin rdoc ANTLR3::Error::BacktrackingFailed
49 error:: BacktrackingFailed
68 # To avoid English-only error messages and to generally make things
70 # but rather the information necessary to generate an error. Then
72 # to generate a localized error message. For example, MismatchedToken
79 # useful error messages.
81 # ANTLR generates code that throws exceptions upon recognition error and
83 # want to quit upon first error, you can turn off the automatic error
    [all...]
  /external/chromium-trace/trace-viewer/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/ash/system/chromeos/screen_security/
screen_tray_item.cc 122 void ScreenNotificationDelegate::Error() {
  /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 58 Error(error::kAborted);
84 Error(error::kTempDirError);
110 Error(error::kUnzipGenericError);
115 Error(error::kUnzipInvalidArchive);
125 Error(error::kTempDirError)
    [all...]
  /external/chromium_org/components/component_updater/
component_unpacker.h 32 // error the component specific installer will be invoked to proceed with
66 // In both cases, if there is an error at any point, the remaining steps will
70 // Possible error conditions.
72 enum Error {
93 typedef base::Callback<void(Error, int)> Callback;
117 // error is encountered, the file is malformed, or the file is incorrectly
121 // The second step of unpacking is to unzip. Returns false if an error
127 // error is encountered.
132 void EndPatching(Error error, int extended_error)
    [all...]
  /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 299 Error(reason);
332 "Idle", "Allocated", "Capturing", "Error"
341 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 60 enum LoadStatus { Unloaded, Loading, Loaded, Error };
94 DOMException* error() const { return m_error.get(); } function in class:blink::FontFace
  /external/chromium_org/third_party/closure_linter/closure_linter/
indentation.py 26 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/chromium_org/tools/telemetry/telemetry/unittest/
progress_reporter.py 33 def Error(self, test, err):
114 progress_reporter.Error(test, err)
  /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...]

Completed in 1209 milliseconds

1 2 3 4 5 6 78 91011>>