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

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DWebSocket.cpp170 PassRefPtr<WebSocket> WebSocket::create(ScriptExecutionContext* context, const String& url, ExceptionCode& ec) argument
173 return WebSocket::create(context, url, protocols, ec);
176 PassRefPtr<WebSocket> WebSocket::create(ScriptExecutionContext* context, const String& url, const Vector<String>& protocols, ExceptionCode& ec) argument
179 ec = SYNTAX_ERR;
186 webSocket->connect(context->completeURL(url), protocols, ec);
187 if (ec)
193 PassRefPtr<WebSocket> WebSocket::create(ScriptExecutionContext* context, const String& url, const String& protocol, ExceptionCode& ec) argument
197 return WebSocket::create(context, url, protocols, ec);
200 void WebSocket::connect(const String& url, ExceptionCode& ec) argument
203 connect(url, protocols, ec);
206 connect(const String& url, const String& protocol, ExceptionCode& ec) argument
213 connect(const String& url, const Vector<String>& protocols, ExceptionCode& ec) argument
293 send(const String& message, ExceptionCode& ec) argument
316 send(ArrayBuffer* binaryData, ExceptionCode& ec) argument
334 send(ArrayBufferView* arrayBufferView, ExceptionCode& ec) argument
353 send(Blob* binaryData, ExceptionCode& ec) argument
371 close(int code, const String& reason, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSMatrix.cpp44 WebKitCSSMatrix::WebKitCSSMatrix(const String& s, ExceptionCode& ec) argument
46 setMatrixValue(s, ec);
53 void WebKitCSSMatrix::setMatrixValue(const String& string, ExceptionCode& ec) argument
70 ec = SYNTAX_ERR;
79 ec = SYNTAX_ERR;
87 ec = SYNTAX_ERR;
99 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::inverse(ExceptionCode& ec) const
102 ec = NOT_SUPPORTED_ERR;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMessagePort.cpp60 void MessagePort::postMessage(PassRefPtr<SerializedScriptValue> message, MessagePort* port, ExceptionCode& ec) argument
65 postMessage(message, &ports, ec);
68 void MessagePort::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionCode& ec) argument
80 ec = INVALID_STATE_ERR;
84 channels = MessagePort::disentanglePorts(ports, ec);
85 if (ec)
203 PassOwnPtr<MessagePortChannelArray> MessagePort::disentanglePorts(const MessagePortArray* ports, ExceptionCode& ec) argument
215 ec = DATA_CLONE_ERR;
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DFileReaderSync.h59 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec) argument
61 return readAsText(scriptExecutionContext, blob, "", ec);
H A DFileReader.cpp88 void FileReader::readAsArrayBuffer(Blob* blob, ExceptionCode& ec) argument
95 readInternal(blob, FileReaderLoader::ReadAsArrayBuffer, ec);
98 void FileReader::readAsBinaryString(Blob* blob, ExceptionCode& ec) argument
105 readInternal(blob, FileReaderLoader::ReadAsBinaryString, ec);
108 void FileReader::readAsText(Blob* blob, const String& encoding, ExceptionCode& ec) argument
116 readInternal(blob, FileReaderLoader::ReadAsText, ec);
119 void FileReader::readAsText(Blob* blob, ExceptionCode& ec) argument
121 readAsText(blob, String(), ec);
124 void FileReader::readAsDataURL(Blob* blob, ExceptionCode& ec) argument
131 readInternal(blob, FileReaderLoader::ReadAsDataURL, ec);
134 readInternal(Blob* blob, FileReaderLoader::ReadType type, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dimport_docidx.tcl74 set ec $errorCode
81 return -code $code -errorinfo $ei -errorcode $ec $serial
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/doctools2toc/
H A Dimport_doctoc.tcl74 set ec $errorCode
81 return -code $code -errorinfo $ei -errorcode $ec $serial
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libpng/contrib/visupng/
H A Dcexcept.h102 void init_exception_context(struct exception_context *ec);
209 #define init_exception_context(ec) ((void)((ec)->penv = 0))
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSDataViewCustom.cpp67 ExceptionCode ec = 0;
83 double value = (type == AccessDataViewMemberAsFloat32) ? imp->getFloat32(byteOffset, littleEndian, ec) : imp->getFloat64(byteOffset, littleEndian, ec);
90 setDOMException(exec, ec);
H A DJSHTMLElementCustom.cpp66 ExceptionCode ec = 0; local
67 imp->setItemValue(valueToStringWithNullCheck(exec, value), ec); local
68 setDOMException(exec, ec);
H A DJSIDBDatabaseCustom.cpp77 ExceptionCode ec = 0; local
78 JSValue result = toJS(exec, globalObject(), impl()->createObjectStore(name, keyPath, autoIncrement, ec).get());
79 setDOMException(exec, ec);
H A DJSIDBObjectStoreCustom.cpp78 ExceptionCode ec = 0; local
79 JSValue result = toJS(exec, globalObject(), impl()->createIndex(context, name, keyPath, unique, multiEntry, ec).get());
80 setDOMException(exec, ec);
H A DJSNodeCustom.cpp145 ExceptionCode ec = 0; local
146 bool ok = imp->insertBefore(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, AttachLazily);
147 setDOMException(exec, ec);
156 ExceptionCode ec = 0; local
157 bool ok = imp->replaceChild(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, AttachLazily);
158 setDOMException(exec, ec);
167 ExceptionCode ec = 0; local
168 bool ok = imp->removeChild(toNode(exec->argument(0)), ec);
169 setDOMException(exec, ec);
178 ExceptionCode ec local
[all...]
H A DJSSQLTransactionSyncCustom.cpp90 ExceptionCode ec = 0; local
91 JSValue result = toJS(exec, globalObject(), WTF::getPtr(m_impl->executeSQL(sqlStatement, sqlValues, ec)));
92 setDOMException(exec, ec);
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/GObject/
H A DWebKitDOMTestNode.cpp63 WebCore::ExceptionCode ec = 0; local
64 coreTarget->dispatchEvent(coreEvent, ec);
65 if (ec) {
66 WebCore::ExceptionCodeDescription description(ec);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DMergeIdenticalElementsCommand.cpp72 ExceptionCode ec = 0;
74 parent->insertBefore(m_element1.get(), m_element2.get(), ec);
75 if (ec)
84 m_element1->appendChild(children[i].release(), ec);
H A DSplitTextNodeCommand.cpp97 ExceptionCode ec = 0; local
98 m_text2->parentNode()->insertBefore(m_text1.get(), m_text2.get(), ec);
99 if (ec)
101 m_text2->deleteData(0, m_offset, ec);
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DDOMApplicationCache.cpp86 void DOMApplicationCache::update(ExceptionCode& ec) argument
90 ec = INVALID_STATE_ERR;
93 void DOMApplicationCache::swapCache(ExceptionCode& ec) argument
97 ec = INVALID_STATE_ERR;
/macosx-10.9.5/llvmCore-3425.0.33/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());
/macosx-10.9.5/Heimdal-323.92.1/tests/kdc/
H A Dcheck-fuzzer.in109 ec=0
113 { ec=1 ; eval "${testfailed}"; }
115 ${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
117 ${klist} > /dev/null || { ec=1 ; eval "${testfailed}"; }
119 { ec=1 ; eval "${testfailed}"; }
142 exit $ec
/macosx-10.9.5/ICU-511.35/icuSources/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);
/macosx-10.9.5/WebCore-7537.78.1/Modules/notifications/
H A DNotificationCenter.h57 PassRefPtr<Notification> createNotification(const String& iconURI, const String& title, const String& body, ExceptionCode& ec) argument
60 ec = INVALID_STATE_ERR;
63 return Notification::create(title, body, iconURI, scriptExecutionContext(), ec, this);
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/CPP/
H A DWebDOMTestEventTarget.cpp81 WebCore::ExceptionCode ec = 0;
82 bool result = impl()->dispatchEvent(toWebCore(evt), ec);
83 webDOMRaiseError(static_cast<WebDOMExceptionCode>(ec));
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLMeterElement.cpp87 void HTMLMeterElement::setMin(double min, ExceptionCode& ec) argument
90 ec = NOT_SUPPORTED_ERR;
101 void HTMLMeterElement::setMax(double max, ExceptionCode& ec) argument
104 ec = NOT_SUPPORTED_ERR;
116 void HTMLMeterElement::setValue(double value, ExceptionCode& ec) argument
119 ec = NOT_SUPPORTED_ERR;
131 void HTMLMeterElement::setLow(double low, ExceptionCode& ec) argument
134 ec = NOT_SUPPORTED_ERR;
146 void HTMLMeterElement::setHigh(double high, ExceptionCode& ec) argument
149 ec
161 setOptimum(double optimum, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTextContentElement.cpp118 float SVGTextContentElement::getSubStringLength(unsigned charnum, unsigned nchars, ExceptionCode& ec) argument
124 ec = INDEX_SIZE_ERR;
131 FloatPoint SVGTextContentElement::getStartPositionOfChar(unsigned charnum, ExceptionCode& ec) argument
136 ec = INDEX_SIZE_ERR;
143 FloatPoint SVGTextContentElement::getEndPositionOfChar(unsigned charnum, ExceptionCode& ec) argument
148 ec = INDEX_SIZE_ERR;
155 FloatRect SVGTextContentElement::getExtentOfChar(unsigned charnum, ExceptionCode& ec) argument
160 ec = INDEX_SIZE_ERR;
167 float SVGTextContentElement::getRotationOfChar(unsigned charnum, ExceptionCode& ec) argument
172 ec
185 selectSubString(unsigned charnum, unsigned nchars, ExceptionCode& ec) argument
[all...]

Completed in 138 milliseconds

1234567891011>>