HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 1 - 25 of 1407) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ARM/
thumb-diagnostics.s 10 @ CHECK-ERRORS: error: invalid instruction
17 @ CHECK-ERRORS: error: instruction variant requires Thumb2
20 @ CHECK-ERRORS-V5: error: instruction variant requires ARMv6 or later
28 @ CHECK-ERRORS: error: invalid operand for instruction
31 @ CHECK-ERRORS: error: invalid operand for instruction
38 error: invalid operand for instruction label
41 error: invalid operand for instruction label
49 @ CHECK-ERRORS: error: registers must be in range r0-r7
52 @ CHECK-ERRORS: error: writeback operator '!' expected
55 @ CHECK-ERRORS: error: writeback operator '!' not allowed when base register in register lis
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
delayed-permission-denied.js 12 var error; variable
18 error = e;
19 shouldBe('error.code', 'error.PERMISSION_DENIED');
20 shouldBe('error.message', '"User denied Geolocation"');
24 testFailed('Error callback invoked unexpectedly');
delayed-permission-denied-for-multiple-requests.js 14 var error; variable
21 error = e;
22 shouldBe('error.code', 'error.PERMISSION_DENIED');
23 shouldBe('error.message', '"User denied Geolocation"');
28 testFailed('Error callback invoked unexpectedly');
37 error = e;
38 shouldBe('error.code', 'error.PERMISSION_DENIED');
39 shouldBe('error.message', '"User denied Geolocation"')
    [all...]
disconnected-frame.js 1 description("Tests that when a request is made on a Geolocation object and its Frame is disconnected before a callback is made, the error callback is invoked with the correct error message.");
13 var error; variable
19 error = e;
20 shouldBe('error.code', '2');
21 shouldBe('error.message', '"Geolocation cannot be used in frameless documents"');
disconnected-frame-already.js 13 var error; variable
19 testFailed('Error callback invoked unexpectedly');
  /external/oprofile/libutil/tests/
string_tests.c 17 void error(char const * str) function
27 error("\"\" is not a prefix of \"\"");
29 error("\"\" is not a prefix of a");
31 error("a is not a prefix of a");
33 error("a is not a prefix of aa");
35 error("b is a prefix of a");
38 error("skip_ws of \"\" is not \"\"");
40 error("skip_ws of \\na is not a");
42 error("skip_ws of \\n\\na is not a");
44 error("skip_ws of \\n a is not a")
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
error.h 1 /* Specializations for error functions.
21 # error "Never include <bits/error.h> directly; use <error.h> instead."
27 error)
31 error)
38 error (int __status, int __errnum, __const char *__format, ...) function
  /external/chromium/chrome/browser/extensions/
convert_user_script_unittest.cc 23 std::string error; local
25 test_file, GURL("http://www.google.com/foo"), &error));
28 EXPECT_EQ("", error);
63 std::string error; local
65 test_file, GURL("http://www.google.com/foo/bar.user.js?monkey"), &error));
68 EXPECT_EQ("", error);
103 std::string error; local
105 test_file, GURL("http://www.google.com/foo/bar.user.js?monkey"), &error));
108 EXPECT_EQ("User script must be UTF8 encoded.", error);
  /external/clang/test/CodeGenCXX/
constructor-convert.cpp 9 static void error(const Twine &Message) {} function
14 error("cl::location(x) specified more than once!");
  /external/dbus/bus/
activation-helper-bin.c 36 convert_error_to_exit_code (DBusError *error)
38 if (dbus_error_has_name (error, DBUS_ERROR_NO_MEMORY))
41 if (dbus_error_has_name (error, DBUS_ERROR_SPAWN_CONFIG_INVALID))
44 if (dbus_error_has_name (error, DBUS_ERROR_SPAWN_SETUP_FAILED))
47 if (dbus_error_has_name (error, DBUS_ERROR_SPAWN_SERVICE_INVALID))
50 if (dbus_error_has_name (error, DBUS_ERROR_SPAWN_PERMISSIONS_INVALID))
53 if (dbus_error_has_name (error, DBUS_ERROR_SPAWN_FILE_INVALID))
56 if (dbus_error_has_name (error, DBUS_ERROR_SPAWN_EXEC_FAILED))
59 if (dbus_error_has_name (error, DBUS_ERROR_INVALID_ARGS))
62 if (dbus_error_has_name (error, DBUS_ERROR_SPAWN_CHILD_SIGNALED)
74 DBusError error; local
    [all...]
  /external/freetype/src/base/
ftpic.c 32 FT_Error error = FT_Err_Ok; local
36 error = ft_base_pic_init( library );
37 if(error)
38 return error;
ftwinfnt.c 32 FT_Error error; local
35 error = FT_Err_Invalid_Argument;
43 error = service->get_header( face, header );
47 return error;
ftmm.c 39 FT_Error error; local
47 error = FT_Err_Invalid_Argument;
56 error = FT_Err_Ok;
59 return error;
69 FT_Error error; local
73 error = ft_face_get_mm_service( face, &service );
74 if ( !error )
76 error = FT_Err_Invalid_Argument;
78 error = service->get_mm( face, amaster );
81 return error;
91 FT_Error error; local
114 FT_Error error; local
137 FT_Error error; local
160 FT_Error error; local
186 FT_Error error; local
    [all...]
  /external/icu4c/samples/layout/
GnomeGUISupport.cpp 26 GtkWidget *error; local
29 error = gnome_error_dialog(s);
30 gtk_widget_show(error);
  /external/valgrind/main/cachegrind/tests/
dlclose.c 17 char *error; local
26 if ((error = dlerror()) != NULL) {
27 fprintf (stderr, "%s\n", error);
  /external/webkit/Source/WebKit2/Shared/API/c/cf/
WKErrorCF.cpp 37 RefPtr<WebError> error = WebError::create(ResourceError(cfError)); local
38 return toAPI(error.release().releaseRef());
41 CFErrorRef WKErrorCopyCFError(CFAllocatorRef alloc, WKErrorRef error)
43 RetainPtr<CFErrorRef> cfError = toImpl(error)->platformError().cfError();
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 27 #define error(x, y, z) perror(z) /* Throw out meaningless arguments */ macro
29 void error ();
32 /* Allocate N bytes of memory dynamically, with error checking. */
43 error (2, 0, "virtual memory exhausted");
48 with error checking.
67 error (2, 0, "virtual memory exhausted");
  /hardware/ti/omap4xxx/security/tf_daemon/
