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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
config.py 8 from sdk_update_common import Error
41 raise Error('Error reading json config:\n%s' % str(e))
47 raise Error('Json encoding error writing config:\n%s' % e)
sdk_update_common.py 16 class Error(Exception):
17 """Generic error/exception for sdk_update module"""
40 Error - If this operation fails for any reason.
63 raise Error('\"%s\" failed with code %d. Output:\n %s' % (
68 # CalledProcessError has no error message, generate one.
69 last_exception = Error('\"%s\" failed with code %d.' % (
71 except Error as e:
78 raise Error('Unable to remove directory "%s"\n %s' % (outdir,
97 # handling a Windows flaky access error. Sleep one second and try
102 raise Error('Could not RenameDir %s => %s after %d tries.\n
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
create_html.py 55 <p>Standard output/error:</p>
98 class Error(Exception):
113 raise Error('file not found: %s' % filename)
116 raise Error('specified input is not a file: %s' % filename)
120 raise Error('input file must be .nexe, .pexe or .nmf: %s' % filename)
124 raise Error('Only one .nmf argument can be specified')
127 raise Error('When specifying muliple input files -o must'
151 raise Error('create_nmf failed')
187 parser.error('no input file specified')
199 except Error, e
    [all...]
ncval.py 23 class Error(Exception):
49 parser.error('No executable file specified')
59 raise Error('executable not found: %s' % nexe)
61 raise Error('not a file: %s' % nexe)
92 except Error as e:
sel_ldr.py 25 class Error(Exception):
74 parser.error('No executable file specified')
82 raise Error('executable not found: %s' % nexe)
84 raise Error('not a file: %s' % nexe)
89 raise Error('Cannot run ARM executables under sel_ldr on ' + osname)
128 raise Error('Cannot run ARM executables under sel_ldr without an emulator'
165 except Error as e:
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
errors.py 23 'Error',
36 class Error(Exception):
37 """Base error for all gcs operations.
39 Error can happen on GAE side or GCS server side.
45 class TransientError(Error):
53 class FatalError(Error):
72 While GCS replies with a 403 error for many reasons, the most common one
82 This error is mostly handled by GCS client. GCS client will request
92 """HTTP >= 500 server side error."""
105 extras: extra info to be logged verbatim if error occurs
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
sslstreamadapterhelper.cc 113 void SSLStreamAdapterHelper::Error(const char* context, int err, bool signal) {
114 LOG(LS_WARNING) << "SSLStreamAdapterHelper::Error("
140 Error("BeginSSL", err, false);
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlbuilder.cc 126 XmlBuilder::Error(XmlParseContext * pctx, XML_Error err) {
xmlparser_unittest.cc 63 virtual void Error(XmlParseContext * pctx, XML_Error code) {
65 ss_ << "ERROR (" << static_cast<int>(code) << ") ";
251 EXPECT_EQ("ERROR (2) ", handler.Str());
256 EXPECT_EQ("START (top) END ERROR (9) ", handler.Str());
261 EXPECT_EQ("ERROR (4) ", handler.Str());
266 EXPECT_EQ("START (hello) ERROR (11) ", handler.Str());
272 EXPECT_EQ("ERROR (3) ", handler.Str());
279 EXPECT_EQ("ERROR (19) ", handler.Str());
286 EXPECT_EQ("ERROR (2) ", handler.Str());
293 EXPECT_EQ("ERROR (2) ", handler.Str())
    [all...]
  /external/chromium_org/third_party/python_gflags/
gflags_validators.py 41 class Error(Exception):
62 message: string, error message to be shown to the user
77 Error: if constraint is not satisfied.
81 raise Error(self.message)
120 raise Error.
121 message: string, error message to be shown to the user if validator's
161 raise Error.
162 message: string, error message to be shown to the user if validator's
  /external/chromium_org/third_party/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."""
  /external/chromium_org/third_party/webrtc/base/
sslstreamadapterhelper.cc 95 void SSLStreamAdapterHelper::Error(const char* context, int err, bool signal) {
96 LOG(LS_WARNING) << "SSLStreamAdapterHelper::Error("
122 Error("BeginSSL", err, false);
  /external/chromium_org/tools/metrics/common/
pretty_print_xml.py 18 class Error(Exception):
65 Error if the XML has unknown tags or attributes.
123 logging.error(
126 raise Error()
192 logging.error('Ignoring unrecognized node data: %s' % node.toxml())
193 raise Error()
  /external/chromium_org/ui/message_center/
notification_delegate.cc 28 void HandleNotificationClickedDelegate::Error() {
60 void HandleNotificationButtonClickDelegate::Error() {
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 84 /// Useful for error reporting.
92 /// matcher if an error occurred. In that case, \c Error will contain a
93 /// description of the error.
98 Diagnostics *Error) = 0;
123 Diagnostics *Error) override;
134 /// \return The matcher object constructed, or an empty Optional if an error
136 /// In that case, \c Error will contain a description of the error.
139 parseMatcherExpression(StringRef MatcherCode, Diagnostics *Error);
    [all...]
  /external/deqp/framework/egl/
egluDefs.cpp 51 throw Error(err, desc.str().c_str(), DE_NULL, file, line);
55 Error::Error (deInt32 errCode, const char* errStr)
61 Error::Error (deInt32 errCode, const char* message, const char* expr, const char* file, int line)
  /external/deqp/framework/opengl/
gluDefs.hpp 45 class Error : public tcu::TestError
48 Error (int error, const char* message, const char* expr, const char* file, int line);
49 Error (int error, const std::string& message);
50 virtual ~Error (void) throw();
  /external/llvm/tools/bugpoint/
bugpoint.cpp 214 std::string Error;
215 bool Failure = D.run(Error);
216 if (!Error.empty()) {
217 errs() << Error;
  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 24 : M(new Module("<main>", getGlobalContext())), Error(""),
25 Engine(EngineBuilder(M).setErrorStr(&Error).create()) {
29 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '"
30 << Error << "'";
39 std::string Error;
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 47 std::string Error;
48 EXPECT_FALSE(MemMgr->finalizeMemory(&Error));
80 std::string Error;
81 EXPECT_FALSE(MemMgr->finalizeMemory(&Error));
115 std::string Error;
116 EXPECT_FALSE(MemMgr->finalizeMemory(&Error));
  /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

Completed in 963 milliseconds

1 2 34 5 6 7 8 91011>>