Searched refs:error (Results 126 - 150 of 8406) sorted by relevance

1234567891011>>

/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
37 error = ft_base_pic_init( library );
38 if ( error )
39 return error;
/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/chromium_org/net/base/
H A Dfile_stream_metrics_win.cc20 // The error range list is extracted from WinError.h.
118 // This function maps error ranges to specific buckets.
122 int GetFileErrorUmaBucket(int error) { argument
123 error = HRESULT_CODE(error);
128 if (error < kErrorRangeList[n].low)
130 if (error <= kErrorRangeList[n].high)
/external/chromium_org/chrome/common/json_schema/
H A Djson_schema_validator_unittest.cc56 std::string error; local
57 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("", &error));
58 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("\0", &error));
59 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("string", &error));
60 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("\"string\"", &error));
61 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("[]", &error));
62 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("{}", &error));
64 "{ \"type\": 123 }", &error));
66 "{ \"type\": \"invalid\" }", &error));
71 "}", &error));
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dtest_management_policy.cc35 string16* error) const {
36 if (error && !may_load_)
37 *error = error_message_;
42 const Extension* extension, string16* error) const {
43 if (error && !may_modify_status_)
44 *error = error_message_;
49 string16* error) const {
50 if (error && must_remain_enabled_)
51 *error = error_message_;
H A Dmanagement_policy_unittest.cc62 string16 error; local
65 EXPECT_TRUE(policy_.UserMayLoad(NULL, &error));
66 EXPECT_TRUE(error.empty());
70 EXPECT_TRUE(policy_.UserMayLoad(NULL, &error));
71 EXPECT_TRUE(error.empty());
75 EXPECT_TRUE(policy_.UserMayLoad(NULL, &error));
76 EXPECT_TRUE(error.empty());
80 EXPECT_FALSE(policy_.UserMayLoad(NULL, &error));
81 EXPECT_FALSE(error.empty());
85 error
91 string16 error; local
119 string16 error; local
150 string16 error = original_error16; local
[all...]
/external/chromium_org/chrome/browser/ui/global_error/
H A Dglobal_error_service_browsertest.cc17 // An error that has a bubble view.
66 // Test that showing a error with a bubble view works.
69 BubbleViewError* error = new BubbleViewError; local
73 service->AddGlobalError(error);
75 EXPECT_EQ(error, service->GetFirstGlobalErrorWithBubbleView());
76 EXPECT_FALSE(error->HasShownBubbleView());
77 EXPECT_EQ(0, error->bubble_view_close_count());
82 EXPECT_TRUE(error->HasShownBubbleView());
83 EXPECT_EQ(0, error->bubble_view_close_count());
90 BubbleViewError* error local
[all...]
/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/chromium_org/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/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_tpm_error.css6 #tpm-error-message {
10 #oobe.tpm-error-message #step-logo {
14 #tpm-error-message-controls {
/external/chromium_org/chrome/test/webdriver/commands/
H A Dkeys_command.cc35 Error* error = FlattenStringArray(key_list, &keys); local
36 if (error) {
37 response->SetError(error);
41 error = session_->SendKeys(keys);
42 if (error) {
43 response->SetError(error);
H A Dcookie_commands.cc39 Error* error = session_->GetURL(&url); local
41 if (!error)
42 error = session_->GetCookies(url, &cookies);
43 if (error) {
44 response->SetError(error);
74 Error* error = session_->GetURL(&url); local
75 if (!error)
76 error = session_->SetCookie(url, cookie_dict_copy.get());
77 if (error) {
78 response->SetError(error);
85 Error* error = session_->GetURL(&url); local
144 Error* error = session_->GetURL(&url); local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_handle.cc34 Error error = node_->GetSize(&offs_); local
35 if (error)
36 return error;
49 Error error = node_->GetSize(&node_size); local
50 if (error)
51 return error;
75 error = node_->FTruncate(new_offset);
76 if (error)
86 Error error = node_->Read(offs_, buf, nbytes, cnt); local
87 if (0 == error)
94 Error error = node_->Write(offs_, buf, nbytes, cnt); local
102 Error error = node_->GetDents(offs_, pdir, nbytes, cnt); local
[all...]
/external/clang/test/Modules/
H A Dmacros.c22 # error INTEGER macro should be visible
26 # error FLOAT macro should not be visible
30 # error MODULE macro should not be visible
37 #__public_macro WIBBLE // expected-error{{no macro named 'WIBBLE'}}
46 # error Not building a module!
50 # error Not building a module
56 # error LEFT should not be visible
60 # error RIGHT should not be visible
64 # error TOP should not be visible
71 # 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/chromium_org/net/android/
H A Dprivate_key_type_list.h6 #error "Please define DEFINE_PRIVATE_KEY_TYPE before including this file."
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DWorkerConsoleAgent.cpp46 void WorkerConsoleAgent::addInspectedNode(ErrorString* error, int) argument
48 *error = "addInspectedNode is not supported for workers";
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLStatementErrorCallback.idl30 [Custom] boolean handleEvent(SQLTransaction transaction, SQLError error);
/external/chromium_org/third_party/libjingle/overrides/allocator_shim/
H A Dallocator_proxy.cc8 #error "Only compile the allocator proxy with the shared_library implementation"
12 #error "The allocator proxy isn't supported (or needed) on mac or android."

Completed in 1237 milliseconds

1234567891011>>