HomeSort by relevance Sort by last modified time
    Searched refs:ec (Results 76 - 100 of 811) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/chromium/src/
WebIDBIndexImpl.cpp 71 void WebIDBIndexImpl::openObjectCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
73 m_backend->openCursor(keyRange, direction, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
76 void WebIDBIndexImpl::openKeyCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
78 m_backend->openKeyCursor(keyRange, direction, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
81 void WebIDBIndexImpl::getObject(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
83 m_backend->get(keyRange, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
86 void WebIDBIndexImpl::getKey(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
88 m_backend->getKey(keyRange, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
WebIDBDatabaseImpl.cpp 69 WebIDBObjectStore* WebIDBDatabaseImpl::createObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBTransaction& transaction, WebExceptionCode& ec)
71 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_databaseBackend->createObjectStore(name, keyPath, autoIncrement, transaction.getIDBTransactionBackendInterface(), ec);
73 ASSERT(ec);
79 void WebIDBDatabaseImpl::deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec)
81 m_databaseBackend->deleteObjectStore(name, transaction.getIDBTransactionBackendInterface(), ec);
84 void WebIDBDatabaseImpl::setVersion(const WebString& version, WebIDBCallbacks* callbacks, WebExceptionCode& ec)
86 m_databaseBackend->setVersion(version, IDBCallbacksProxy::create(callbacks), m_databaseCallbacks, ec);
89 WebIDBTransaction* WebIDBDatabaseImpl::transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec)
92 RefPtr<IDBTransactionBackendInterface> transaction = m_databaseBackend->transaction(nameList.get(), mode, ec);
94 ASSERT(ec);
    [all...]
IDBDatabaseBackendProxy.cpp 78 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendProxy::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
83 WebIDBObjectStore* objectStore = m_webIDBDatabase->createObjectStore(name, keyPath, autoIncrement, *transactionProxy->getWebIDBTransaction(), ec);
89 void IDBDatabaseBackendProxy::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
94 m_webIDBDatabase->deleteObjectStore(name, *transactionProxy->getWebIDBTransaction(), ec);
97 void IDBDatabaseBackendProxy::setVersion(const String& version, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<IDBDatabaseCallbacks> databaseCallbacks, ExceptionCode& ec)
99 m_webIDBDatabase->setVersion(version, new WebIDBCallbacksImpl(callbacks), ec);
102 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseBackendProxy::transaction(DOMStringList* storeNames, unsigned short mode, ExceptionCode& ec)
105 WebIDBTransaction* transaction = m_webIDBDatabase->transaction(names, mode, ec);
107 ASSERT(ec);
  /external/icu4c/common/
uset_props.cpp 32 UErrorCode* ec)
35 UnicodeSet* set = new UnicodeSet(pat, *ec);
38 *ec = U_MEMORY_ALLOCATION_ERROR;
42 if (U_FAILURE(*ec)) {
52 UErrorCode* ec)
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec);
58 *ec = U_MEMORY_ALLOCATION_ERROR;
62 if (U_FAILURE(*ec)) {
101 UProperty prop, int32_t value, UErrorCode* ec) {
102 ((UnicodeSet*) set)->applyIntPropertyValue(prop, value, *ec);
    [all...]
ucat.c 38 u_catopen(const char* name, const char* locale, UErrorCode* ec) {
39 return (u_nl_catd) ures_open(name, locale, ec);
50 int32_t* len, UErrorCode* ec) {
55 if (ec == NULL || U_FAILURE(*ec)) {
61 len, ec);
62 if (U_FAILURE(*ec)) {
  /external/webkit/Source/WebCore/storage/
IDBIndex.cpp 58 PassRefPtr<IDBRequest> IDBIndex::openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, ExceptionCode& ec)
62 ec = IDBDatabaseException::CONSTRAINT_ERR;
68 m_backend->openCursor(keyRange, direction, request, m_transaction->backend(), ec);
69 if (ec) {
76 PassRefPtr<IDBRequest> IDBIndex::openKeyCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, ExceptionCode& ec)
80 ec = IDBDatabaseException::CONSTRAINT_ERR;
86 m_backend->openKeyCursor(keyRange, direction, request, m_transaction->backend(), ec);
87 if (ec) {
94 PassRefPtr<IDBRequest> IDBIndex::get(ScriptExecutionContext* context, PassRefPtr<IDBKey> key, ExceptionCode& ec)
97 m_backend->get(key, request, m_transaction->backend(), ec);
    [all...]
DatabaseSync.cpp 50 unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec)
61 if (!database->performOpenAndVerify(!creationCallback, ec)) {
94 void DatabaseSync::changeVersion(const String& oldVersion, const String& newVersion, PassRefPtr<SQLTransactionSyncCallback> changeVersionCallback, ExceptionCode& ec)
99 ec = SQLException::DATABASE_ERR;
104 if ((ec = transaction->begin()))
109 ec = SQLException::UNKNOWN_ERR;
114 ec = SQLException::VERSION_ERR;
118 if ((ec = transaction->execute()))
122 ec = SQLException::UNKNOWN_ERR;
126 if ((ec = transaction->commit())
    [all...]
IDBCursor.cpp 88 PassRefPtr<IDBRequest> IDBCursor::update(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, ExceptionCode& ec)
91 m_backend->update(value, request, ec);
92 if (ec) {
99 void IDBCursor::continueFunction(PassRefPtr<IDBKey> key, ExceptionCode& ec)
104 m_backend->continueFunction(key, m_request, ec);
106 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
109 PassRefPtr<IDBRequest> IDBCursor::deleteFunction(ScriptExecutionContext* context, ExceptionCode& ec)
112 m_backend->deleteFunction(request, ec);
113 if (ec) {
  /external/webkit/Source/WebCore/wml/
WMLFieldSetElement.cpp 63 ExceptionCode ec = 0; local
64 appendChild(m_insertedLegendElement, ec);
65 ASSERT(ec == 0);
68 m_insertedLegendElement->appendChild(document()->createTextNode(title), ec); local
69 ASSERT(ec == 0);
  /external/webkit/Source/WebKit/chromium/public/
WebIDBDatabase.h 66 virtual void deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); }
69 virtual WebIDBTransaction* transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec)
71 return transaction(names, mode, 0, ec);
74 virtual WebIDBTransaction* transaction(const WebDOMStringList& names, unsigned short mode, unsigned long, WebExceptionCode& ec)
76 return transaction(names, mode, ec);
  /external/webkit/Source/WebCore/bindings/js/
JSXMLHttpRequestCustom.cpp 87 ExceptionCode ec = 0; local
96 impl()->open(method, url, async, user, password, ec);
98 impl()->open(method, url, async, user, ec);
100 impl()->open(method, url, async, ec);
102 impl()->open(method, url, ec);
104 setDOMException(exec, ec);
112 ExceptionCode ec = 0; local
114 impl()->send(ec);
118 impl()->send(ec);
120 impl()->send(toDocument(val), ec); local
122 impl()->send(toBlob(val), ec); local
124 impl()->send(toDOMFormData(val), ec); local
126 impl()->send(toArrayBuffer(val), ec); local
128 impl()->send(ustringToString(val.toString(exec)), ec); local
145 ExceptionCode ec = 0; local
163 ExceptionCode ec = 0; local
175 ExceptionCode ec = 0; local
189 ExceptionCode ec = 0; local
    [all...]
JSHTMLOptionsCollectionCustom.cpp 47 ExceptionCode ec = 0; local
52 ec = INDEX_SIZE_ERR;
58 if (!ec)
59 imp->setLength(newLength, ec);
60 setDOMException(exec, ec);
74 ExceptionCode ec = 0; local
76 imp->add(option, ec);
83 ec = TYPE_MISMATCH_ERR;
85 imp->add(option, index, ec);
87 setDOMException(exec, ec);
    [all...]
JSWebKitCSSMatrixCustom.cpp 42 ExceptionCode ec = 0; local
43 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(s, ec);
44 setDOMException(exec, ec);
  /external/icu4c/test/intltest/
dtifmtts.cpp 1003 UErrorCode ec = U_ZERO_ERROR; local
1125 UErrorCode ec = U_ZERO_ERROR; local
1280 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathResult.cpp 72 void XPathResult::convertTo(unsigned short type, ExceptionCode& ec)
94 ec = XPathException::TYPE_ERR;
101 ec = XPathException::TYPE_ERR;
109 ec = XPathException::TYPE_ERR;
123 double XPathResult::numberValue(ExceptionCode& ec) const
126 ec = XPathException::TYPE_ERR;
132 String XPathResult::stringValue(ExceptionCode& ec) const
135 ec = XPathException::TYPE_ERR;
141 bool XPathResult::booleanValue(ExceptionCode& ec) const
144 ec = XPathException::TYPE_ERR
    [all...]
  /external/webkit/Source/WebCore/page/
DOMSelection.cpp 201 void DOMSelection::collapse(Node* node, int offset, ExceptionCode& ec)
207 ec = INDEX_SIZE_ERR;
218 void DOMSelection::collapseToEnd(ExceptionCode& ec)
226 ec = INVALID_STATE_ERR;
233 void DOMSelection::collapseToStart(ExceptionCode& ec)
241 ec = INVALID_STATE_ERR;
255 void DOMSelection::setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionCode& ec)
261 ec = INDEX_SIZE_ERR;
275 void DOMSelection::setPosition(Node* node, int offset, ExceptionCode& ec)
280 ec = INDEX_SIZE_ERR
410 ExceptionCode ec = 0; local
    [all...]
  /external/webkit/Source/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 54 ExceptionCode ec = 0; local
56 parentNode->insertBefore(newNode, nodeToReplace, ec);
57 ASSERT(!ec);
62 newNode->appendChild(child, ec);
63 ASSERT(!ec);
68 parentNode->removeChild(nodeToReplace, ec);
69 ASSERT(!ec);
SplitElementCommand.cpp 54 ExceptionCode ec = 0; local
59 parent->insertBefore(m_element1.get(), m_element2.get(), ec);
60 if (ec)
64 m_element2->removeAttribute(HTMLNames::idAttr, ec);
65 ASSERT(!ec);
69 m_element1->appendChild(children[i], ec);
90 ExceptionCode ec = 0; local
94 m_element2->insertBefore(children[i].get(), refChild.get(), ec);
100 m_element1->remove(ec);
  /external/webkit/Source/WebCore/notifications/
NotificationCenter.h 51 PassRefPtr<Notification> createHTMLNotification(const String& URI, ExceptionCode& ec)
54 ec = INVALID_STATE_ERR;
58 ec = SYNTAX_ERR;
61 return Notification::create(scriptExecutionContext()->completeURL(URI), scriptExecutionContext(), ec, this);
64 PassRefPtr<Notification> createNotification(const String& iconURI, const String& title, const String& body, ExceptionCode& ec)
67 ec = INVALID_STATE_ERR;
71 return Notification::create(contents, scriptExecutionContext(), ec, this);
  /ndk/sources/cxx-stl/llvm-libc++/src/
condition_variable.cpp 40 int ec = pthread_cond_wait(&__cv_, lk.mutex()->native_handle()); local
41 if (ec)
42 __throw_system_error(ec, "condition_variable wait failed");
70 int ec = pthread_cond_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); local
71 if (ec != 0 && ec != ETIMEDOUT)
72 __throw_system_error(ec, "condition_variable timed_wait failed");
  /external/webkit/Source/WebCore/html/shadow/
MediaControlRootElement.cpp 81 ExceptionCode ec; local
85 panel->appendChild(rewindButton.release(), ec, true);
86 if (ec)
91 panel->appendChild(playButton.release(), ec, true);
92 if (ec)
97 panel->appendChild(returnToRealtimeButton.release(), ec, true);
98 if (ec)
104 panel->appendChild(statusDisplay.release(), ec, true);
105 if (ec)
113 timelineContainer->appendChild(currentTimeDisplay.release(), ec, true)
249 ExceptionCode ec; local
251 m_panel->style()->setProperty(webkitTransitionString(), transitionValue, ec); local
252 m_panel->style()->setProperty(opacityString(), opacityValue, ec); local
266 ExceptionCode ec; local
268 m_panel->style()->setProperty(webkitTransitionString(), transitionValue, ec); local
269 m_panel->style()->setProperty(opacityString(), opacityValue, ec); local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Collection.cpp 47 ExceptionCode ec = 0; local
56 base->setOption(index, element, ec);
58 V8Proxy::setDOMException(ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DedicatedWorkerContextCustom.cpp 58 ExceptionCode ec = 0; local
59 workerContext->postMessage(message.release(), &portArray, ec);
60 return throwError(ec);
V8SVGLengthCustom.cpp 47 ExceptionCode ec = 0; local
48 float value = imp.value(wrapper->contextElement(), ec);
49 if (UNLIKELY(ec)) {
50 V8Proxy::setDOMException(ec);
71 ExceptionCode ec = 0; local
72 imp.setValue(static_cast<float>(value->NumberValue()), wrapper->contextElement(), ec); local
73 if (UNLIKELY(ec))
74 V8Proxy::setDOMException(ec);
92 ExceptionCode ec = 0; local
94 imp.convertToSpecifiedUnits(unitType, wrapper->contextElement(), ec);
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasGradient.cpp 49 void CanvasGradient::addColorStop(float value, const String& color, ExceptionCode& ec)
52 ec = INDEX_SIZE_ERR;
59 ec = SYNTAX_ERR;

Completed in 455 milliseconds

1 2 34 5 6 7 8 91011>>