Searched refs:ec (Results 76 - 100 of 677) sorted by relevance

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Decdsa.h41 #include <hcrypto/ec.h>
/macosx-10.9.5/WebCore-7537.78.1/Modules/vibration/
H A DNavigatorVibration.cpp42 void NavigatorVibration::vibrate(Navigator* navigator, unsigned time, ExceptionCode& ec) argument
53 ec = NOT_SUPPORTED_ERR;
60 void NavigatorVibration::vibrate(Navigator* navigator, const VibrationPattern& pattern, ExceptionCode& ec) argument
71 ec = NOT_SUPPORTED_ERR;
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLSelectElementCustom.cpp53 ExceptionCode ec = 0; local
56 ec = TYPE_MISMATCH_ERR;
58 select->setOption(index, option, ec);
59 setDOMException(exec, ec);
H A DJSWorkerCustom.cpp62 ExceptionCode ec = 0; local
63 RefPtr<Worker> worker = Worker::create(window->document(), scriptURL, ec);
64 if (ec) {
65 setDOMException(exec, ec);
H A DJSAudioContextCustom.cpp63 ExceptionCode ec = 0; local
64 audioContext = AudioContext::create(document, ec);
65 if (ec) {
66 setDOMException(exec, ec);
95 ExceptionCode ec = 0;
96 audioContext = OfflineAudioContext::create(document, numberOfChannels, numberOfFrames, sampleRate, ec);
97 if (ec) {
98 setDOMException(exec, ec);
H A DJSDOMStringMapCustom.cpp67 ExceptionCode ec = 0;
68 thisObject->m_impl->deleteItem(stringName, ec);
69 setDOMException(exec, ec);
70 return !ec;
83 ExceptionCode ec = 0;
84 impl()->setItem(propertyNameToString(propertyName), stringValue, ec); local
85 setDOMException(exec, ec);
86 return !ec;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLDialogElement.cpp48 void HTMLDialogElement::close(ExceptionCode& ec) argument
51 ec = INVALID_STATE_ERR;
65 void HTMLDialogElement::showModal(ExceptionCode& ec) argument
68 ec = INVALID_STATE_ERR;
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DCanvasGradient.cpp53 void CanvasGradient::addColorStop(float value, const String& color, ExceptionCode& ec) argument
56 ec = INDEX_SIZE_ERR;
64 ec = SYNTAX_ERR;
66 ec = SYNTAX_ERR;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMText.mm44 WebCore::ExceptionCode ec;
45 WebCore::toText(_impl.get())->setData(data, ec);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Danytrans.cpp125 UErrorCode ec = U_ZERO_ERROR; local
139 s = uscript_getScript(ch, &ec);
151 s = uscript_getScript(ch, &ec);
181 UErrorCode& ec) :
185 cache = uhash_open(uhash_hashLong, uhash_compareLong, NULL, &ec);
186 if (U_FAILURE(ec)) {
210 UErrorCode ec = U_ZERO_ERROR; local
211 cache = uhash_open(uhash_hashLong, uhash_compareLong, NULL, &ec);
212 if (U_FAILURE(ec)) {
280 UErrorCode ec local
177 AnyTransliterator(const UnicodeString& id, const UnicodeString& theTarget, const UnicodeString& theVariant, UScriptCode theTargetScript, UErrorCode& ec) argument
313 UErrorCode ec = U_ZERO_ERROR; local
335 UErrorCode ec = U_ZERO_ERROR; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGLengthContext.cpp91 float SVGLengthContext::convertValueToUserUnits(float value, SVGLengthMode mode, SVGLengthType fromUnit, ExceptionCode& ec) const
98 return convertValueFromPercentageToUserUnits(value, mode, ec);
103 ec = NOT_SUPPORTED_ERR;
110 return convertValueFromPercentageToUserUnits(value / 100, mode, ec);
112 return convertValueFromEMSToUserUnits(value, ec);
114 return convertValueFromEXSToUserUnits(value, ec);
131 float SVGLengthContext::convertValueFromUserUnits(float value, SVGLengthMode mode, SVGLengthType toUnit, ExceptionCode& ec) const
135 ec = NOT_SUPPORTED_ERR;
140 return convertValueFromUserUnitsToPercentage(value * 100, mode, ec);
142 return convertValueFromUserUnitsToEMS(value, ec);
[all...]
H A DSVGColor.cpp59 void SVGColor::setRGBColor(const String&, ExceptionCode& ec) argument
63 ec = NO_MODIFICATION_ALLOWED_ERR;
66 void SVGColor::setRGBColorICCColor(const String&, const String&, ExceptionCode& ec) argument
68 ec = NO_MODIFICATION_ALLOWED_ERR;
71 void SVGColor::setColor(unsigned short, const String&, const String&, ExceptionCode& ec) argument
73 ec = NO_MODIFICATION_ALLOWED_ERR;
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DRTCDTMFSender.cpp47 PassRefPtr<RTCDTMFSender> RTCDTMFSender::create(ScriptExecutionContext* context, RTCPeerConnectionHandler* peerConnectionHandler, PassRefPtr<MediaStreamTrack> prpTrack, ExceptionCode& ec) argument
52 ec = NOT_SUPPORTED_ERR;
92 void RTCDTMFSender::insertDTMF(const String& tones, ExceptionCode& ec) argument
94 insertDTMF(tones, defaultToneDurationMs, defaultInterToneGapMs, ec);
97 void RTCDTMFSender::insertDTMF(const String& tones, long duration, ExceptionCode& ec) argument
99 insertDTMF(tones, duration, defaultInterToneGapMs, ec);
102 void RTCDTMFSender::insertDTMF(const String& tones, long duration, long interToneGap, ExceptionCode& ec) argument
105 ec = NOT_SUPPORTED_ERR;
110 ec = SYNTAX_ERR;
115 ec
[all...]
H A DRTCSessionDescription.cpp48 PassRefPtr<RTCSessionDescription> RTCSessionDescription::create(const Dictionary& dictionary, ExceptionCode& ec) argument
53 ec = TYPE_MISMATCH_ERR;
60 ec = TYPE_MISMATCH_ERR;
87 void RTCSessionDescription::setType(const String& type, ExceptionCode& ec) argument
92 ec = TYPE_MISMATCH_ERR;
100 void RTCSessionDescription::setSdp(const String& sdp, ExceptionCode& ec) argument
H A DRTCDataChannel.cpp43 PassRefPtr<RTCDataChannel> RTCDataChannel::create(ScriptExecutionContext* context, RTCPeerConnectionHandler* peerConnectionHandler, const String& label, bool reliable, ExceptionCode& ec) argument
47 ec = NOT_SUPPORTED_ERR;
118 void RTCDataChannel::setBinaryType(const String& binaryType, ExceptionCode& ec) argument
121 ec = NOT_SUPPORTED_ERR;
125 ec = TYPE_MISMATCH_ERR;
128 void RTCDataChannel::send(const String& data, ExceptionCode& ec) argument
131 ec = INVALID_STATE_ERR;
136 ec = SYNTAX_ERR;
140 void RTCDataChannel::send(PassRefPtr<ArrayBuffer> prpData, ExceptionCode& ec) argument
143 ec
161 send(PassRefPtr<ArrayBufferView> data, ExceptionCode& ec) argument
167 send(PassRefPtr<Blob> data, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/curl-78.94.1/curl/tests/libtest/
H A Dtest.h164 CURLcode ec; \
165 if((ec = curl_easy_setopt((A),(B),(C))) != CURLE_OK) { \
168 (Y), (Z), (int)ec, curl_easy_strerror(ec)); \
169 res = (int)ec; \
188 CURLMcode ec; \
189 if((ec = curl_multi_setopt((A),(B),(C))) != CURLM_OK) { \
192 (Y), (Z), (int)ec, curl_multi_strerror(ec)); \
193 res = (int)ec; \
[all...]
/macosx-10.9.5/Heimdal-323.92.1/tests/kdc/
H A Dcheck-des.in110 ec=0
114 { ec=1 ; eval "${testfailed}"; }
116 ${kgetcred} ${afsserver}@${R} || { ec=1 ; eval "${testfailed}"; }
117 ${klist} -v | grep des-cbc-crc > /dev/null && { ec=1 ; eval "${testfailed}"; }
119 ${kgetcred} ${hostserver}@${R} || { ec=1 ; eval "${testfailed}"; }
120 ${klist} -v | grep des-cbc-crc > /dev/null && { ec=1 ; eval "${testfailed}"; }
126 { ec=1 ; eval "${testfailed}"; }
129 { ec=1 ; eval "${testfailed}"; }
131 ${kgetcred} ${afsserver}@${R} || { ec=1 ; eval "${testfailed}"; }
132 ${klist} -v | grep des-cbc-crc > /dev/null && { ec
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Ducat.h89 * @param ec input/output error code. Upon output,
97 * u_catgets(). If the ec parameter indicates success, then the caller
99 * catalog. If the ec parameter indicates failure, then NULL will be
105 u_catopen(const char* name, const char* locale, UErrorCode* ec);
136 * @param ec input/output error code. May be U_USING_FALLBACK_WARNING
145 * which ec indicates a failing error code upon entry to this
153 int32_t* len, UErrorCode* ec);
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtokiter.h43 UBool next(UnicodeString& token, UErrorCode& ec);
61 UBool nextToken(UnicodeString& token, UErrorCode& ec);
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DDelayNode.cpp35 DelayNode::DelayNode(AudioContext* context, float sampleRate, double maxDelayTime, ExceptionCode& ec) argument
39 ec = NOT_SUPPORTED_ERR;
/macosx-10.9.5/Heimdal-323.92.1/tests/plugin/
H A Dcheck-pac.in106 ec=0
110 { ec=1 ; eval "${testfailed}"; }
114 { ec=1 ; eval "${testfailed}"; }
116 ${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
119 { ec=1 ; eval "${testfailed}"; }
124 { ec=1 ; eval "${testfailed}"; }
126 ${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
129 { ec=1 ; eval "${testfailed}"; }
134 { ec=1 ; eval "${testfailed}"; }
136 ${kgetcred} ${server}@${R} || { ec
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DWorkerContextWebDatabase.cpp43 PassRefPtr<Database> WorkerContextWebDatabase::openDatabase(WorkerContext* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
51 ec = DatabaseManager::exceptionCodeForDatabaseError(error);
53 ec = SECURITY_ERR;
58 PassRefPtr<DatabaseSync> WorkerContextWebDatabase::openDatabaseSync(WorkerContext* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
67 ec = DatabaseManager::exceptionCodeForDatabaseError(error);
69 ec = SECURITY_ERR;
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMImplementationFront.cpp57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode& ec) argument
59 return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, systemId, ec);
62 PassRefPtr<Document> DOMImplementationFront::createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType* type, ExceptionCode& ec) argument
64 return reinterpret_cast<DOMImplementation*>(this)->createDocument(namespaceURI, qualifiedName, type, ec);
72 PassRefPtr<CSSStyleSheet> DOMImplementationFront::createCSSStyleSheet(const String& title, const String& media, ExceptionCode& ec) argument
74 return reinterpret_cast<DOMImplementation*>(this)->createCSSStyleSheet(title, media, ec);
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBFactory.cpp101 PassRefPtr<IDBRequest> IDBFactory::getDatabaseNames(ScriptExecutionContext* context, ExceptionCode& ec) argument
107 ec = SECURITY_ERR;
116 PassRefPtr<IDBOpenDBRequest> IDBFactory::open(ScriptExecutionContext* context, const String& name, unsigned long long version, ExceptionCode& ec) argument
120 ec = TypeError;
123 return openInternal(context, name, version, ec);
126 PassRefPtr<IDBOpenDBRequest> IDBFactory::openInternal(ScriptExecutionContext* context, const String& name, int64_t version, ExceptionCode& ec) argument
131 ec = TypeError;
137 ec = SECURITY_ERR;
148 PassRefPtr<IDBOpenDBRequest> IDBFactory::open(ScriptExecutionContext* context, const String& name, ExceptionCode& ec) argument
151 return openInternal(context, name, IDBDatabaseMetadata::NoIntVersion, ec);
154 deleteDatabase(ScriptExecutionContext* context, const String& name, ExceptionCode& ec) argument
174 cmp(ScriptExecutionContext* context, const ScriptValue& firstValue, const ScriptValue& secondValue, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/navigatorcontentutils/
H A DNavigatorContentUtils.cpp64 static bool verifyCustomHandlerURL(const String& baseURL, const String& url, ExceptionCode& ec) argument
71 ec = SYNTAX_ERR;
84 ec = SYNTAX_ERR;
98 static bool verifyProtocolHandlerScheme(const String& scheme, ExceptionCode& ec) argument
103 ec = SECURITY_ERR;
109 ec = SECURITY_ERR;
127 void NavigatorContentUtils::registerProtocolHandler(Navigator* navigator, const String& scheme, const String& url, const String& title, ExceptionCode& ec) argument
138 if (!verifyCustomHandlerURL(baseURL, url, ec))
141 if (!verifyProtocolHandlerScheme(scheme, ec))
167 String NavigatorContentUtils::isProtocolHandlerRegistered(Navigator* navigator, const String& scheme, const String& url, ExceptionCode& ec) argument
186 unregisterProtocolHandler(Navigator* navigator, const String& scheme, const String& url, ExceptionCode& ec) argument
[all...]

Completed in 358 milliseconds

1234567891011>>