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

1234567891011>>

/external/webkit/Source/WebCore/html/canvas/
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/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp45 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) {
46 errs() << Filename << ": " << ec.message() << "\n";
58 error_code ec; local
61 i != e; i.increment(ec)) {
/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/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/llvm/lib/Object/
H A DCOFFObjectFile.cpp31 // Returns false if size is greater than the buffer size. And sets ec.
32 bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) { argument
34 ec = object_error::unexpected_eof;
42 error_code &ec,
48 ec = object_error::unexpected_eof;
109 if (error_code ec = getSection(symb->SectionNumber, Section))
110 return ec;
112 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
113 return ec;
127 if (error_code ec
41 checkAddr(const MemoryBuffer *m, error_code &ec, uintptr_t addr, uint64_t size) argument
419 COFFObjectFile(MemoryBuffer *Object, error_code &ec) argument
785 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.cpp978 UErrorCode ec = U_ZERO_ERROR; local
983 if (HAVE_REGISTRY(ec)) {
984 t = registry->get(id, alias, ec);
988 if (U_FAILURE(ec)) {
1008 TransliteratorParser parser(ec);
1009 alias->parse(parser, pe, ec);
1015 if (HAVE_REGISTRY(ec)) {
1016 t = registry->reget(id, parser, alias, ec);
1022 t = alias->create(pe, ec);
1027 if (U_FAILURE(ec)) {
1216 UErrorCode ec = U_ZERO_ERROR; local
1227 UErrorCode ec = U_ZERO_ERROR; local
1255 UErrorCode ec = U_ZERO_ERROR; local
1262 UErrorCode ec = U_ZERO_ERROR; local
1269 UErrorCode ec = U_ZERO_ERROR; local
1277 UErrorCode ec = U_ZERO_ERROR; local
1291 UErrorCode ec = U_ZERO_ERROR; local
1306 UErrorCode ec = U_ZERO_ERROR; local
1322 UErrorCode ec = U_ZERO_ERROR; local
1331 getAvailableIDs(UErrorCode& ec) argument
1347 UErrorCode ec = U_ZERO_ERROR; local
1354 UErrorCode ec = U_ZERO_ERROR; local
1363 UErrorCode ec = U_ZERO_ERROR; local
1371 UErrorCode ec = U_ZERO_ERROR; local
1381 UErrorCode ec = U_ZERO_ERROR; local
1390 UErrorCode ec = U_ZERO_ERROR; local
[all...]
/external/icu4c/test/cintltst/
H A Dusettest.c30 UErrorCode* ec);
84 UErrorCode ec; local
106 ec = U_ZERO_ERROR;
107 set = uset_openPattern(PAT, PAT_LEN, &ec);
108 if(U_FAILURE(ec)) {
109 log_err("uset_openPattern([a-c{ab}]) failed - %s\n", u_errorName(ec));
115 expect(set, "abc{ab}", "def{bc}", &ec);
163 uset_applyIntPropertyValue(set, UCHAR_ASCII_HEX_DIGIT, 1, &ec);
164 if(U_FAILURE(ec)) {
165 log_err("uset_applyIntPropertyValue([UCHAR_ASCII_HEX_DIGIT]) failed - %s\n", u_errorName(ec));
236 expect(const USet* set, const char* inList, const char* outList, UErrorCode* ec) argument
259 UErrorCode ec; local
361 UErrorCode ec; local
520 UErrorCode ec = U_ZERO_ERROR; local
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
H A DWebDOMTestObj.cpp433 WebCore::ExceptionCode ec = 0;
434 int result = impl()->attrWithGetterException(ec);
435 webDOMRaiseError(static_cast<WebDOMExceptionCode>(ec));
444 WebCore::ExceptionCode ec = 0;
445 impl()->setAttrWithGetterException(newAttrWithGetterException, ec);
446 webDOMRaiseError(static_cast<WebDOMExceptionCode>(ec));
462 WebCore::ExceptionCode ec = 0;
463 impl()->setAttrWithSetterException(newAttrWithSetterException, ec);
464 webDOMRaiseError(static_cast<WebDOMExceptionCode>(ec));
472 WebCore::ExceptionCode ec
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/jce/spec/
H A DECNamedCurveSpec.java9 import org.bouncycastle.math.ec.ECCurve;
50 org.bouncycastle.math.ec.ECPoint g)
58 org.bouncycastle.math.ec.ECPoint g,
80 org.bouncycastle.math.ec.ECPoint g,
104 org.bouncycastle.math.ec.ECPoint g,

Completed in 972 milliseconds

1234567891011>>