Searched refs:ec (Results 201 - 225 of 726) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/canvas/
H A DInt8Array.h43 void set(TypedArrayBase<signed char>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<signed char>::set(array, offset, ec); } argument
H A DUint16Array.h43 void set(TypedArrayBase<unsigned short>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned short>::set(array, offset, ec); } argument
H A DUint32Array.h43 void set(TypedArrayBase<unsigned int>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned int>::set(array, offset, ec); } argument
H A DUint8Array.h43 void set(TypedArrayBase<unsigned char>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned char>::set(array, offset, ec); } argument
/external/webkit/Source/WebCore/page/
H A DNavigator.cpp224 static bool verifyCustomHandlerURL(const String& baseURL, const String& url, ExceptionCode& ec) argument
231 ec = SYNTAX_ERR;
244 ec = SYNTAX_ERR;
251 static bool verifyProtocolHandlerScheme(const String& scheme, ExceptionCode& ec) argument
255 ec = SECURITY_ERR;
261 void Navigator::registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode& ec) argument
263 if (!verifyProtocolHandlerScheme(scheme, ec))
275 if (!verifyCustomHandlerURL(baseURL, url, ec))
/external/webkit/Source/WebKit/chromium/src/
H A DIDBTransactionBackendProxy.cpp57 PassRefPtr<IDBObjectStoreBackendInterface> IDBTransactionBackendProxy::objectStore(const String& name, ExceptionCode& ec) argument
59 WebIDBObjectStore* objectStore = m_webIDBTransaction->objectStore(name, ec);
H A DStorageAreaProxy.cpp75 String StorageAreaProxy::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* frame) argument
81 ec = (result == WebKit::WebStorageArea::ResultOK) ? 0 : QUOTA_EXCEEDED_ERR;
129 ExceptionCode ec = 0; local
130 Storage* storage = frames[i]->domWindow()->sessionStorage(ec);
131 if (!ec)
146 ExceptionCode ec = 0; local
147 Storage* storage = frames[i]->domWindow()->localStorage(ec);
148 if (!ec)
H A DWebIDBTransactionImpl.cpp54 WebIDBObjectStore* WebIDBTransactionImpl::objectStore(const WebString& name, ExceptionCode& ec) argument
56 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->objectStore(name, ec);
H A DStorageEventDispatcherImpl.cpp75 ExceptionCode ec = 0; local
76 Storage* storage = frames[i]->domWindow()->localStorage(ec);
77 if (!ec)
/external/openssl/crypto/ec/
H A Dec_ameth.c61 #include <openssl/ec.h>
105 EC_KEY *ec_key = pkey->pkey.ec;
229 const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec);
230 const EC_POINT *pa = EC_KEY_get0_public_key(a->pkey.ec),
231 *pb = EC_KEY_get0_public_key(b->pkey.ec);
320 ec_key = pkey->pkey.ec;
368 return ECDSA_size(pkey->pkey.ec);
382 group = EC_KEY_get0_group(pkey->pkey.ec);
396 if (EC_KEY_get0_group(pkey->pkey.ec) == NULL)
403 EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec));
562 EC_KEY *ec; local
[all...]
/external/llvm/include/llvm/Support/
H A DIRReader.h63 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), File)) {
65 "Could not open input file: " + ec.message());
101 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), File)) {
103 "Could not open input file: " + ec.message());
/external/webkit/Source/WebCore/bindings/js/
H A DJSOptionConstructor.cpp63 ExceptionCode ec = 0; local
64 RefPtr<HTMLOptionElement> element = HTMLOptionElement::createForJSConstructor(document, data, value, defaultSelected, selected, ec);
65 if (ec) {
66 setDOMException(exec, ec);
H A DJSCanvasRenderingContext2DCustom.cpp206 ExceptionCode ec = 0; local
211 context->drawImage(imgElt, exec->argument(1).toFloat(exec), exec->argument(2).toFloat(exec), ec);
215 exec->argument(3).toFloat(exec), exec->argument(4).toFloat(exec), ec);
216 setDOMException(exec, ec);
222 exec->argument(7).toFloat(exec), exec->argument(8).toFloat(exec)), ec);
223 setDOMException(exec, ec);
232 context->drawImage(canvas, exec->argument(1).toFloat(exec), exec->argument(2).toFloat(exec), ec);
233 setDOMException(exec, ec);
237 exec->argument(3).toFloat(exec), exec->argument(4).toFloat(exec), ec);
238 setDOMException(exec, ec);
357 ExceptionCode ec; local
365 ExceptionCode ec; local
384 ExceptionCode ec = 0; local
401 ExceptionCode ec = 0; local
404 exec->argument(3).toFloat(exec), exec->argument(4).toFloat(exec), exec->argument(5).toFloat(exec), exec->argument(6).toFloat(exec), ec); local
406 context->putImageData(toImageData(exec->argument(0)), exec->argument(1).toFloat(exec), exec->argument(2).toFloat(exec), ec); local
[all...]
H A DJSNodeCustom.cpp192 ExceptionCode ec = 0; local
193 bool ok = imp->insertBefore(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, true);
194 setDOMException(exec, ec);
203 ExceptionCode ec = 0; local
204 bool ok = imp->replaceChild(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, true);
205 setDOMException(exec, ec);
214 ExceptionCode ec = 0; local
215 bool ok = imp->removeChild(toNode(exec->argument(0)), ec);
216 setDOMException(exec, ec);
225 ExceptionCode ec local
[all...]
H A DJSSQLTransactionSyncCustom.cpp89 ExceptionCode ec = 0; local
90 JSValue result = toJS(exec, globalObject(), WTF::getPtr(m_impl->executeSQL(sqlStatement, sqlValues, ec)));
91 setDOMException(exec, ec);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLOptionElementConstructor.cpp77 ExceptionCode ec = 0; local
78 RefPtr<HTMLOptionElement> option = HTMLOptionElement::createForJSConstructor(document, data, value, defaultSelected, selected, ec);
80 if (ec)
81 throwError(ec);
/external/webkit/Source/WebCore/editing/
H A DDeleteButtonController.cpp156 ExceptionCode ec = 0;
157 Node* container = range->commonAncestorContainer(ec);
159 ASSERT(ec == 0);
221 ExceptionCode ec = 0; local
222 container->appendChild(outline.get(), ec);
223 ASSERT(ec == 0);
224 if (ec)
249 container->appendChild(button.get(), ec);
250 ASSERT(ec == 0);
251 if (ec)
282 ExceptionCode ec = 0; local
306 ExceptionCode ec = 0; local
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DAudioBuffer.cpp79 ExceptionCode ec; local
80 channelDataArray->setRange(bus->channel(i)->data(), m_length, 0, ec);
102 ExceptionCode ec; local
103 getChannelData(i)->zeroRange(0, length(), ec);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DECDomainParameters.java5 import org.bouncycastle.math.ec.ECConstants;
6 import org.bouncycastle.math.ec.ECCurve;
7 import org.bouncycastle.math.ec.ECPoint;
/external/icu4c/common/unicode/
H A Duenum.h165 * @param ec the error code.
170 uenum_openFromStringEnumeration(icu::StringEnumeration* adopted, UErrorCode* ec);
181 * @param ec error code
188 UErrorCode* ec);
199 * @param ec error code
206 UErrorCode* ec);
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp33 // Returns false if size is greater than the buffer size. And sets ec.
34 bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) { argument
36 ec = object_error::unexpected_eof;
44 error_code &ec,
50 ec = object_error::unexpected_eof;
111 if (error_code ec = getSection(symb->SectionNumber, Section))
112 return ec;
114 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
115 return ec;
129 if (error_code ec
43 checkAddr(const MemoryBuffer *m, error_code &ec, uintptr_t addr, uint64_t size) argument
433 COFFObjectFile(MemoryBuffer *Object, error_code &ec) argument
835 error_code ec; local
[all...]
/external/webkit/Source/WebCore/html/
H A DDOMTokenList.cpp33 bool DOMTokenList::validateToken(const AtomicString& token, ExceptionCode& ec) argument
36 ec = SYNTAX_ERR;
43 ec = INVALID_CHARACTER_ERR;
H A DHTMLTitleElement.cpp90 ExceptionCode ec = 0; local
94 static_cast<Text*>(firstChild())->setData(value, ec);
104 appendChild(document()->createTextNode(valueCopy.impl()), ec);
/external/webkit/Source/WebCore/storage/
H A DStorage.cpp81 void Storage::setItem(const String& key, const String& value, ExceptionCode& ec) argument
83 ec = 0;
87 m_storageArea->setItem(key, value, ec, m_frame);
/external/icu4c/i18n/
H A Dtranslit.cpp975 UErrorCode ec = U_ZERO_ERROR; local
980 if (HAVE_REGISTRY(ec)) {
981 t = registry->get(id, alias, ec);
985 if (U_FAILURE(ec)) {
1005 TransliteratorParser parser(ec);
1006 alias->parse(parser, pe, ec);
1012 if (HAVE_REGISTRY(ec)) {
1013 t = registry->reget(id, parser, alias, ec);
1019 t = alias->create(pe, ec);
1024 if (U_FAILURE(ec)) {
1214 UErrorCode ec = U_ZERO_ERROR; local
1225 UErrorCode ec = U_ZERO_ERROR; local
1253 UErrorCode ec = U_ZERO_ERROR; local
1260 UErrorCode ec = U_ZERO_ERROR; local
1267 UErrorCode ec = U_ZERO_ERROR; local
1275 UErrorCode ec = U_ZERO_ERROR; local
1289 UErrorCode ec = U_ZERO_ERROR; local
1304 UErrorCode ec = U_ZERO_ERROR; local
1320 UErrorCode ec = U_ZERO_ERROR; local
1329 getAvailableIDs(UErrorCode& ec) argument
1345 UErrorCode ec = U_ZERO_ERROR; local
1352 UErrorCode ec = U_ZERO_ERROR; local
1361 UErrorCode ec = U_ZERO_ERROR; local
1369 UErrorCode ec = U_ZERO_ERROR; local
1379 UErrorCode ec = U_ZERO_ERROR; local
1388 UErrorCode ec = U_ZERO_ERROR; local
[all...]

Completed in 673 milliseconds

1234567891011>>