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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/css/
StyleMedia.cpp 69 ExceptionCode ec = 0; local
70 media->setMediaText(query, ec);
71 if (ec)
CSSMediaRule.cpp 60 unsigned CSSMediaRule::insertRule(const String& rule, unsigned index, ExceptionCode& ec)
64 ec = INDEX_SIZE_ERR;
72 ec = SYNTAX_ERR;
84 ec = HIERARCHY_REQUEST_ERR;
97 void CSSMediaRule::deleteRule(unsigned index, ExceptionCode& ec)
102 ec = INDEX_SIZE_ERR;
  /external/webkit/Source/WebCore/html/
ValidationMessage.cpp 86 ExceptionCode ec = 0; local
89 m_bubbleMessage->appendChild(HTMLBRElement::create(doc), ec); local
90 m_bubbleMessage->appendChild(Text::create(doc, lines[i]), ec); local
93 bold->setInnerText(lines[i], ec);
94 m_bubbleMessage->appendChild(bold.release(), ec);
132 ExceptionCode ec = 0; local
133 host->ensureShadowRoot()->appendChild(m_bubble.get(), ec);
136 clipper->appendChild(ElementWithPseudoId::create(doc, "-webkit-validation-bubble-arrow"), ec); local
137 m_bubble->appendChild(clipper.release(), ec);
139 m_bubble->appendChild(m_bubbleMessage, ec);
160 ExceptionCode ec; local
    [all...]
ClassList.cpp 67 bool ClassList::contains(const AtomicString& token, ExceptionCode& ec) const
69 if (!validateToken(token, ec))
79 void ClassList::add(const AtomicString& token, ExceptionCode& ec)
81 if (!validateToken(token, ec))
97 void ClassList::remove(const AtomicString& token, ExceptionCode& ec)
99 if (!validateToken(token, ec))
114 bool ClassList::toggle(const AtomicString& token, ExceptionCode& ec)
116 if (!validateToken(token, ec))
HTMLElement.cpp 301 static void replaceChildrenWithFragment(HTMLElement* element, PassRefPtr<DocumentFragment> fragment, ExceptionCode& ec)
309 static_cast<Text*>(element->firstChild())->setData(static_cast<Text*>(fragment->firstChild())->data(), ec);
314 element->replaceChild(fragment, element->firstChild(), ec);
319 element->appendChild(fragment, ec);
322 static void replaceChildrenWithText(HTMLElement* element, const String& text, ExceptionCode& ec)
325 static_cast<Text*>(element->firstChild())->setData(text, ec);
332 element->replaceChild(textNode.release(), element->firstChild(), ec);
337 element->appendChild(textNode.release(), ec);
341 static PassRefPtr<DocumentFragment> createFragmentFromSource(const String& markup, Element* contextElement, ExceptionCode& ec)
354 ec = INVALID_STATE_ERR
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGLengthList.cpp 34 ExceptionCode ec = 0; local
49 length.setValueAsString(valueString, ec);
50 if (ec)
SVGDocument.cpp 54 ExceptionCode ec = 0; local
55 RefPtr<SVGZoomEvent> event = static_pointer_cast<SVGZoomEvent>(createEvent("SVGZoomEvents", ec));
59 rootElement()->dispatchEvent(event.release(), ec);
64 ExceptionCode ec = 0; local
65 RefPtr<Event> event = createEvent("SVGEvents", ec);
67 rootElement()->dispatchEvent(event.release(), ec);
SVGStyleElement.cpp 61 void SVGStyleElement::setType(const AtomicString& type, ExceptionCode& ec)
63 setAttribute(SVGNames::typeAttr, type, ec);
73 void SVGStyleElement::setMedia(const AtomicString& media, ExceptionCode& ec)
75 setAttribute(SVGNames::mediaAttr, media, ec);
83 void SVGStyleElement::setTitle(const AtomicString& title, ExceptionCode& ec)
85 setAttribute(SVGNames::titleAttr, title, ec);
  /ndk/sources/cxx-stl/llvm-libc++/src/
