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

1 2 34 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/attr/
error_context.h 26 /* Process an error message */
27 void (*error) (struct error_context *, const char *, ...); member in struct:error_context
29 /* Quote a file name for including in an error message */
37 # define error(ctx, args...) do { \ macro
38 if ((ctx) && (ctx)->error) \
39 (ctx)->error((ctx), args); \
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
syntax.py 26 for each error rather than raising a SyntaxError for the
32 def error(self, node, msg): member in class:SyntaxErrorChecker
46 ## self.error(target, "can't assign to list comprehension")
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sunaudio.py 10 class error(Exception): class in inherits:Exception
22 raise error, 'gethdr: bad magic word'
30 raise error, 'gethdr: bad hdr_size'
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
syntax.py 26 for each error rather than raising a SyntaxError for the
32 def error(self, node, msg): member in class:SyntaxErrorChecker
46 ## self.error(target, "can't assign to list comprehension")
  /prebuilts/gdb/linux-x86/lib/python2.7/
sunaudio.py 10 class error(Exception): class in inherits:Exception
22 raise error, 'gethdr: bad magic word'
30 raise error, 'gethdr: bad hdr_size'
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
error2.go 8 // When embedded, the locally-declared error interface
10 error
15 // error should not be visible
16 error
21 // In struct types, an embedded error must only be visible
23 error
26 // This error declaration shadows the predeclared error type.
27 type error interface { type
28 Error() strin
    [all...]
predeclared.go 10 type error struct{} type
13 func (e error) Error() string {
  /prebuilts/go/linux-x86/src/go/doc/testdata/
error2.go 8 // When embedded, the locally-declared error interface
10 error
15 // error should not be visible
16 error
21 // In struct types, an embedded error must only be visible
23 error
26 // This error declaration shadows the predeclared error type.
27 type error interface { type
28 Error() strin
    [all...]
predeclared.go 10 type error struct{} type
13 func (e error) Error() string {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
syntax.py 26 for each error rather than raising a SyntaxError for the
32 def error(self, node, msg): member in class:SyntaxErrorChecker
46 ## self.error(target, "can't assign to list comprehension")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sunaudio.py 10 class error(Exception): class in inherits:Exception
22 raise error, 'gethdr: bad magic word'
30 raise error, 'gethdr: bad hdr_size'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
syntax.py 26 for each error rather than raising a SyntaxError for the
32 def error(self, node, msg): member in class:SyntaxErrorChecker
46 ## self.error(target, "can't assign to list comprehension")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sunaudio.py 10 class error(Exception): class in inherits:Exception
22 raise error, 'gethdr: bad magic word'
30 raise error, 'gethdr: bad hdr_size'
  /system/extras/tests/kernel.config/
sysvipc_test.cpp 39 int error = (ret == -1) ? (errno == ENOSYS) ? EOPNOTSUPP : errno : 0; local
41 EXPECT_EQ(EOPNOTSUPP, error);
  /test/framework/harnesses/host_controller/
console_argument_parser.py 51 def error(self, message): member in class:ConsoleArgumentParser
55 message: The error message.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
AbstractMethodErrorTest.java 29 Error error = new AbstractMethodError(); local
30 assertNull(error.getCause());
31 assertNull(error.getMessage());
39 Error error = new AbstractMethodError(null); local
40 assertNull(error.getMessage());
41 assertNull(error.getCause());
43 error = new AbstractMethodError("msg");
44 assertEquals("msg", error.getMessage())
    [all...]
  /art/openjdkjvmti/
ti_ddms.cc 75 jvmtiError error = OK; local
77 JvmtiUniquePtr<jbyte[]> ret = AllocJvmtiUniquePtr<jbyte[]>(env, out_data.size(), &error);
78 if (error != OK) {
79 return error;
  /bionic/libc/malloc_debug/
debug_disable.cpp 45 int error = pthread_key_create(&g_disable_key, nullptr); local
46 if (error != 0) {
47 error_log("pthread_key_create failed: %s", strerror(error));
  /bionic/tests/
regex_test.cpp 52 int error = regcomp(&re, "*", REG_EXTENDED); local
53 ASSERT_NE(0, error);
56 // how large a buffer we would need for the error message.
57 int error_length = regerror(error, &re, nullptr, 0);
  /cts/tests/tests/net/src/android/net/http/cts/
SslErrorTest.java 37 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
38 assertTrue(error.hasError(SslError.SSL_EXPIRED));
39 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
43 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
44 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
45 error.addError(SslError.SSL_UNTRUSTED);
46 assertTrue(error.hasError(SslError.SSL_UNTRUSTED));
50 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
51 error.addError(42);
52 assertFalse(error.hasError(42))
56 SslError error = new SslError(42, mCertificate); local
61 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
67 SslError error = new SslError(42, mCertificate); local
72 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate, "foo"); local
77 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
    [all...]
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eight.cpp 31 GLint error = glGetError(); local
32 Data data = {error, -9 , -1};
attach_shader_nine.cpp 30 GLint error = glGetError(); local
31 Data data = {error, -9, -1};
  /development/host/windows/usb/api/
adb_legacy_io_completion.cpp 62 ULONG error = GetLastError(); local
65 ((ERROR_IO_INCOMPLETE == error) || (ERROR_IO_PENDING == error))) {
73 error = GetLastError();
75 ((ERROR_IO_INCOMPLETE != error) && (ERROR_IO_PENDING != error))) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
anydbm.py 36 class error(Exception): class in inherits:Exception
40 _errors = [error]
50 _errors.append(_mod.error)
55 error = tuple(_errors) variable
79 raise error, "need 'c' or 'n' flag to open new db"
82 raise error, "db type could not be determined"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pickletools.py 16 error = KeyError variable in class:OptimizedPickleTests

Completed in 810 milliseconds

1 2 34 5 6 7 8 91011>>