Searched refs:ec (Results 126 - 150 of 708) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/editing/
H A DSmartReplaceICU.cpp56 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/storage/
H A DStorageEventDispatcher.cpp62 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)
H A DIDBCursorBackendImpl.cpp78 void IDBCursorBackendImpl::update(PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBCallbacks> callbacks, ExceptionCode& ec) argument
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) argument
94 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
113 void IDBCursorBackendImpl::deleteFunction(PassRefPtr<IDBCallbacks> prpCallbacks, ExceptionCode& ec) argument
116 ec = IDBDatabaseException::NOT_ALLOWED_ERR;
120 m_objectStore->deleteFunction(m_cursor->primaryKey(), prpCallbacks, m_transaction.get(), ec);
H A DIDBDatabase.h63 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, ExceptionCode& ec) { return createObjectStore(name, OptionsObject(), ec); } argument
64 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, ExceptionCode& ec) { return transaction(context, 0, ec); } argument
65 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, PassRefPtr<DOMStringList> storeNames, ExceptionCode& ec) { return transaction(context, storeNames, IDBTransaction::READ_ONLY, ec); } argument
91 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); } argument
/external/webkit/Source/WebCore/svg/
H A DSVGDocument.cpp54 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);
H A DSVGStyleElement.cpp61 void SVGStyleElement::setType(const AtomicString& type, ExceptionCode& ec) argument
63 setAttribute(SVGNames::typeAttr, type, ec);
73 void SVGStyleElement::setMedia(const AtomicString& media, ExceptionCode& ec) argument
75 setAttribute(SVGNames::mediaAttr, media, ec);
83 void SVGStyleElement::setTitle(const AtomicString& title, ExceptionCode& ec) argument
85 setAttribute(SVGNames::titleAttr, title, ec);
/external/webkit/Source/WebCore/svg/properties/
H A DSVGPathSegListPropertyTearOff.cpp32 void SVGPathSegListPropertyTearOff::clear(ExceptionCode& ec) argument
44 SVGPathSegListPropertyTearOff::Base::clearValues(values, ec);
47 SVGPathSegListPropertyTearOff::PassListItemType SVGPathSegListPropertyTearOff::getItem(unsigned index, ExceptionCode& ec) argument
50 ListItemType returnedItem = Base::getItemValues(values, index, ec);
58 SVGPathSegListPropertyTearOff::PassListItemType SVGPathSegListPropertyTearOff::removeItem(unsigned index, ExceptionCode& ec) argument
61 SVGPathSegListPropertyTearOff::ListItemType removedItem = SVGPathSegListPropertyTearOff::Base::removeItemValues(values, index, ec);
/external/icu4c/i18n/unicode/
H A Dcurramt.h43 * @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/
H A Di2d_pu.c71 #include <openssl/ec.h>
88 return(i2o_ECPublicKey(a->pkey.ec, pp));
/external/webkit/Source/WebCore/html/
H A DClassList.cpp67 bool ClassList::contains(const AtomicString& token, ExceptionCode& ec) const
69 if (!validateToken(token, ec))
79 void ClassList::add(const AtomicString& token, ExceptionCode& ec) argument
81 if (!validateToken(token, ec))
97 void ClassList::remove(const AtomicString& token, ExceptionCode& ec) argument
99 if (!validateToken(token, ec))
114 bool ClassList::toggle(const AtomicString& token, ExceptionCode& ec) argument
116 if (!validateToken(token, ec))
H A DHTMLElement.cpp301 static void replaceChildrenWithFragment(HTMLElement* element, PassRefPtr<DocumentFragment> fragment, ExceptionCode& ec) argument
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) argument
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) argument
354 ec
360 setInnerHTML(const String& html, ExceptionCode& ec) argument
367 setOuterHTML(const String& html, ExceptionCode& ec) argument
383 textToFragment(const String& text, ExceptionCode& ec) argument
416 setInnerText(const String& text, ExceptionCode& ec) argument
464 mergeWithNextTextNode(PassRefPtr<Node> node, ExceptionCode& ec) argument
480 setOuterText(const String &text, ExceptionCode& ec) argument
525 insertAdjacent(const String& where, Node* newChild, ExceptionCode& ec) argument
555 insertAdjacentElement(const String& where, Element* newChild, ExceptionCode& ec) argument
569 contextElementForInsertion(const String& where, Element* element, ExceptionCode& ec) argument
586 insertAdjacentHTML(const String& where, const String& markup, ExceptionCode& ec) argument
604 insertAdjacentText(const String& where, const String& text, ExceptionCode& ec) argument
693 setContentEditable(const String& enabled, ExceptionCode& ec) argument
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp199 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...]
H A DV8HTMLOptionsCollectionCustom.cpp65 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/
H A DFileWriter.cpp81 void FileWriter::write(Blob* data, ExceptionCode& ec) argument
85 setError(FileError::INVALID_STATE_ERR, ec);
89 setError(FileError::TYPE_MISMATCH_ERR, ec);
101 void FileWriter::seek(long long position, ExceptionCode& ec) argument
105 setError(FileError::INVALID_STATE_ERR, ec);
114 void FileWriter::truncate(long long position, ExceptionCode& ec) argument
118 setError(FileError::INVALID_STATE_ERR, ec);
128 void FileWriter::abort(ExceptionCode& ec) argument
132 setError(FileError::INVALID_STATE_ERR, ec);
192 void FileWriter::setError(FileError::ErrorCode errorCode, ExceptionCode& ec) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DCharacterData.cpp48 String CharacterData::substringData(unsigned offset, unsigned count, ExceptionCode& ec) argument
50 checkCharDataOperation(offset, ec);
51 if (ec)
99 void CharacterData::insertData(unsigned offset, const String& data, ExceptionCode& ec) argument
101 checkCharDataOperation(offset, ec);
102 if (ec)
113 void CharacterData::deleteData(unsigned offset, unsigned count, ExceptionCode& ec) argument
115 checkCharDataOperation(offset, ec);
116 if (ec)
133 void CharacterData::replaceData(unsigned offset, unsigned count, const String& data, ExceptionCode& ec) argument
166 setNodeValue(const String& nodeValue, ExceptionCode& ec) argument
202 checkCharDataOperation(unsigned offset, ExceptionCode& ec) argument
[all...]
H A DXMLDocumentParser.cpp200 ExceptionCode ec = 0;
201 static_cast<Text*>(m_currentNode)->appendData(toString(m_bufferedText.data(), m_bufferedText.size()), ec); local
267 ExceptionCode ec = 0; local
269 reportElement->appendChild(h3.get(), ec);
270 h3->appendChild(doc->createTextNode("This page contains the following errors:"), ec);
273 reportElement->appendChild(fixed.get(), ec);
275 fixed->appendChild(doc->createTextNode(errorMessages), ec);
278 reportElement->appendChild(h3.get(), ec);
279 h3->appendChild(doc->createTextNode("Below is a rendering of the page up to the first error."), ec);
295 ExceptionCode ec
[all...]
/external/icu4c/i18n/
H A Dolsontz.cpp115 * @param ec input-output error code
120 UErrorCode& ec) :
125 if ((top == NULL || res == NULL) && U_SUCCESS(ec)) {
126 ec = U_ILLEGAL_ARGUMENT_ERROR;
128 if (U_SUCCESS(ec)) {
138 ures_getByKey(res, kTRANSPRE32, &r, &ec);
139 transitionTimesPre32 = ures_getIntVector(&r, &len, &ec);
141 if (ec == U_MISSING_RESOURCE_ERROR) {
145 ec = U_ZERO_ERROR;
146 } else if (U_SUCCESS(ec)
117 OlsonTimeZone(const UResourceBundle* top, const UResourceBundle* res, const UnicodeString& tzid, UErrorCode& ec) argument
401 getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) argument
428 UErrorCode ec = U_ZERO_ERROR; local
[all...]
H A Dcurrfmt.cpp22 CurrencyFormat::CurrencyFormat(const Locale& locale, UErrorCode& ec) : argument
25 fmt = NumberFormat::createCurrencyInstance(locale, ec);
56 UErrorCode& ec) const
58 return fmt->format(obj, appendTo, pos, ec);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DECPublicKeyParameters.java3 import org.bouncycastle.math.ec.ECPoint;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECPublicKeySpec.java3 import org.bouncycastle.math.ec.ECPoint;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECConstants.java1 package org.bouncycastle.math.ec;
H A DWNafPreCompInfo.java1 package org.bouncycastle.math.ec;
12 * {@link org.bouncycastle.math.ec.multiplier.WNafMultiplier.multiply()
20 * {@link org.bouncycastle.math.ec.multiplier.WNafMultiplier.multiply()
H A DZTauElement.java1 package org.bouncycastle.math.ec;
/external/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCNO, GCNO_Buff)) {
49 errs() << InputGCNO << ": " << ec.message() << "\n";
60 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCDA, GCDA_Buff)) {
61 errs() << InputGCDA << ": " << ec.message() << "\n";
/external/webkit/Source/WebCore/bindings/js/
H A DJSSharedWorkerCustom.cpp71 ExceptionCode ec = 0; local
72 RefPtr<SharedWorker> worker = SharedWorker::create(ustringToString(scriptURL), ustringToString(name), window->document(), ec);
73 if (ec) {
74 setDOMException(exec, ec);

Completed in 543 milliseconds

1234567891011>>