Searched refs:ec (Results 151 - 175 of 677) sorted by relevance

1234567891011>>

/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dcurrfmt.cpp23 CurrencyFormat::CurrencyFormat(const Locale& locale, UErrorCode& ec) : argument
26 fmt = NumberFormat::createCurrencyInstance(locale, ec);
57 UErrorCode& ec) const
59 return fmt->format(obj, appendTo, pos, ec);
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediasource/
H A DMediaSource.cpp95 void MediaSource::setDuration(double duration, ExceptionCode& ec) argument
98 ec = INVALID_ACCESS_ERR;
102 ec = INVALID_STATE_ERR;
108 SourceBuffer* MediaSource::addSourceBuffer(const String& type, ExceptionCode& ec) argument
114 ec = INVALID_ACCESS_ERR;
121 ec = NOT_SUPPORTED_ERR;
128 ec = INVALID_STATE_ERR;
151 ec = NOT_SUPPORTED_ERR;
156 ec = QUOTA_EXCEEDED_ERR;
164 void MediaSource::removeSourceBuffer(SourceBuffer* buffer, ExceptionCode& ec) argument
235 endOfStream(const String& error, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioBasicInspectorNode.cpp54 void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionCode& ec) argument
60 AudioNode::connect(destination, outputIndex, inputIndex, ec);
64 void AudioBasicInspectorNode::disconnect(unsigned outputIndex, ExceptionCode& ec) argument
70 AudioNode::disconnect(outputIndex, ec);
H A DDefaultAudioDestinationNode.cpp112 void DefaultAudioDestinationNode::setChannelCount(unsigned long channelCount, ExceptionCode& ec) argument
121 ec = INVALID_STATE_ERR;
126 AudioNode::setChannelCount(channelCount, ec);
128 if (!ec && this->channelCount() != oldChannelCount && isInitialized()) {
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSSharedWorkerCustom.cpp75 ExceptionCode ec = 0; local
76 RefPtr<SharedWorker> worker = SharedWorker::create(window->document(), scriptURL, name, ec);
77 if (ec) {
78 setDOMException(exec, ec);
H A DJSWebGLRenderingContextCustom.cpp162 ExceptionCode ec = 0;
173 info = context->getBufferParameter(target, pname, ec);
176 info = context->getRenderbufferParameter(target, pname, ec);
179 info = context->getTexParameter(target, pname, ec);
183 info = context->getVertexAttrib(target, pname, ec);
189 if (ec) {
190 setDOMException(exec, ec);
252 ExceptionCode ec = 0;
260 bool succeed = context->getAttachedShaders(program, shaders, ec);
261 if (ec) {
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DNodeIterator.h58 PassRefPtr<Node> nextNode(ExceptionCode& ec) { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); } argument
59 PassRefPtr<Node> previousNode(ExceptionCode& ec) { return previousNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); } argument
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DDeleteFromTextNodeCommand.cpp54 ExceptionCode ec = 0;
55 m_text = m_node->substringData(m_offset, m_count, ec);
56 if (ec)
63 m_node->deleteData(m_offset, m_count, ec);
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DDOMSettableTokenList.cpp52 void DOMSettableTokenList::add(const Vector<String>& tokens, ExceptionCode& ec) argument
54 DOMTokenList::add(tokens, ec);
73 void DOMSettableTokenList::remove(const Vector<String>& tokens, ExceptionCode& ec) argument
75 DOMTokenList::remove(tokens, ec);
H A DHTMLTableSectionElement.cpp59 PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionCode& ec) argument
65 ec = INDEX_SIZE_ERR; // per the DOM
69 appendChild(row, ec);
76 insertBefore(row, n, ec);
82 void HTMLTableSectionElement::deleteRow(int index, ExceptionCode& ec) argument
90 HTMLElement::removeChild(row.get(), ec);
92 ec = INDEX_SIZE_ERR;
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DDataTransferItemListQt.cpp64 void DataTransferItemListQt::deleteItem(unsigned long index, ExceptionCode& ec) argument
67 ec = INVALID_STATE_ERR;
86 void DataTransferItemListQt::add(const String& data, const String& type, ExceptionCode& ec) argument
94 ec = NOT_SUPPORTED_ERR;
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAltGlyphElement.cpp59 void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionCode& ec) argument
61 ec = NO_MODIFICATION_ALLOWED_ERR;
69 void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionCode& ec) argument
71 ec = NO_MODIFICATION_ALLOWED_ERR;
/macosx-10.9.5/WebCore-7537.78.1/svg/properties/
H A DSVGTransformListPropertyTearOff.h41 PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionCode& ec) argument
45 ec = TYPE_MISMATCH_ERR;
51 PassRefPtr<SVGPropertyTearOff<SVGTransform> > consolidate(ExceptionCode& ec) argument
55 if (!canAlterList(ec))
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DSharedWorker.cpp55 PassRefPtr<SharedWorker> SharedWorker::create(ScriptExecutionContext* context, const String& url, const String& name, ExceptionCode& ec) argument
69 KURL scriptURL = worker->resolveURL(url, ec);
77 ec = SECURITY_ERR;
81 SharedWorkerRepository::connect(worker.get(), remotePort.release(), scriptURL, name, ec);
H A DWorker.cpp60 PassRefPtr<Worker> Worker::create(ScriptExecutionContext* context, const String& url, ExceptionCode& ec) argument
69 KURL scriptURL = worker->resolveURL(url, ec);
97 void Worker::postMessage(PassRefPtr<SerializedScriptValue> message, MessagePort* port, ExceptionCode& ec) argument
102 postMessage(message, &ports, ec);
105 void Worker::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionCode& ec) argument
108 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec);
109 if (ec)
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMDocument.mm42 WebCore::ExceptionCode ec = 0;
43 return WebKit::toWKDOMElement(toDocument(_impl.get())->createElement(tagName, ec).get());
H A DWKDOMElement.mm50 WebCore::ExceptionCode ec;
51 WebCore::toElement(_impl.get())->setAttribute(name, value, ec);
/macosx-10.9.5/llvmCore-3425.0.33/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";
/macosx-10.9.5/xnu-2422.115.4/bsd/machine/
H A Dexec.h39 int ec; member in struct:exec_info
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DUserMediaRequest.cpp50 static PassRefPtr<MediaConstraintsImpl> parseOptions(const Dictionary& options, const String& mediaType, ExceptionCode& ec) argument
57 constraints = MediaConstraintsImpl::create(constraintsDictionary, ec);
68 PassRefPtr<UserMediaRequest> UserMediaRequest::create(ScriptExecutionContext* context, UserMediaController* controller, const Dictionary& options, PassRefPtr<NavigatorUserMediaSuccessCallback> successCallback, PassRefPtr<NavigatorUserMediaErrorCallback> errorCallback, ExceptionCode& ec) argument
70 RefPtr<MediaConstraintsImpl> audio = parseOptions(options, ASCIILiteral("audio"), ec);
71 if (ec)
74 RefPtr<MediaConstraintsImpl> video = parseOptions(options, ASCIILiteral("video"), ec);
75 if (ec)
/macosx-10.9.5/Heimdal-323.92.1/tests/apple/
H A Dcheck-apple-hodadmin.in95 ec=0
99 { ec=1 ; eval "${testfailed}"; }
101 ${kgetcred} host/${r}@${r} || { ec=1 ; eval "${testfailed}"; }
103 ${klist} > /dev/null || { ec=1 ; eval "${testfailed}"; }
113 exit $ec
H A Dcheck-apple-server.in87 ec=0
95 { ec=1 ; eval "${testfailed}"; }
113 { ec=$? ; eval "${testfailed}"; }
121 { ec=1 ; eval "${testfailed}"; }
136 exit $ec
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-readobj/
H A Dllvm-readobj.cpp122 error_code ec; local
129 it.increment(ec);
130 if (ec)
139 error_code ec; local
146 it.increment(ec);
147 if (ec)
162 error_code ec; local
169 it.increment(ec);
170 if (ec)
188 error_code ec; local
[all...]
/macosx-10.9.5/groff-38/groff/font/devdvi/generate/
H A DMakefile116 TREC: $(srcdir)/ec.map
118 $(tfmdir)/ecrm1000.tfm $(srcdir)/ec.map $@
120 TIEC: $(srcdir)/ec.map
122 $(tfmdir)/ecti1000.tfm $(srcdir)/ec.map $@
124 TBEC: $(srcdir)/ec.map
126 $(tfmdir)/ecbx1000.tfm $(srcdir)/ec.map $@
128 TBIEC: $(srcdir)/ec.map
130 $(tfmdir)/ecbi1000.tfm $(srcdir)/ec.map $@
132 CWEC: $(srcdir)/ec.map
133 $(TFMTODIT) $(tfmdir)/ectt1000.tfm $(srcdir)/ec
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/obj2yaml/
H A Dobj2yaml.cpp79 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, buf))
80 llvm::errs() << "Error: '" << ec.message() << "' opening file '"
83 ec = coff2yaml(llvm::outs(), buf.take());
84 if (ec)
85 llvm::errs() << "Error: " << ec.message() << " dumping COFF file" << endl;

Completed in 165 milliseconds

1234567891011>>