system_error.cpp 142 system_error::__init(const error_code& ec, string what_arg)
144 if (ec)
148 what_arg += ec.message();
153 system_error::system_error(error_code ec, const string& what_arg)
154 : runtime_error(__init(ec, what_arg)),
155 __ec_(ec)
159 system_error::system_error(error_code ec, const char* what_arg)
160 : runtime_error(__init(ec, what_arg)),
161 __ec_(ec)
165 system_error::system_error(error_code ec)
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMStringMapCustom.cpp 71 ExceptionCode ec = 0;
72 m_impl->deleteItem(identifierToString(propertyName), ec); local
73 setDOMException(exec, ec);
95 ExceptionCode ec = 0;
96 impl()->setItem(identifierToString(propertyName), stringValue, ec); local
97 setDOMException(exec, ec);
JSDirectoryEntrySyncCustom.cpp 76 ExceptionCode ec = 0;
77 JSC::JSValue result = toJS(exec, this->globalObject(), WTF::getPtr(imp->getFile(path, flags, ec)));
78 setDOMException(exec, ec);
93 ExceptionCode ec = 0;
94 JSC::JSValue result = toJS(exec, this->globalObject(), WTF::getPtr(imp->getDirectory(path, flags, ec)));
95 setDOMException(exec, ec);
  /external/webkit/Source/WebCore/editing/
SmartReplaceICU.cpp 56 UErrorCode ec = U_ZERO_ERROR; local
58 smartSet = uset_openPattern(whitespaceAndNewline.characters(), whitespaceAndNewline.length(), &ec);
59 ASSERT(U_SUCCESS(ec));
80 UErrorCode ec = U_ZERO_ERROR; local
82 USet* icuPunct = uset_openPattern(punctuationClass.characters(), punctuationClass.length(), &ec);
83 ASSERT(U_SUCCESS(ec));
  /external/webkit/Source/WebCore/html/canvas/
TypedArrayBase.h 40 void set(TypedArrayBase<T>* array, unsigned offset, ExceptionCode& ec)
42 setImpl(array, offset * sizeof(T), ec);
45 void setRange(const T* data, size_t dataLength, unsigned offset, ExceptionCode& ec)
47 setRangeImpl(reinterpret_cast<const char*>(data), dataLength * sizeof(T), offset * sizeof(T), ec); local
50 void zeroRange(unsigned offset, size_t length, ExceptionCode& ec)
52 zeroRangeImpl(offset * sizeof(T), length * sizeof(T), ec); local
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.cpp 62 ExceptionCode ec = 0; local
63 Storage* storage = frames[i]->domWindow()->sessionStorage(ec);
64 if (!ec)
79 ExceptionCode ec = 0; local
80 Storage* storage = frames[i]->domWindow()->localStorage(ec);
81 if (!ec)
IDBCursorBackendImpl.cpp 78 void IDBCursorBackendImpl::update(PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBCallbacks> callbacks, ExceptionCode& ec)
81 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
85 m_objectStore->put(value, m_cursor->primaryKey(), IDBObjectStoreBackendInterface::CursorUpdate, callbacks, m_transaction.get(), ec);
88 void IDBCursorBackendImpl::continueFunction(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, ExceptionCode& ec)
94 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
113 void IDBCursorBackendImpl::deleteFunction(PassRefPtr<IDBCallbacks> prpCallbacks, ExceptionCode& ec)
116 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
120 m_objectStore->deleteFunction(m_cursor->primaryKey(), prpCallbacks, m_transaction.get(), ec);
IDBDatabase.h 63 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, ExceptionCode& ec) { return createObjectStore(name, OptionsObject(), ec); }
64 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, ExceptionCode& ec) { return transaction(context, 0, ec); }
65 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, PassRefPtr<DOMStringList> storeNames, ExceptionCode& ec) { return transaction(context, storeNames, IDBTransaction::READ_ONLY, ec); }
91 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); }
  /external/webkit/Source/WebCore/svg/properties/
SVGPathSegListPropertyTearOff.cpp 32 void SVGPathSegListPropertyTearOff::clear(ExceptionCode& ec)
44 SVGPathSegListPropertyTearOff::Base::clearValues(values, ec);
47 SVGPathSegListPropertyTearOff::PassListItemType SVGPathSegListPropertyTearOff::getItem(unsigned index, ExceptionCode& ec)
50 ListItemType returnedItem = Base::getItemValues(values, index, ec);
58 SVGPathSegListPropertyTearOff::PassListItemType SVGPathSegListPropertyTearOff::removeItem(unsigned index, ExceptionCode& ec)
61 SVGPathSegListPropertyTearOff::ListItemType removedItem = SVGPathSegListPropertyTearOff::Base::removeItemValues(values, index, ec);
  /device/generic/goldfish/camera/
