Searched refs:error (Results 26 - 50 of 3763) sorted by relevance

1234567891011>>

/external/clang/test/Preprocessor/
H A D_Pragma.c9 #error #define invalid
H A Dexpr_multichar.c5 #error Bad multichar constant calculation!
H A Dpragma_diagnostic.c17 #pragma GCC diagnostic error "-Wundef"
19 #if FOO // expected-error {{'FOO' is not defined}}
23 #define foo error
24 #pragma GCC diagnostic foo "-Wundef" // expected-warning {{pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop'}}
26 #pragma GCC diagnostic error 42 // expected-error {{expected string literal in pragma diagnostic}}
28 #pragma GCC diagnostic error "-Wundef" 42 // expected-warning {{unexpected token in pragma diagnostic}}
29 #pragma GCC diagnostic error "invalid-name" // expected-warning {{pragma diagnostic expected option name (e.g. "-Wundef")}}
31 #pragma GCC diagnostic error "-Winvalid-name" // expected-warning {{unknown warning group '-Winvalid-name', ignored}}
/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...]
/external/chromium/app/sql/
H A Ddiagnostic_error_delegate.h28 virtual int OnError(int error, Connection* connection, argument
30 NOTREACHED() << "sqlite error " << error
33 RecordErrorInHistogram(error);
34 return error;
38 static void RecordErrorInHistogram(int error) { argument
39 // Trim off the extended error codes.
40 error &= 0xff;
44 UMA_HISTOGRAM_ENUMERATION(UniqueT::name(), error, 50); local
/external/harfbuzz/src/
H A Dharfbuzz-dump-main.c36 croak (const char *situation, HB_Error error) argument
38 fprintf (stderr, "%s: Error %d\n", situation, error);
46 HB_Error error; local
58 if ((error = FT_Init_FreeType (&library)))
59 croak ("FT_Init_FreeType", error);
61 if ((error = FT_New_Face (library, argv[1], 0, &font)))
62 croak ("FT_New_Face", error);
67 if (!(error = HB_Load_GSUB_Table (font, &gsub, NULL)))
71 if ((error = HB_Done_GSUB_Table (gsub)))
72 croak ("HB_Done_GSUB_Table", error);
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DAbstractMethodErrorTest.java29 Error error = new AbstractMethodError();
30 assertNull(error.getCause());
31 assertNull(error.getMessage());
39 Error error = new AbstractMethodError(null);
40 assertNull(error.getMessage());
41 assertNull(error.getCause());
43 error = new AbstractMethodError("msg");
44 assertEquals("msg", error.getMessage());
45 assertNull(error.getCause());
/external/compiler-rt/lib/asan/tests/
H A Dasan_test_config.h14 # error "This file should be included into asan_test_utils.h only"
35 # error "please define ASAN_UAR"
39 # error "please define ASAN_HAS_EXCEPTIONS"
43 # error "please define ASAN_HAS_BLACKLIST"
47 # error "please define ASAN_NEEDS_SEGV"
/external/chromium/net/base/
H A Dnet_errors.cc14 const char* ErrorToString(int error) { argument
15 if (error == 0)
18 switch (error) {
H A Dnet_errors.h13 // Error domain of the net module's error codes.
18 // No error.
25 // The value of the first certificate error code.
29 // Returns a textual representation of the error code for logging purposes.
30 const char* ErrorToString(int error);
32 // Returns true if |error| is a certificate error code.
33 inline bool IsCertificateError(int error) { argument
36 return error <= ERR_CERT_BEGIN && error > ERR_CERT_EN
[all...]
/external/clang/test/PCH/
H A Dfuzzy-pch.c16 # error FOO was not defined
20 # error FOO has the wrong definition
24 # error BAR was not defined
H A Dpth.c4 #error This is the only diagnostic
7 // CHECK: 1 error generated
/external/freetype/include/freetype/
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/chromium/base/threading/
H A Dthread_local_posix.cc17 int error = pthread_key_create(&slot, NULL); local
18 CHECK_EQ(error, 0);
23 int error = pthread_key_delete(slot); local
24 DCHECK(error == 0);
34 int error = pthread_setspecific(slot, value); local
35 CHECK_EQ(error, 0);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSFileManagerExtras.h40 - (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error;
41 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error;
42 - (BOOL)removeItemAtPath:(NSString *)path error:(NSError **)error;
43 - (NSDictionary *)attributesOfFileSystemForPath:(NSString *)path error:(NSError **)error;
44 - (NSString *)destinationOfSymbolicLinkAtPath:(NSString *)path error:(NSError **)error;
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMErrorHandlerImpl.java44 * adds copy of error to list for later retrieval.
47 public boolean handleError(DOMError error) { argument
50 if (error.getSeverity() == DOMError.SEVERITY_WARNING) {
53 } else if (error.getSeverity() == DOMError.SEVERITY_ERROR) {
55 } else if (error.getSeverity() == DOMError.SEVERITY_FATAL_ERROR) {
59 System.err.println(severity + ": " + error.getMessage() + "\t");
60 System.err.println("Type : " + error.getType() + "\t" + "Related Data: "
61 + error.getRelatedData() + "\t" + "Related Exception: "
62 + error.getRelatedException() );
/external/clang/test/CodeGenCXX/
H A Dconstructor-convert.cpp9 static void error(const Twine &Message) {} function
14 error("cl::location(x) specified more than once!");
/external/libvpx/libvpx/vp8/encoder/arm/
H A Dboolhuff_arm.c38 struct vpx_internal_error_info *error)
40 return validate_buffer(start, len, end, error);
35 vp8_validate_buffer_arm(const unsigned char *start, size_t len, const unsigned char *end, struct vpx_internal_error_info *error) argument
/external/valgrind/main/coregrind/
H A Dm_libcsetjmp.c293 # error "Huh?"
330 # error "Huh?"
389 # error "Huh?"
420 # error "Huh?"
/external/chromium/third_party/libjingle/overrides/talk/base/
H A Dwin32socketinit.cc13 #error "Only compile this on Windows"
/external/clang/lib/Headers/
H A Dnmmintrin.h28 #error "SSE4.2 instruction set not enabled"

Completed in 3096 milliseconds

1234567891011>>