delegation_client_extension.c 63 * It returns 0 in case of success and the error code requested by tf_daemon otherwise.
67 int error = 0; local
76 error = smcPropertiesParse(configurationFileName);
77 if ( error != 0 )
79 return error;
  /development/build/tools/
mk_sdk_repo_xml.sh 15 function error() { function
16 echo "*** ERROR: " $@
35 error "Missing tool: sha1sum (Linux: apt-get install coreutils; Mac: port install md5sha1sum)"
40 [[ -z "$OUT" ]] && error "Missing output.xml name."
44 [[ ! -f "$SCHEMA" ]] && error "Invalid XML schema name: $SCHEMA."
49 [[ -z "$XMLNS" ]] && error "Failed to find xmlns:sdk in $SCHEMA."
55 [[ -z "$ROOT" ]] && error "Failed to find root element in $SCHEMA."
156 [[ -z $TYPE ]] && error "Unknown archive type '$1'."
179 [[ ! -f "$SRC" ]] && error "Missing file for archive $TYPE/$OS: $SRC"
230 error "Failed to find source.properties or manifest.ini in $SRC
    [all...]
  /external/chromium/webkit/glue/
idb_bindings.cc 27 bool error = web_idb_key_path.parseError() != 0; local
28 // TODO(bulach): what to do when we have a parse error? For now, setting
33 if (error) {
40 return error;
  /external/webkit/Source/WebCore/platform/text/mac/
make-charset-table.pl 36 my $error = 0;
38 sub error ($) subroutine
41 $error = 1;
48 error "$name shows up twice in output" if $namesWritten{$name};
78 error "Platform encoding name $PlatformName is mentioned twice in $baseFilename" if $seenPlatformNames{$PlatformNameWithFlags};
90 error "$name, in $baseFilename, has illegal characters in it";
96 error "$name, in $baseFilename, has illegal characters in it (must be all lowercase alphanumeric)";
100 error "$name comes after $prevName in $baseFilename, but everything must be in alphabetical order";
110 error "$name is mentioned twice in $baseFilename" if $seenIANANames{$canonicalName};
123 error "$baseFilename lists both $name and $otherName under $PlatformName, but that aliasing is already s (…)
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
GetValueNetscapeWindow.cpp 50 NPError error = NPN_GetValue(NPNVnetscapeWindow, &hwnd); local
51 if (error != NPERR_NO_ERROR) {
52 pluginLog(instance, "NPN_GetValue(NPNVnetscapeWindow) failed with error %d", error);
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
channel_map.c 32 Word16 error=0; local
57 error=1;
60 return error;
66 Word16 error; local
67 error = 0;
80 error=4;
83 return error;
93 Word16 error; local
94 error = 0;
120 error = 1;
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
SslErrorTest.java 46 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
47 assertTrue(error.hasError(SslError.SSL_EXPIRED));
48 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
57 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
58 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
59 error.addError(SslError.SSL_UNTRUSTED);
60 assertTrue(error.hasError(SslError.SSL_UNTRUSTED));
69 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
70 error.addError(42);
71 assertFalse(error.hasError(42))
80 SslError error = new SslError(42, mCertificate); local
90 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
101 SslError error = new SslError(42, mCertificate); local
111 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate, "foo"); local
121 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate); local
    [all...]
  /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))) {

Completed in 1035 milliseconds

1 2 3 4 5 6 7 8 91011>>