Searched refs:error (Results 51 - 75 of 3763) sorted by relevance

1234567891011>>

/external/clang/lib/include/
H A Dnmmintrin.h28 #error "SSE4.2 instruction set not enabled"
/external/clang/test/Preprocessor/
H A Dexpr_usual_conversions.c12 #error
/external/compiler-rt/lib/interception/
H A Dinterception_mac.h18 # error "interception_mac.h should be included from interception.h only"
/external/freetype/src/base/
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/libusb_aah/msvc/
H A Dconfig.h5 #error "Please make sure the msvc/ directory is removed from your build path."
/external/llvm/include/llvm/Support/
H A DAIXDataTypesFix.h19 #error "AIXDataTypesFix.h must only be included via DataTypes.h!"
/external/stlport/stlport/stl/config/
H A D_mac.h5 #error Looks like unsupported platform
/external/v8/test/mjsunit/regress/
H A Dregress-1529.js31 Error.prepareStackTrace = function (error, stackTrace) {
/external/webkit/LayoutTests/storage/
H A Dopen-database-while-transaction-in-progress.js28 function(tx, error) {
29 log("Executing statement failed: " + error.message);
35 }, function(error) {
36 log("Transaction failed: " + error.message);
/external/webkit/Source/WebCore/manual-tests/inspector/resources/
H A Dscript-error.js2 this.will.be.an.error = 1;
/external/webkit/Source/WebKit2/Shared/API/c/cf/
H A DWKErrorCF.cpp37 RefPtr<WebError> error = WebError::create(ResourceError(cfError)); local
38 return toAPI(error.release().releaseRef());
41 CFErrorRef WKErrorCopyCFError(CFAllocatorRef alloc, WKErrorRef error) argument
43 RetainPtr<CFErrorRef> cfError = toImpl(error)->platformError().cfError();
/external/webkit/Source/WebKit2/Shared/API/c/gtk/
H A DWKBaseGtk.h32 #error "Please #include \"WKBase.h\" instead of this file directly."
/external/webkit/Source/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/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DZipErrorTest.java30 ZipError error = new ZipError("ZipError");
31 assertEquals("ZipError", error.getMessage());
38 ZipError error = new ZipError("serialization test");
39 SerializationTest.verifySelf(error);
46 ZipError error = new ZipError("serialization test");
47 SerializationTest.verifyGolden(this, error);
/external/chromium/base/threading/
H A Dthread_local_storage_posix.cc19 int error = pthread_key_create(&key_, destructor); local
20 if (error) {
31 int error = pthread_key_delete(key_); local
32 if (error)
44 int error = pthread_setspecific(key_, value); local
45 if (error)
/external/clang/test/Modules/
H A Dmacros.c23 # error INTEGER macro should be visible
27 # error FLOAT macro should not be visible
31 # error MODULE macro should not be visible
38 #__public_macro WIBBLE // expected-error{{no macro named 'WIBBLE'}}
47 # error Not building a module!
51 # error Not building a module
57 # error LEFT should not be visible
61 # error RIGHT should not be visible
65 # error TOP should not be visible
72 # error LEF
[all...]
/external/kernel-headers/original/asm-mips/
H A Dwar.h82 #error Check setting of R4600_V1_INDEX_ICACHEOP_WAR for your platform
112 #error Check setting of R4600_V1_HIT_CACHEOP_WAR for your platform
128 #error Check setting of R4600_V2_HIT_CACHEOP_WAR for your platform
141 #error Check setting of R5432_CP0_INTERRUPT_WAR for your platform
155 #error Check setting of BCM1250_M3_WAR for your platform
162 #error Check setting of SIBYTE_1956_WAR for your platform
178 #error Check setting of MIPS4K_ICACHE_REFILL_WAR for your platform
197 #error Check setting of MIPS_CACHE_SYNC_WAR for your platform
208 #error Check setting of TX49XX_ICACHE_INDEX_INV_WAR for your platform
216 #error Chec
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DANTLRErrorListener.java30 /** Defines behavior of object able to handle error messages from ANTLR including
33 * wrapping error data in Message objects and passing them to the listener.
35 * the info I need for error messages.
39 public void error(Message msg); method in interface:ANTLRErrorListener
41 public void error(ToolMessage msg); method in interface:ANTLRErrorListener
/external/clang/test/Lexer/
H A Dlong-long.cpp9 /* expected-error@21 {{'long long' is an extension when C99 mode is not enabled}} */
15 /* expected-error@21 {{'long long' is a C++11 extension}} */
22 # error should not happen
/external/eigen/Eigen/src/Core/util/
H A DNonMPL2.h1 // Force error if including non MPL2 license code regardless
5 #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode
/external/openssh/openbsd-compat/
H A Dstrtonum.c39 int error = 0; local
53 error = INVALID;
57 error = INVALID;
59 error = TOOSMALL;
61 error = TOOLARGE;
64 *errstrp = ev[error].errstr;
65 errno = ev[error].err;
66 if (error)
/external/webkit/Source/WebCore/fileapi/
H A DErrorCallback.idl36 boolean handleEvent(in FileError error);
/external/webkit/Source/WebCore/storage/
H A DSQLTransactionErrorCallback.idl34 boolean handleEvent(in SQLError error);

Completed in 1227 milliseconds

1234567891011>>