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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebKit/mac/Plugins/
WebNullPluginView.h 35 NSError *error; variable
39 - (id)initWithFrame:(NSRect)frame error:(NSError *)error DOMElement:(DOMElement *)element;
  /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/webkit/LayoutTests/fast/dom/Geolocation/resources/
permission-denied-already-error.js 1 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service encounters an error.");
7 var error; variable
12 error = e
13 shouldBe('error.code', 'error.PERMISSION_DENIED');
14 shouldBe('error.message', '"User denied Geolocation"');
28 error = e
29 shouldBe('error.code', 'error.PERMISSION_DENIED')
    [all...]
permission-denied-already-success.js 1 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service has a good position.");
7 var error; variable
12 error = e
13 shouldBe('error.code', 'error.PERMISSION_DENIED');
14 shouldBe('error.message', '"User denied Geolocation"');
26 error = e
27 shouldBe('error.code', 'error.PERMISSION_DENIED');
28 shouldBe('error.message', '"User denied Geolocation"')
    [all...]
permission-denied.js 6 var error; variable
11 error = e
12 shouldBe('error.code', 'error.PERMISSION_DENIED');
13 shouldBe('error.message', '"User denied Geolocation"');
timeout-zero.js 1 description("Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.");
5 var error; variable
10 error = e
11 shouldBe('error.code', 'error.TIMEOUT');
12 shouldBe('error.message', '"Timeout expired"');
error.js 1 description("Tests Geolocation error callback using the mock service.");
8 var error; variable
14 error = e
15 shouldBe('error.code', 'mockCode');
16 shouldBe('error.message', 'mockMessage');
17 shouldBe('error.UNKNOWN_ERROR', 'undefined');
18 shouldBe('error.PERMISSION_DENIED', '1');
19 shouldBe('error.POSITION_UNAVAILABLE', '2');
20 shouldBe('error.TIMEOUT', '3');
permission-denied-already-clear-watch.js 1 description("Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
7 var error; variable
12 error = e
13 shouldBe('error.code', 'error.PERMISSION_DENIED');
14 shouldBe('error.message', '"User denied Geolocation"');
26 error = e
27 shouldBe('error.code', 'error.PERMISSION_DENIED');
28 shouldBe('error.message', '"User denied Geolocation"')
    [all...]
permission-denied-stops-watches.js 8 var error; variable
15 testFailed('Error callback invoked unexpectedly : ' + error.message);
20 error = e
21 shouldBe('error.code', 'error.PERMISSION_DENIED');
22 shouldBe('error.message', '"User denied Geolocation"');
timeout-clear-watch.js 1 description("Tests that when a watch times out and is cleared from the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
5 var error; variable
10 error = e
11 shouldBe('error.code', 'error.TIMEOUT');
12 shouldBe('error.message', '"Timeout expired"');
  /external/webkit/WebKitTools/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");
  /device/samsung/crespo/alsa-utils/alsactl/
alsactl.h 22 #define error(...) do {\ macro
28 #define error(args...) do {\ macro
  /external/webkit/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...]
  /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...]
  /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))) {
  /external/bluetooth/glib/gio/
gasynchelper.h 33 GError * error; member in struct:__anon1987
43 GError *error,
  /external/chromium/base/
thread_local_posix.cc 15 int error = pthread_key_create(&slot, NULL); local
16 CHECK(error == 0);
21 int error = pthread_key_delete(slot); local
22 DCHECK(error == 0);
32 int error = pthread_setspecific(slot, value); local
33 CHECK(error == 0);
thread_local_storage_posix.cc 16 int error = pthread_key_create(&key_, destructor); local
17 if (error) {
28 int error = pthread_key_delete(key_); local
29 if (error)
41 int error = pthread_setspecific(key_, value); local
42 if (error)
  /external/dbus/test/
spawn-test.c 20 DBusError error; local
34 if (!_dbus_spawn_async_with_babysitter (NULL, argv_copy, setup_func, NULL, &error))
37 error.message);
test-names.c 16 DBusError error; local
17 dbus_error_init (&error);
19 (void) dbus_bus_request_name (connection, name, 0, &error);
20 if (dbus_error_is_set (&error))
23 fprintf (stderr, "Error acquiring name '%s': %s\n", name, error.message);
25 fprintf (stdout, "Expected Error acquiring name '%s': %s\n", name, error.message);
27 error.message);
28 dbus_error_free (&error);
48 DBusError error; local
    [all...]
  /external/easymock/src/org/easymock/internal/
AssertionErrorWrapper.java 22 private final AssertionError error; field in class:AssertionErrorWrapper
24 public AssertionErrorWrapper(AssertionError error) {
25 this.error = error;
29 return error;
  /external/freetype/src/autofit/
afpic.c 54 FT_Error error = AF_Err_Ok; local
61 return error;
85 if(error)
87 return error;

Completed in 3271 milliseconds

1 2 3 4 5 6 7 8 91011>>