Searched refs:error (Results 1 - 25 of 2143) sorted by relevance

1234567891011>>

/external/stlport/stlport/stl/config/
H A Dstl_mycomp.h26 * Please remove the error diagnostic below before adjusting
33 #error "Your compiler version is not recognized by STLport. Please edit <stlport/stl/config/stl_mycomp.h>"
H A D_mac.h5 #error Looks like unsupported platform
/external/bluetooth/glib/
H A Dmsvc_recommended_pragmas.h2 #pragma error "This header is for Microsoft VC only."
8 #pragma warning(error:4002) /* too many actual parameters for macro */
9 #pragma warning(error:4003) /* not enough actual parameters for macro */
11 #pragma warning(error:4013) /* 'function' undefined; assuming extern returning int */
13 #pragma warning(error:4020) /* too many actual parameters */
14 #pragma warning(error:4021) /* too few actual parameters */
15 #pragma warning(error:4027) /* function declared without formal parameter list */
16 #pragma warning(error:4029) /* declared formal parameter list different from definition */
17 #pragma warning(error:4033) /* 'function' must return a value */
18 #pragma warning(error
[all...]
/external/easymock/src/org/easymock/internal/
H A DAssertionErrorWrapper.java22 private final AssertionError error; field in class:AssertionErrorWrapper
24 public AssertionErrorWrapper(AssertionError error) { argument
25 this.error = error;
29 return error;
/external/freetype/include/freetype/
H A Dttunpat.h29 #error "freetype.h of FreeType 1 has been loaded!"
30 #error "Please fix the directory search order for header files"
31 #error "so that freetype.h of FreeType 2 is found first."
H A Dftbbox.h38 #error "freetype.h of FreeType 1 has been loaded!"
39 #error "Please fix the directory search order for header files"
40 #error "so that freetype.h of FreeType 2 is found first."
74 /* FreeType error code. 0~means success. */
H A Dftgzip.h26 #error "freetype.h of FreeType 1 has been loaded!"
27 #error "Please fix the directory search order for header files"
28 #error "so that freetype.h of FreeType 2 is found first."
69 * FreeType error code. 0~means success.
H A Dftlzw.h26 #error "freetype.h of FreeType 1 has been loaded!"
27 #error "Please fix the directory search order for header files"
28 #error "so that freetype.h of FreeType 2 is found first."
66 * FreeType error code. 0~means success.
H A Dftsynth.h52 #error "freetype.h of FreeType 1 has been loaded!"
53 #error "Please fix the directory search order for header files"
54 #error "so that freetype.h of FreeType 2 is found first."
H A Dftxf86.h26 #error "freetype.h of FreeType 1 has been loaded!"
27 #error "Please fix the directory search order for header files"
28 #error "so that freetype.h of FreeType 2 is found first."
74 /* Font format string. NULL in case of error. */
/external/freetype/src/base/
H A Dftmm.c39 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...]
H A Dftpic.c32 FT_Error error = FT_Err_Ok; local
36 error = ft_base_pic_init( library );
37 if(error)
38 return error;
H A Dftwinfnt.c32 FT_Error error; local
35 error = FT_Err_Invalid_Argument;
43 error = service->get_header( face, header );
47 return error;
/external/dbus/dbus/
H A Ddbus-errors.c43 char *name; /**< error name */
44 char *message; /**< error message */
58 * Returns a longer message describing an error name.
59 * If the error name is unknown, returns the name
62 * @param error the error to describe
63 * @returns a constant string describing the error.
66 message_from_error (const char *error) argument
68 if (strcmp (error, DBUS_ERROR_FAILED) == 0)
69 return "Unknown error";
160 dbus_error_init(DBusError *error) argument
183 dbus_error_free(DBusError *error) argument
215 dbus_set_error_const(DBusError *error, const char *name, const char *message) argument
274 dbus_error_has_name(const DBusError *error, const char *name) argument
301 dbus_error_is_set(const DBusError *error) argument
326 dbus_set_error(DBusError *error, const char *name, const char *format, ...) argument
[all...]
H A Ddbus-uuidgen.c29 #error "dbus-uuidgen should not be needed on Windows"
46 DBusError *error)
55 _DBUS_SET_OOM (error);
72 * @param error error return
73 * @returns #FALSE if error is set
79 DBusError *error)
87 if (!_dbus_read_uuid_file (&filename_str, &uuid, create_if_not_found, error))
88 goto error;
92 if (!_dbus_read_local_machine_uuid (&uuid, create_if_not_found, error))
44 return_uuid(DBusGUID *uuid, char **uuid_p, DBusError *error) argument
76 dbus_internal_do_not_use_get_uuid(const char *filename, char **uuid_p, dbus_bool_t create_if_not_found, DBusError *error) argument
[all...]
H A Ddbus-errors.h25 #error "Only <dbus/dbus.h> can be included directly, this file may disappear or change contents."
41 /** Mostly-opaque type representing an error that occurred */
49 const char *name; /**< public error name field */
50 const char *message; /**< public error message field */
61 void dbus_error_init (DBusError *error);
62 void dbus_error_free (DBusError *error);
63 void dbus_set_error (DBusError *error,
67 void dbus_set_error_const (DBusError *error,
72 dbus_bool_t dbus_error_has_name (const DBusError *error,
74 dbus_bool_t dbus_error_is_set (const DBusError *error);
[all...]
/external/chromium/net/base/
H A Dnet_errors.cc15 const char* ErrorToString(int error) { argument
16 if (error == 0)
19 switch (error) {
H A Dnet_errors.h12 // Error domain of the net module's error codes.
17 // No error.
24 // The value of the first certificate error code.
28 // Returns a textual representation of the error code for logging purposes.
29 const char* ErrorToString(int error);
31 // Returns true if |error| is a certificate error code.
32 inline bool IsCertificateError(int error) { argument
35 return error <= ERR_CERT_BEGIN && error > ERR_CERT_EN
[all...]
/external/chromium/base/
H A Dthread_local_posix.cc15 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);
H A Dthread_local_storage_posix.cc16 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/webkit/WebKitTools/Scripts/webkitpy/style/processors/
H A Dcommon.py36 def check_no_carriage_return(line, line_number, error):
45 error: The function to call with any errors found.
50 error(line_number,
/external/webkit/WebCore/manual-tests/inspector/resources/
H A Dscript-error.js2 this.will.be.an.error = 1;
/external/webkit/WebKit/chromium/src/
H A DWebURLError.cpp42 WebURLError::WebURLError(const ResourceError& error) argument
44 *this = error;
47 WebURLError& WebURLError::operator=(const ResourceError& error) argument
49 if (error.isNull())
52 domain = error.domain();
53 reason = error.errorCode();
54 unreachableURL = KURL(ParsedURLString, error.failingURL());
/external/stlport/test/unit/
H A Dmacro_checks.cpp6 # error Missing CHAR_BIT definition.
10 # error Weird WCHAR_BIT value.
14 # error Missing CHAR_MAX definition.
18 # error Missing CHAR_MIN definition.
22 # error Weird CHAR_MIN or CHAR_MAX macro values.
26 # error Missing INT_MAX definition.
30 # error Missing INT_MIN definition.
34 # error Weird INT_MIN or INT_MAX macro values.
38 # error Missing LONG_MAX definition.
42 # error Missin
[all...]
/external/dbus/test/
H A Dtest-names.c16 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
51 dbus_error_init (&error);
[all...]

Completed in 260 milliseconds

1234567891011>>