/external/webkit/Source/WebCore/dom/ |
NamedNodeMap.cpp | 71 PassRefPtr<Node> NamedNodeMap::removeNamedItem(const String& name, ExceptionCode& ec) 75 ec = NOT_FOUND_ERR; 79 return removeNamedItem(a->name(), ec); 82 PassRefPtr<Node> NamedNodeMap::removeNamedItemNS(const String& namespaceURI, const String& localName, ExceptionCode& ec) 84 return removeNamedItem(QualifiedName(nullAtom, localName, namespaceURI), ec); 96 PassRefPtr<Node> NamedNodeMap::setNamedItem(Node* arg, ExceptionCode& ec) 99 ec = NOT_FOUND_ERR; 105 ec = HIERARCHY_REQUEST_ERR; 118 ec = INUSE_ATTRIBUTE_ERR; 136 PassRefPtr<Node> NamedNodeMap::setNamedItemNS(Node* node, ExceptionCode& ec) [all...] |
/external/webkit/Source/WebCore/storage/ |
IDBDatabaseBackendImpl.cpp | 100 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendImpl::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) 105 ec = IDBDatabaseException::CONSTRAINT_ERR; 116 ec = IDBDatabaseException::NOT_ALLOWED_ERR; 142 void IDBDatabaseBackendImpl::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) 146 ec = IDBDatabaseException::NOT_FOUND_ERR; 153 ec = IDBDatabaseException::NOT_ALLOWED_ERR; 165 void IDBDatabaseBackendImpl::setVersion(const String& version, PassRefPtr<IDBCallbacks> prpCallbacks, PassRefPtr<IDBDatabaseCallbacks> prpDatabaseCallbacks, ExceptionCode& ec) 189 ec = IDBDatabaseException::NOT_ALLOWED_ERR; 206 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseBackendImpl::transaction(DOMStringList* objectStoreNames, unsigned short mode, ExceptionCode& ec) 210 ec = IDBDatabaseException::NOT_FOUND_ERR 233 ExceptionCode ec = 0; local [all...] |
SQLTransactionSync.cpp | 74 PassRefPtr<SQLResultSet> SQLTransactionSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionCode& ec) 78 ec = SQLException::UNKNOWN_ERR; 83 ec = SQLException::VERSION_ERR; 103 resultSet = statement.execute(m_database.get(), ec); 108 if (ec == SQLException::QUOTA_ERR) { 110 ec = 0;
|
/external/icu4c/test/intltest/ |
numfmtst.cpp | 783 UErrorCode ec = U_ZERO_ERROR; local 785 NumberFormat::createCurrencyInstance(Locale::getUS(), ec); 787 if (U_FAILURE(ec)) { 788 dataerrln("FAIL: getCurrencyInstance(US) - %s", u_errorName(ec)); 810 fmt = NumberFormat::createCurrencyInstance(Locale::getFrance(), ec); 812 if (U_FAILURE(ec)) { 1197 UErrorCode ec = U_ZERO_ERROR; local 1198 DecimalFormatSymbols US(Locale::getUS(), ec); local 1693 UErrorCode ec = U_ZERO_ERROR; local 1800 UErrorCode ec = U_ZERO_ERROR; local 1887 UErrorCode ec = U_ZERO_ERROR; local 1908 UErrorCode ec = U_ZERO_ERROR; local 1983 UErrorCode ec = U_ZERO_ERROR; local 2035 DecimalFormatSymbols sym2(Locale::getUS(), ec); local 2053 UErrorCode ec = U_ZERO_ERROR; local 2060 DecimalFormatSymbols sym(Locale::getUS(), ec); local 2087 UErrorCode ec = U_ZERO_ERROR; local 2149 UErrorCode ec = U_ZERO_ERROR; local 2534 UErrorCode ec = U_ZERO_ERROR; local 3033 UErrorCode ec; local [all...] |
/external/icu4c/i18n/ |
olsontz.h | 121 * @param ec input-output error code 126 UErrorCode& ec); 168 int32_t millis, UErrorCode& ec) const; 176 UErrorCode& ec) const; 182 int32_t& dstOffset, UErrorCode& ec) const; 188 int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) /*const*/; 216 virtual UBool inDaylightTime(UDate date, UErrorCode& ec) const;
|
anytrans.h | 97 * @param ec error code, fails if the internal hashtable cannot be 104 UErrorCode& ec);
|
/external/webkit/Source/WebCore/html/ |
HTMLMarqueeElement.cpp | 138 void HTMLMarqueeElement::setScrollAmount(int scrollAmount, ExceptionCode& ec) 141 ec = INDEX_SIZE_ERR; 153 void HTMLMarqueeElement::setScrollDelay(int scrollDelay, ExceptionCode& ec) 156 ec = INDEX_SIZE_ERR; 168 void HTMLMarqueeElement::setLoop(int loop, ExceptionCode& ec) 171 ec = INDEX_SIZE_ERR;
|
MediaDocument.cpp | 72 ExceptionCode ec; local 74 document()->appendChild(rootElement, ec); 85 rootElement->appendChild(body, ec); 97 body->appendChild(mediaElement, ec); 218 ExceptionCode ec; local 219 videoElement->parentNode()->replaceChild(embedElement, videoElement, ec);
|
HTMLTitleElement.cpp | 90 ExceptionCode ec = 0; local 94 static_cast<Text*>(firstChild())->setData(value, ec); 104 appendChild(document()->createTextNode(valueCopy.impl()), ec);
|
ImageDocument.cpp | 194 ExceptionCode ec; local 197 appendChild(rootElement, ec); 208 rootElement->appendChild(body, ec); 216 body->appendChild(imageElement, ec); 258 ExceptionCode ec; local 259 m_imageElement->style()->setProperty("cursor", "-webkit-zoom-in", ec); 311 ExceptionCode ec; local 313 m_imageElement->style()->removeProperty("cursor", ec); 315 m_imageElement->style()->setProperty("cursor", "-webkit-zoom-out", ec); 345 ExceptionCode ec; local [all...] |
HTMLKeygenElement.cpp | 75 ExceptionCode ec = 0; local 78 select->appendChild(option, ec); 79 option->appendChild(Text::create(document, keys[i]), ec); local 82 ensureShadowRoot()->appendChild(select, ec);
|
HTMLSelectElement.cpp | 179 void HTMLSelectElement::add(HTMLElement* element, HTMLElement* before, ExceptionCode& ec) 186 insertBefore(element, before, ec); 196 ExceptionCode ec; 197 listItems()[listIndex]->remove(ec); 205 ExceptionCode ec; 206 option->remove(ec); 460 void HTMLSelectElement::setOption(unsigned index, HTMLOptionElement* option, ExceptionCode& ec) 462 ec = 0; 469 setLength(index, ec); 476 if (!ec) { 494 add(toHTMLElement(option.get()), 0, ec); local [all...] |
PluginDocument.cpp | 70 ExceptionCode ec; local 72 document()->appendChild(rootElement, ec); 85 rootElement->appendChild(body, ec); 103 body->appendChild(embedElement, ec);
|
/external/webkit/Source/WebCore/bindings/js/ |
JSSQLTransactionCustom.cpp | 112 ExceptionCode ec = 0; local 113 m_impl->executeSQL(sqlStatement, sqlValues, callback.release(), errorCallback.release(), ec); 114 setDOMException(exec, ec);
|
JSStorageCustom.cpp | 93 ExceptionCode ec = 0; 94 impl()->setItem(identifierToString(propertyName), stringValue, ec); local 95 setDOMException(exec, ec);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8MessagePortCustom.cpp | 58 ExceptionCode ec = 0; local 59 messagePort->postMessage(message.release(), &portArray, ec); 60 return throwError(ec);
|
V8SQLTransactionSyncCustom.cpp | 93 ExceptionCode ec = 0; local 94 v8::Handle<v8::Value> result = toV8(transaction->executeSQL(statement, sqlValues, ec)); 95 V8Proxy::setDOMException(ec);
|
/external/webkit/Source/WebCore/html/canvas/ |
ArrayBufferView.h | 74 void setImpl(ArrayBufferView* array, unsigned byteOffset, ExceptionCode& ec); 76 void setRangeImpl(const char* data, size_t dataByteLength, unsigned byteOffset, ExceptionCode& ec); 78 void zeroRangeImpl(unsigned byteOffset, size_t rangeByteLength, ExceptionCode& ec);
|
/external/webkit/Source/WebCore/inspector/ |
InspectorDOMStorageResource.cpp | 108 ExceptionCode ec = 0; local 109 bool isLocalStorage = (storage->frame()->domWindow()->localStorage(ec) == storage && !ec);
|
/external/icu4c/common/ |
ruleiter.cpp | 36 UChar32 RuleCharacterIterator::next(int32_t options, UBool& isEscaped, UErrorCode& ec) { 37 if (U_FAILURE(ec)) return DONE; 57 ec = U_UNDEFINED_VARIABLE; 78 ec = U_MALFORMED_UNICODE_ESCAPE;
|
/external/icu4c/config/ |
mh-bsd-gcc | 49 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 55 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
mh-haiku | 50 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 56 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
mh-qnx | 58 @$(SHELL) -ec '$(GEN_DEPS.c) $< \ 64 @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
|
/external/icu4c/i18n/unicode/ |
measure.h | 53 * @param ec input-output error code. If the amount or the unit 58 UErrorCode& ec);
|
/external/webkit/Source/WebCore/fileapi/ |
WebKitBlobBuilder.cpp | 62 void WebKitBlobBuilder::append(const String& text, const String& endingType, ExceptionCode& ec) 67 ec = SYNTAX_ERR; 83 void WebKitBlobBuilder::append(const String& text, ExceptionCode& ec) 85 append(text, String(), ec);
|