HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 26 - 50 of 1444) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/errors/
errors.go 8 // New returns an error that formats as the given text.
9 func New(text string) error {
13 // errorString is a trivial implementation of error.
18 func (e *errorString) Error() string {
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/testdata/
issue15920.go 7 // The underlying type of Error is the underlying type of error.
9 type Error error
11 func F() Error { return nil }
  /prebuilts/go/linux-x86/test/fixedbugs/bug467.dir/
p1.go 5 func (s SockaddrUnix) Error() string { return "blah" }
  /prebuilts/go/linux-x86/test/fixedbugs/issue15920.dir/
a.go 7 type Error error
9 func F() Error { return nil }
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19911.go 16 func (*ET) Error() string { return "err" }
19 check("false", fmt.Sprintf("(*ET)(nil) == error(nil): %v", (*ET)(nil) == error(nil)))
20 check("true", fmt.Sprintf("(*ET)(nil) != error(nil): %v", (*ET)(nil) != error(nil)))
23 nilError := error(nil)
  /external/deqp/framework/opengl/
gluDefs.cpp 35 Error::Error (int error, const char* message, const char* expr, const char* file, int line)
37 , m_error (error)
41 Error::Error (int error, const std::string& message)
43 , m_error (error)
47 Error::~Error (void) throw(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uu.py 37 __all__ = ["Error", "encode", "decode"]
39 class Error(Exception):
108 raise Error('No valid begin line found in input file')
121 raise Error('Cannot overwrite existing file: %s' % out_file)
144 except binascii.Error, v:
153 raise Error('Truncated input file')
168 parser.error('incorrect number of arguments')
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenHypercallLib/
XenHypercall.c 31 INTN Error;
35 Error = XenHypercall2 (__HYPERVISOR_hvm_op,
37 if (Error != 0) {
39 "XenHypercall: Error %Ld trying to get HVM parameter %d\n",
40 (INT64)Error, Index));
  /external/autotest/client/cros/cellular/
emulator_config.py 18 class Error(Exception):
67 raise Error(
  /external/llvm/tools/bugpoint/
FindBugs.cpp 31 /// recreate the failure. This returns true if a compiler error is found.
79 std::string Error;
80 compileProgram(Program, &Error);
81 if (!Error.empty()) {
83 outs() << Error;
93 bool Diff = diffProgram(Program, Filename, "", false, &Error);
94 if (Error.empty() && Diff) {
96 debugMiscompilation(&Error);
97 if (Error.empty())
100 if (!Error.empty())
    [all...]
  /external/python/cpython2/Lib/plat-mac/
bgenlocations.py 13 Error = "bgenlocations.Error"
46 raise Error, "Please fix bgenlocations.py, BGENDIR does not exist: %s" % BGENDIR
48 raise Error, "Please fix bgenlocations.py, INCLUDEDIR does not exist: %s" % INCLUDEDIR
50 raise Error, "Please fix bgenlocations.py, TOOLBOXDIR does not exist: %s" % TOOLBOXDIR
  /external/python/cpython2/Lib/
uu.py 37 __all__ = ["Error", "encode", "decode"]
39 class Error(Exception):
108 raise Error('No valid begin line found in input file')
121 raise Error('Cannot overwrite existing file: %s' % out_file)
144 except binascii.Error, v:
153 raise Error('Truncated input file')
168 parser.error('incorrect number of arguments')
  /external/python/cpython2/Mac/Demo/applescript/Disk_Copy/
__init__.py 6 Error = aetools.Error
  /external/python/cpython3/Lib/
uu.py 37 __all__ = ["Error", "encode", "decode"]
39 class Error(Exception):
109 raise Error('No valid begin line found in input file')
123 raise Error('Cannot overwrite existing file: %s' % out_file)
146 except binascii.Error as v:
155 raise Error('Truncated input file')
170 parser.error('incorrect number of arguments')
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
FindBugs.cpp 30 /// recreate the failure. This returns true if a compiler error is found.
78 std::string Error;
79 compileProgram(Program, &Error);
80 if (!Error.empty()) {
82 outs() << Error;
92 bool Diff = diffProgram(Program, Filename, "", false, &Error);
93 if (Error.empty() && Diff) {
95 debugMiscompilation(&Error);
96 if (Error.empty())
99 if (!Error.empty()) {
    [all...]
  /external/valgrind/include/
pub_tool_errormgr.h 37 /* Error records contain enough info to generate an error report. The idea
39 of errors, and we don't want to spew out a fresh error message for each
47 /* The tool-relevant parts of an Error are:
48 kind: what kind of error; must be in the range (0..)
55 Error;
59 ExeContext* VG_(get_error_where) ( const Error* err );
60 ErrorKind VG_(get_error_kind) ( const Error* err );
61 Addr VG_(get_error_address) ( const Error* err );
62 const HChar* VG_(get_error_string) ( const Error* err )
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Error.java 29 * An {@code Error} is a subclass of {@code Throwable}
32 * The {@code ThreadDeath} error, though a "normal" condition,
33 * is also a subclass of {@code Error} because most applications
37 * clause any subclasses of {@code Error} that might be thrown
41 * That is, {@code Error} and its subclasses are regarded as unchecked
49 public class Error extends Throwable {
53 * Constructs a new error with {@code null} as its detail message.
57 public Error() {
62 * Constructs a new error with the specified detail message. The
69 public Error(String message)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
bgenlocations.py 13 Error = "bgenlocations.Error"
46 raise Error, "Please fix bgenlocations.py, BGENDIR does not exist: %s" % BGENDIR
48 raise Error, "Please fix bgenlocations.py, INCLUDEDIR does not exist: %s" % INCLUDEDIR
50 raise Error, "Please fix bgenlocations.py, TOOLBOXDIR does not exist: %s" % TOOLBOXDIR
  /prebuilts/gdb/darwin-x86/lib/python2.7/
uu.py 37 __all__ = ["Error", "encode", "decode"]
39 class Error(Exception):
108 raise Error('No valid begin line found in input file')
121 raise Error('Cannot overwrite existing file: %s' % out_file)
144 except binascii.Error, v:
153 raise Error('Truncated input file')
168 parser.error('incorrect number of arguments')
  /prebuilts/gdb/linux-x86/lib/python2.7/
uu.py 37 __all__ = ["Error", "encode", "decode"]
39 class Error(Exception):
108 raise Error('No valid begin line found in input file')
121 raise Error('Cannot overwrite existing file: %s' % out_file)
144 except binascii.Error, v:
153 raise Error('Truncated input file')
168 parser.error('incorrect number of arguments')
  /prebuilts/go/darwin-x86/src/errors/
example_test.go 12 // MyError is an error implementation that includes a time and message.
18 func (e MyError) Error() string {
22 func oops() error {
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
predeclared.go 10 type error struct{} type
13 func (e error) Error() string {
  /prebuilts/go/darwin-x86/src/net/
cgo_windows.go 11 func (eai addrinfoErrno) Error() string { return "<nil>" }
  /prebuilts/go/darwin-x86/src/os/signal/internal/pty/
pty.go 33 func ptyError(name string, err error) *PtyError {
34 return &PtyError{name, err.Error(), err.(syscall.Errno)}
37 func (e *PtyError) Error() string {
42 func Open() (master *os.File, slave string, err error) {
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/
deadlock.go 9 return "cgo error";
23 func (cgoError) Error() string {

Completed in 1204 milliseconds

12 3 4 5 6 7 8 91011>>