Searched refs:ec (Results 276 - 300 of 708) sorted by relevance

<<11121314151617181920>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECParameterSpec.java3 import org.bouncycastle.math.ec.ECCurve;
4 import org.bouncycastle.math.ec.ECPoint;
/external/llvm/lib/AsmParser/
H A DParser.cpp46 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), File)) {
48 "Could not open input file: " + ec.message());
/external/llvm/utils/FileUpdate/
H A DFileUpdate.cpp48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), In)) {
50 << InputFilename << "': " << ec.message() << '\n';
/external/openssl/crypto/asn1/
H A Dd2i_pu.c72 #include <openssl/ec.h>
120 if (!o2i_ECPublicKey(&(ret->pkey.ec),
/external/webkit/Source/WebCore/html/
H A DDateTimeLocalInputType.cpp62 void DateTimeLocalInputType::setValueAsDate(double value, ExceptionCode& ec) const
65 InputType::setValueAsDate(value, ec);
H A DHTMLFrameOwnerElement.cpp98 SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionCode& ec) const
104 ec = NOT_SUPPORTED_ERR;
H A DHTMLSummaryElement.cpp55 ExceptionCode ec = 0; local
56 ensureShadowRoot()->appendChild(DetailsMarkerControl::create(document()), ec, true);
H A DHTMLVideoElement.h55 void webkitEnterFullScreen(bool isUserGesture, ExceptionCode& ec) { webkitEnterFullscreen(isUserGesture, ec); } argument
H A DHTMLOptionElement.cpp62 bool defaultSelected, bool selected, ExceptionCode& ec)
68 ec = 0;
69 element->appendChild(text.release(), ec);
70 if (ec)
116 void HTMLOptionElement::setText(const String &text, ExceptionCode& ec) argument
121 static_cast<Text *>(child)->setData(text, ec);
126 appendChild(Text::create(document(), text), ec);
61 createForJSConstructor(Document* document, const String& data, const String& value, bool defaultSelected, bool selected, ExceptionCode& ec) argument
/external/webkit/Source/WebCore/html/canvas/
H A DOESVertexArrayObject.cpp88 void OESVertexArrayObject::bindVertexArrayOES(WebGLVertexArrayObjectOES* arrayObject, ExceptionCode& ec) argument
90 UNUSED_PARAM(ec);
H A DCanvasRenderingContext2D.cpp813 void CanvasRenderingContext2D::arcTo(float x1, float y1, float x2, float y2, float r, ExceptionCode& ec) argument
815 ec = 0;
820 ec = INDEX_SIZE_ERR;
838 void CanvasRenderingContext2D::arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionCode& ec) argument
840 ec = 0;
845 ec = INDEX_SIZE_ERR;
1208 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, float x, float y, ExceptionCode& ec) argument
1211 ec = TYPE_MISMATCH_ERR;
1215 drawImage(image, x, y, s.width(), s.height(), ec);
1219 float x, float y, float width, float height, ExceptionCode& ec)
1218 drawImage(HTMLImageElement* image, float x, float y, float width, float height, ExceptionCode& ec) argument
1229 drawImage(HTMLImageElement* image, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionCode& ec) argument
1240 drawImage(HTMLImageElement* image, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionCode& ec) argument
1245 drawImage(HTMLImageElement* image, const FloatRect& srcRect, const FloatRect& dstRect, const CompositeOperator& op, ExceptionCode& ec) argument
1291 drawImage(HTMLCanvasElement* canvas, float x, float y, ExceptionCode& ec) argument
1300 drawImage(HTMLCanvasElement* canvas, float x, float y, float width, float height, ExceptionCode& ec) argument
1310 drawImage(HTMLCanvasElement* canvas, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionCode& ec) argument
1317 drawImage(HTMLCanvasElement* sourceCanvas, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionCode& ec) argument
1374 drawImage(HTMLVideoElement* video, float x, float y, ExceptionCode& ec) argument
1384 drawImage(HTMLVideoElement* video, float x, float y, float width, float height, ExceptionCode& ec) argument
1395 drawImage(HTMLVideoElement* video, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionCode& ec) argument
1402 drawImage(HTMLVideoElement* video, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionCode& ec) argument
1455 ExceptionCode ec; local
1479 createLinearGradient(float x0, float y0, float x1, float y1, ExceptionCode& ec) argument
1491 createRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1, ExceptionCode& ec) argument
1508 createPattern(HTMLImageElement* image, const String& repetitionType, ExceptionCode& ec) argument
1532 createPattern(HTMLCanvasElement* canvas, const String& repetitionType, ExceptionCode& ec) argument
1683 putImageData(ImageData* data, float dx, float dy, ExceptionCode& ec) argument
1692 putImageData(ImageData* data, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight, ExceptionCode& ec) argument
[all...]
/external/webkit/Source/WebCore/page/
H A DFrameActionScheduler.cpp46 ExceptionCode ec = 0; local
48 m_eventTarget->dispatchEvent(m_event, ec);
/external/webkit/Source/WebCore/storage/
H A DIDBCursor.h59 void continueFunction(ExceptionCode& ec) { continueFunction(0, ec); } argument
/external/webkit/Source/WebKit/chromium/src/
H A DStorageInfoChromium.cpp52 void fireStorageInfoErrorCallback(PassRefPtr<StorageInfoErrorCallback> errorCallback, ExceptionCode ec) argument
56 getExceptionCodeDescription(ec, description);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebInspector.idl37 uuid(68159FF1-9037-45ec-9992-B2E455CF39F3),
H A DIWebNotification.idl34 uuid(93598207-3E34-49ec-97EC-EFA9A1E16335),
/external/webkit/Source/WebCore/dom/
H A DDatasetDOMStringMap.cpp188 void DatasetDOMStringMap::setItem(const String& name, const String& value, ExceptionCode& ec) argument
191 ec = SYNTAX_ERR;
195 m_element->setAttribute(convertPropertyNameToAttributeName(name), value, ec); local
198 void DatasetDOMStringMap::deleteItem(const String& name, ExceptionCode& ec) argument
201 ec = SYNTAX_ERR;
H A DXMLDocumentParserQt.cpp342 ExceptionCode& ec, FragmentScriptingPermission scriptingPermission)
349 newElement->setAttributeNS("http://www.w3.org/2000/xmlns/", namespaceQName, namespaceURI, ec, scriptingPermission);
350 if (ec) // exception setting attributes
355 static inline void handleElementAttributes(Element* newElement, const QXmlStreamAttributes &attrs, ExceptionCode& ec, argument
364 newElement->setAttributeNS(attrURI, attrQName, attrValue, ec, scriptingPermission);
365 if (ec) // exception setting attributes
434 ExceptionCode ec = 0; local
437 static_cast<Text*>(m_currentNode)->appendData(str, ec);
461 ExceptionCode ec = 0; local
464 document()->setXMLStandalone(m_stream.isStandaloneDocument(), ec);
341 handleElementNamespaces(Element* newElement, const QXmlStreamNamespaceDeclarations &ns, ExceptionCode& ec, FragmentScriptingPermission scriptingPermission) argument
523 ExceptionCode ec = 0; local
564 ExceptionCode ec; local
622 ExceptionCode ec = 0; local
[all...]
/external/valgrind/main/coregrind/
H A Dm_execontext.c171 void VG_(pp_ExeContext) ( ExeContext* ec )
173 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
461 ExeContext* ec; local
465 for (ec = ec_htab[i]; ec; ec = ec->chain) {
466 if (ec->ecu == ecu)
467 return ec;
[all...]
/external/icu4c/test/cintltst/
H A Dcdattst.c774 UErrorCode ec = U_ZERO_ERROR; local
776 ctest_setTimeZone(NULL, &ec);
779 date = udat_open(UDAT_NONE, UDAT_SHORT, "en_US", NULL, 0, NULL, 0, &ec);
780 if (U_FAILURE(ec)) {
782 u_errorName(ec));
787 time = udat_open(UDAT_SHORT, UDAT_NONE, "en_US", NULL, 0, NULL, 0, &ec);
788 if (U_FAILURE(ec)) {
790 u_errorName(ec));
795 full = udat_open(UDAT_FULL, UDAT_FULL, "en_US", NULL, 0, NULL, 0, &ec);
796 if (U_FAILURE(ec)) {
1028 _aux1ExtremeDates(UDateFormat* fmt, UDate date, UChar* buf, int32_t buflen, char* cbuf, UErrorCode* ec) argument
1048 _aux2ExtremeDates(UDateFormat* fmt, UDate small, UDate large, UChar* buf, int32_t buflen, char* cbuf, int32_t count, UErrorCode* ec) argument
1079 UErrorCode ec; local
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMAgent.cpp188 ExceptionCode ec = 0;
189 RefPtr<NodeList> list = m_document->querySelectorAll(m_query, ec);
190 if (!ec)
206 ExceptionCode ec = 0;
207 RefPtr<XPathResult> result = m_document->evaluate(m_query, m_document.get(), 0, XPathResult::ORDERED_NODE_SNAPSHOT_TYPE, 0, ec);
208 if (ec || !result)
211 unsigned long size = result->snapshotLength(ec);
212 for (unsigned long i = 0; !ec && i < size; ++i) {
213 Node* node = result->snapshotItem(i, ec);
214 if (ec)
579 ExceptionCode ec = 0; local
590 ExceptionCode ec = 0; local
609 ExceptionCode ec = 0; local
671 ExceptionCode ec = 0; local
708 ExceptionCode ec = 0; local
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGUseElement.cpp616 ExceptionCode ec = 0; local
620 String markup = serializer->serializeToString(shadowRoot, ec);
621 ASSERT(!ec);
785 ExceptionCode ec; local
791 node->parentNode()->removeChild(node, ec);
819 ExceptionCode ec = 0; local
820 shadowRoot->appendChild(newChild.release(), ec);
821 ASSERT(!ec);
852 ExceptionCode ec = 0; local
861 cloneParent->appendChild(newChild.release(), ec);
906 ExceptionCode ec = 0; local
1060 ExceptionCode ec = 0; local
[all...]
/external/llvm/include/llvm/Support/
H A DFileSystem.h627 /// \param ec This is set to errc::success if the map was constructed
633 error_code &ec);
641 error_code &ec);
748 explicit directory_iterator(const Twine &path, error_code &ec) { argument
751 ec = detail::directory_iterator_construct(*State,
755 explicit directory_iterator(const directory_entry &de, error_code &ec) { argument
757 ec = detail::directory_iterator_construct(*State, de.path());
764 directory_iterator &increment(error_code &ec) { argument
765 ec = directory_iterator_increment(*State);
804 explicit recursive_directory_iterator(const Twine &path, error_code &ec) argument
811 increment(error_code &ec) argument
860 error_code ec; local
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/
H A DWebKitDOMTestObj.cpp176 WebCore::ExceptionCode ec = 0; local
177 PassRefPtr<WebCore::TestObj> g_res = WTF::getPtr(item->methodThatRequiresAllArgsAndThrows(converted_str_arg, converted_obj_arg, ec));
178 if (ec) {
180 WebCore::getExceptionCodeDescription(ec, ecdesc);
244 WebCore::ExceptionCode ec = 0; local
245 item->methodWithException(ec);
246 if (ec) {
248 WebCore::getExceptionCodeDescription(ec, ecdesc);
324 WebCore::ExceptionCode ec = 0; local
325 item->withScriptStateVoidException(ec);
339 WebCore::ExceptionCode ec = 0; local
850 WebCore::ExceptionCode ec = 0; local
866 WebCore::ExceptionCode ec = 0; local
891 WebCore::ExceptionCode ec = 0; local
906 WebCore::ExceptionCode ec = 0; local
919 WebCore::ExceptionCode ec = 0; local
946 WebCore::ExceptionCode ec = 0; local
1245 WebCore::ExceptionCode ec = 0; local
1251 WebCore::ExceptionCode ec = 0; local
1257 WebCore::ExceptionCode ec = 0; local
1263 WebCore::ExceptionCode ec = 0; local
1426 WebCore::ExceptionCode ec = 0; local
1437 WebCore::ExceptionCode ec = 0; local
[all...]
/external/icu4c/common/
H A Duvector.h125 void assign(const UVector& other, UTokenAssigner *assign, UErrorCode &ec);
240 void sortedInsert(void* obj, USortComparator *compare, UErrorCode& ec);
247 void sortedInsert(int32_t obj, USortComparator *compare, UErrorCode& ec);
253 void sorti(UErrorCode &ec);
261 void sort(USortComparator *compare, UErrorCode &ec);
269 void sortWithUComparator(UComparator *compare, const void *context, UErrorCode &ec);
286 void sortedInsert(UHashTok tok, USortComparator *compare, UErrorCode& ec);

Completed in 586 milliseconds

<<11121314151617181920>>