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

1 2 3 45 6 7 8 91011>>

  /external/llvm/unittests/IR/
VerifierTest.cpp 56 std::string Error;
57 raw_string_ostream ErrorOS(Error);
  /external/regex-re2/re2/
unicode.py 18 class Error(Exception):
19 """Unicode error base class."""
22 class InputError(Error):
23 """Unicode input error class. Raised on invalid input."""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
MediaDescr.py 4 Error = 'MediaDescr.Error'
18 raise Error, ('Format length does not match number of names')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
__init__.py 9 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
__init__.py 9 Error = aetools.Error
  /external/chromium_org/ash/system/locale/
locale_notification_controller.cc 36 virtual void Error() OVERRIDE;
60 void LocaleNotificationDelegate::Error() {
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_launch_error.h 16 enum Error {
17 NONE, // No error.
32 // Returns a message for given |error|.
33 static std::string GetErrorMessage(Error error);
35 // Save error for displaying on next restart. Note only the last saved error
37 static void Save(Error error);
39 // Gets the saved error
    [all...]
  /external/chromium_org/chrome/browser/metrics/variations/
generate_resources_map.py 16 class Error(Exception):
17 """Base error class for all exceptions in generated_resources_map."""
20 class HashCollisionError(Error):
174 raise Error("No content loaded for %s." % (resources_file))
  /external/chromium_org/chrome/browser/ui/cocoa/apps/
quit_with_apps_controller_mac.cc 75 void QuitWithAppsController::Error() {}
  /external/chromium_org/components/crx_file/
crx_file.h 35 enum Error {
45 // read from a CRX file. If a null scoped_ptr is returned, |error|
46 // contains an error code with additional information.
47 static scoped_ptr<CrxFile> Parse(const Header& header, Error* error);
51 // |signature_size| are provided. |error| contains an error code with
57 Error* error);
73 // If false is returned, more detailed error code is returned in |error|
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
common_decoder.h 25 typedef error::Error Error;
144 // error::kNoError if no error was found, one of
145 // error::Error otherwise.
146 error::Error DoCommonCommand(
158 error::Error Handle##name(
    [all...]
gles2_cmd_decoder.h 60 typedef error::Error Error;
198 virtual error::ContextLostReason GetContextLostReason() = 0;
201 // Returns false if a GL error should be generated.
231 // context loss or command buffer parse error.
  /external/chromium_org/media/video/
video_encode_accelerator.h 34 enum Error {
80 // Error notification callback. Note that errors in Initialize() will not be
83 virtual void NotifyError(Error error) = 0;
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update.py 18 from sdk_update_common import RenameDir, RemoveDir, Error
77 except Error:
86 except Error:
90 except Error:
  /external/chromium_org/native_client_sdk/src/tools/
getos.py 35 class Error(Exception):
51 raise Error("Unknown platform: %s" % sys.platform)
67 raise Error("README not found in SDK root: %s" % root)
83 raise Error("error parsing SDK README: %s" % readme)
89 raise Error("error parsing SDK README: %s" % readme)
117 raise Error('Invalid CHROME_PATH: %s' % chrome_path)
131 raise Error('CHROME_PATH is undefined, and %s not found in PATH, nor %s.' % (
156 raise Error("File %s does not exist." % chrome_path
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/lib/
get_shared_deps.py 57 class Error(Exception):
58 '''Local Error class for this file.'''
62 class NoObjdumpError(Error):
63 '''Error raised when objdump is needed but not found'''
166 raise Error('%s\nStdError=%s\nobjdump failed with error code: %d' %
192 raise Error('Library not found [%s]: %s' % (arch, filename))
224 raise Error('cannot find library %s' % name)
  /external/chromium_org/remoting/signaling/
signal_strategy.h 28 // Connection is closed due to an error or because Disconnect()
33 enum Error {
74 // Returns the last error. Set when state changes to DISCONNECT.
75 virtual Error GetError() const = 0;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppstanzaparser.h 68 virtual void Error(XmlParseContext * pctx,
  /external/chromium_org/tools/metrics/histograms/
extract_histograms.py 67 class Error(Exception):
131 Error: if the expansion can't be done.
143 logging.error('ordering needs to be prefix or suffix, value is %s',
145 raise Error()
157 logging.error(
161 raise Error()
177 logging.error('Unknown enum type %s', enum.getAttribute('type'))
183 logging.error('Enums %s and %s are not in alphabetical order',
189 logging.error('Duplicate enum %s', name)
202 logging.error('Enum %s int values %d and %d are not in numerical order'
    [all...]
pretty_print.py 46 class Error(Exception):
165 except Error:
166 logging.error('Aborting parsing due to fatal errors.')
179 logging.error('Aborting')
  /external/chromium_org/tools/telemetry/telemetry/unittest/
gtest_progress_reporter.py 72 def Error(self, test, err):
  /external/chromium_org/v8/test/mjsunit/regress/
regress-conditional-position.js 36 Error.prepareStackTrace = function (error, stackTrace) {
47 Error.captureStackTrace(x);
  /external/clang/examples/clang-interpreter/
main.cpp 48 std::string Error;
50 llvm::ExecutionEngine::create(Mod, /*ForceInterpreter*/ false, &Error));
52 llvm::errs() << "unable to make execution engine: " << Error << "\n";
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 57 std::string Error;
59 OutputPath.str().c_str(), Error,
61 if (!Error.empty()) {
63 clang::diag::warn_fe_cc_print_header_failure) << Error;
  /external/lldb/tools/debugserver/source/
DNBError.h 45 ValueType Error() const { return m_err; }

Completed in 2178 milliseconds

1 2 3 45 6 7 8 91011>>