EmulatedCamera.cpp 691 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
692 if (ec == NULL) {
696 return ec->setPreviewWindow(window);
707 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
708 if (ec == NULL) {
712 ec->setCallbacks(notify_cb, data_cb, data_cb_timestamp, get_memory, user);
717 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
718 if (ec == NULL) {
722 ec->enableMsgType(msg_type);
727 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv) local
737 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
747 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
757 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
767 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
778 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
788 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
798 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
808 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
819 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
829 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
839 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
849 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
859 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
869 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
879 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
889 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
902 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
912 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
922 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); local
932 EmulatedCamera* ec = local
    [all...]
  /external/icu4c/i18n/
currfmt.h 43 CurrencyFormat(const Locale& locale, UErrorCode& ec);
74 UErrorCode& ec) const;
  /external/icu4c/i18n/unicode/
curramt.h 43 * @param ec input-output error code. If the amount or the isoCode
48 UErrorCode &ec);
56 * @param ec input-output error code. If the isoCode is invalid,
61 UErrorCode &ec);
  /external/openssl/crypto/asn1/
i2d_pu.c 71 #include <openssl/ec.h>
88 return(i2o_ECPublicKey(a->pkey.ec, pp));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 199 ExceptionCode ec = 0; local
206 info = context->getBufferParameter(target, pname, ec);
209 info = context->getRenderbufferParameter(target, pname, ec);
212 info = context->getTexParameter(target, pname, ec);
216 info = context->getVertexAttrib(target, pname, ec);
222 if (ec) {
223 V8Proxy::setDOMException(ec);
253 ExceptionCode ec = 0; local
261 bool succeed = context->getAttachedShaders(program, shaders, ec);
262 if (ec) {
302 ExceptionCode ec = 0; local
324 ExceptionCode ec = 0; local
344 ExceptionCode ec = 0; local
375 ExceptionCode ec = 0; local
420 ExceptionCode ec = 0; local
512 ExceptionCode ec = 0; local
542 ExceptionCode ec = 0; local
588 ExceptionCode ec = 0; local
614 ExceptionCode ec = 0; local
706 ExceptionCode ec = 0; local
731 ExceptionCode ec = 0; local
    [all...]
V8HTMLOptionsCollectionCustom.cpp 65 ExceptionCode ec = 0; local
67 imp->add(option, ec);
77 ec = TYPE_MISMATCH_ERR;
79 imp->add(option, index, ec);
82 if (ec != 0)
83 V8Proxy::setDOMException(ec);
102 ExceptionCode ec = 0; local
105 ec = INDEX_SIZE_ERR;
111 if (!ec)
112 imp->setLength(value->Uint32Value(), ec);
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileWriter.cpp 81 void FileWriter::write(Blob* data, ExceptionCode& ec)
85 setError(FileError::INVALID_STATE_ERR, ec);
89 setError(FileError::TYPE_MISMATCH_ERR, ec);
101 void FileWriter::seek(long long position, ExceptionCode& ec)
105 setError(FileError::INVALID_STATE_ERR, ec);
114 void FileWriter::truncate(long long position, ExceptionCode& ec)
118 setError(FileError::INVALID_STATE_ERR, ec);
128 void FileWriter::abort(ExceptionCode& ec)
132 setError(FileError::INVALID_STATE_ERR, ec);
192 void FileWriter::setError(FileError::ErrorCode errorCode, ExceptionCode& ec)
    [all...]
  /external/webkit/Source/WebCore/dom/
CharacterData.cpp 48 String CharacterData::substringData(unsigned offset, unsigned count, ExceptionCode& ec)
50 checkCharDataOperation(offset, ec);
51 if (ec)
99 void CharacterData::insertData(unsigned offset, const String& data, ExceptionCode& ec)
101 checkCharDataOperation(offset, ec);
102 if (ec)
113 void CharacterData::deleteData(unsigned offset, unsigned count, ExceptionCode& ec)
115 checkCharDataOperation(offset, ec);
116 if (ec)
133 void CharacterData::replaceData(unsigned offset, unsigned count, const String& data, ExceptionCode& ec)
    [all...]

Completed in 852 milliseconds

1 2 3 4 5 67 8 91011>>