Searched refs:ec (Results 176 - 200 of 677) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-size/
H A Dllvm-size.cpp70 /// @brief If ec is not success, print the error and return true.
71 static bool error(error_code ec) { argument
72 if (!ec) return false;
74 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
114 error_code ec; local
117 i.increment(ec)) {
118 if (error(ec))
159 i.increment(ec)) {
160 if (error(ec))
192 error_code ec; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dcurrpinf.cpp244 UErrorCode ec = U_ZERO_ERROR; local
245 UResourceBundle *rb = ures_open(NULL, loc.getName(), &ec);
246 UResourceBundle *numElements = ures_getByKeyWithFallback(rb, gNumberElementsTag, NULL, &ec);
247 rb = ures_getByKeyWithFallback(numElements, ns->getName(), rb, &ec);
248 rb = ures_getByKeyWithFallback(rb, gPatternsTag, rb, &ec);
250 const UChar* numberStylePattern = ures_getStringByKeyWithFallback(rb, gDecimalFormatTag, &ptnLen, &ec);
252 if ( ec == U_MISSING_RESOURCE_ERROR && uprv_strcmp(ns->getName(),gLatnTag)) {
253 ec = U_ZERO_ERROR;
254 rb = ures_getByKeyWithFallback(numElements, gLatnTag, rb, &ec);
255 rb = ures_getByKeyWithFallback(rb, gPatternsTag, rb, &ec);
[all...]
H A Dcurrfmt.h43 CurrencyFormat(const Locale& locale, UErrorCode& ec);
74 UErrorCode& ec) const;
/macosx-10.9.5/ruby-104/ruby/ext/openssl/
H A Dossl_pkey_ec.c39 (key) = pkey->pkey.ec; \
109 static VALUE ec_instance(VALUE klass, EC_KEY *ec) argument
114 if (!ec) {
120 if (!EVP_PKEY_assign_EC_KEY(pkey, ec)) {
164 EC_KEY *ec = NULL; local
170 if (pkey->pkey.ec)
176 ec = EC_KEY_new();
182 ec = EC_KEY_dup(other_ec);
184 ec = EC_KEY_new();
192 ec
251 EC_KEY *ec; local
293 EC_KEY *ec; local
325 EC_KEY *ec; local
344 EC_KEY *ec; local
392 EC_KEY *ec; local
416 EC_KEY *ec; local
444 EC_KEY *ec; local
459 EC_KEY *ec; local
468 EC_KEY *ec; local
572 EC_KEY *ec; local
597 EC_KEY *ec; local
617 EC_KEY *ec; local
635 EC_KEY *ec; local
666 EC_KEY *ec; local
693 EC_KEY *ec; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBObjectStore.h70 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, ExceptionCode& ec) { return openCursor(context, static_cast<IDBKeyRange*>(0), ec); } argument
71 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionCode& ec) { return openCursor(context, keyRange, IDBCursor::directionNext(), ec); } argument
72 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, const ScriptValue& key, ExceptionCode& ec) { return openCursor(context, key, IDBCursor::directionNext(), ec); } argument
73 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> range, const String& direction, ExceptionCode& ec) { return openCursor(context, range, direction, IDBDatabaseBackendInterface::NormalTask, ec); } argument
85 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext* context, const String& name, const String& keyPath, const Dictionary& options, ExceptionCode& ec) { return createIndex(context, name, IDBKeyPath(keyPath), options, ec); } argument
86 createIndex(ScriptExecutionContext* context, const String& name, const Vector<String>& keyPath, const Dictionary& options, ExceptionCode& ec) argument
93 count(ScriptExecutionContext* context, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DPerformanceUserTiming.cpp102 void UserTiming::mark(const String& markName, ExceptionCode& ec) argument
104 ec = 0;
106 ec = SYNTAX_ERR;
119 double UserTiming::findExistingMarkStartTime(const String& markName, ExceptionCode& ec) argument
121 ec = 0;
129 ec = INVALID_ACCESS_ERR;
135 ec = SYNTAX_ERR;
139 void UserTiming::measure(const String& measureName, const String& startMark, const String& endMark, ExceptionCode& ec) argument
148 startTime = findExistingMarkStartTime(startMark, ec);
149 if (ec)
[all...]
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_pkey_ec.rb128 ec = OpenSSL::TestUtils::TEST_KEY_EC_P256V1
129 der = ec.to_der
137 ec = OpenSSL::TestUtils::TEST_KEY_EC_P256V1
138 pem = ec.to_pem
146 ec = OpenSSL::TestUtils::TEST_KEY_EC_P256V1
147 ec2 = OpenSSL::PKey::EC.new(ec.group)
148 ec2.public_key = ec.public_key
157 ec = OpenSSL::TestUtils::TEST_KEY_EC_P256V1
158 ec2 = OpenSSL::PKey::EC.new(ec.group)
159 ec2.public_key = ec
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtztest.cpp239 UErrorCode ec = U_ZERO_ERROR; local
241 UBool startsInDST = tz.inDaylightTime(min, ec);
242 if (failure(ec, "TimeZone::inDaylightTime")) return;
243 if (tz.inDaylightTime(max, ec) == startsInDST) {
248 if (failure(ec, "TimeZone::inDaylightTime")) return;
251 if (tz.inDaylightTime(mid, ec) == startsInDST) {
256 if (failure(ec, "TimeZone::inDaylightTime")) return;
368 UErrorCode ec = U_ZERO_ERROR; local
429 s_length = s->count(ec);
433 *buf += *s->snext(ec);
528 UErrorCode ec = U_ZERO_ERROR; local
733 UErrorCode ec = U_ZERO_ERROR; local
1692 UErrorCode ec = U_ZERO_ERROR; local
1800 UErrorCode ec = U_ZERO_ERROR; local
2021 UErrorCode ec = U_ZERO_ERROR; local
2109 TimeZone::getCanonicalID(UnicodeString(data[i].id), canonicalID, isSystemID, ec); local
[all...]
H A Dtranstst.cpp210 UErrorCode ec = U_ZERO_ERROR; local
211 StringEnumeration* avail = Transliterator::getAvailableIDs(ec);
212 assertSuccess("getAvailableIDs()", ec);
216 avail->count(ec) == n);
217 assertSuccess("count()", ec);
220 const UnicodeString& id = *avail->snext(ec);
221 if (!assertSuccess("snext()", ec) ||
284 assertTrue("snext()==NULL", avail->snext(ec)==NULL);
285 assertSuccess("snext()", ec);
849 UErrorCode ec local
1369 UErrorCode ec = U_ZERO_ERROR; local
2103 UErrorCode ec = U_ZERO_ERROR; local
2207 UErrorCode ec = U_ZERO_ERROR; local
2232 UErrorCode ec = U_ZERO_ERROR; local
2260 UErrorCode ec = U_ZERO_ERROR; local
2289 UErrorCode ec = U_ZERO_ERROR; local
2343 UErrorCode ec = U_ZERO_ERROR; local
2385 UErrorCode ec = U_ZERO_ERROR; local
2483 UErrorCode ec = U_ZERO_ERROR; local
2887 UErrorCode ec = U_ZERO_ERROR; local
2912 UErrorCode ec = U_ZERO_ERROR; local
2939 UErrorCode ec = U_ZERO_ERROR; local
2960 UErrorCode ec = U_ZERO_ERROR; local
2998 UErrorCode ec = U_ZERO_ERROR; local
3017 UErrorCode ec = U_ZERO_ERROR; local
3035 UErrorCode ec = U_ZERO_ERROR; local
3087 UErrorCode ec = U_ZERO_ERROR; local
3176 UErrorCode ec = U_ZERO_ERROR; local
3202 UErrorCode ec; local
3404 UErrorCode ec = U_ZERO_ERROR; local
3496 _trans(const UnicodeString& id, const UnicodeString& src, UnicodeString& result, UErrorCode ec) argument
3520 UErrorCode ec = U_ZERO_ERROR; local
3596 UErrorCode ec = U_ZERO_ERROR; local
3638 UErrorCode ec = U_ZERO_ERROR; local
3664 UErrorCode ec = U_ZERO_ERROR; local
3695 UErrorCode ec = U_ZERO_ERROR; local
3763 UErrorCode ec = U_ZERO_ERROR; local
3925 UErrorCode ec = U_ZERO_ERROR; local
3974 UErrorCode ec = U_ZERO_ERROR; local
4675 UErrorCode ec = U_ZERO_ERROR; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioContext.cpp108 PassRefPtr<AudioContext> AudioContext::create(Document* document, ExceptionCode& ec) argument
110 UNUSED_PARAM(ec);
327 PassRefPtr<AudioBuffer> AudioContext::createBuffer(unsigned numberOfChannels, size_t numberOfFrames, float sampleRate, ExceptionCode& ec) argument
331 ec = SYNTAX_ERR;
338 PassRefPtr<AudioBuffer> AudioContext::createBuffer(ArrayBuffer* arrayBuffer, bool mixToMono, ExceptionCode& ec) argument
342 ec = SYNTAX_ERR;
348 ec = SYNTAX_ERR;
355 void AudioContext::decodeAudioData(ArrayBuffer* audioData, PassRefPtr<AudioBufferCallback> successCallback, PassRefPtr<AudioBufferCallback> errorCallback, ExceptionCode& ec) argument
358 ec = SYNTAX_ERR;
378 PassRefPtr<MediaElementAudioSourceNode> AudioContext::createMediaElementSource(HTMLMediaElement* mediaElement, ExceptionCode& ec) argument
405 createMediaStreamSource(MediaStream* mediaStream, ExceptionCode& ec) argument
448 createScriptProcessor(size_t bufferSize, ExceptionCode& ec) argument
454 createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, ExceptionCode& ec) argument
460 createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, size_t numberOfOutputChannels, ExceptionCode& ec) argument
524 createDelay(ExceptionCode& ec) argument
530 createDelay(double maxDelayTime, ExceptionCode& ec) argument
540 createChannelSplitter(ExceptionCode& ec) argument
546 createChannelSplitter(size_t numberOfOutputs, ExceptionCode& ec) argument
561 createChannelMerger(ExceptionCode& ec) argument
567 createChannelMerger(size_t numberOfInputs, ExceptionCode& ec) argument
596 createWaveTable(Float32Array* real, Float32Array* imag, ExceptionCode& ec) argument
[all...]
H A DAudioNode.cpp125 void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionCode& ec) argument
131 ec = SYNTAX_ERR;
137 ec = INDEX_SIZE_ERR;
142 ec = INDEX_SIZE_ERR;
147 ec = SYNTAX_ERR;
159 void AudioNode::connect(AudioParam* param, unsigned outputIndex, ExceptionCode& ec) argument
165 ec = SYNTAX_ERR;
170 ec = INDEX_SIZE_ERR;
175 ec = SYNTAX_ERR;
183 void AudioNode::disconnect(unsigned outputIndex, ExceptionCode& ec) argument
203 setChannelCount(unsigned long channelCount, ExceptionCode& ec) argument
232 setChannelCountMode(const String& mode, ExceptionCode& ec) argument
264 setChannelInterpretation(const String& interpretation, ExceptionCode& ec) argument
[all...]
H A DAnalyserNode.cpp75 void AnalyserNode::setFftSize(unsigned size, ExceptionCode& ec) argument
78 ec = NOT_SUPPORTED_ERR;
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DExceptionHandlers.mm38 void raiseDOMException(ExceptionCode ec)
40 ASSERT(ec);
42 ExceptionCodeDescription description(ec);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSGroupingRule.cpp60 unsigned CSSGroupingRule::insertRule(const String& ruleString, unsigned index, ExceptionCode& ec) argument
66 ec = INDEX_SIZE_ERR;
75 ec = SYNTAX_ERR;
87 ec = HIERARCHY_REQUEST_ERR;
98 void CSSGroupingRule::deleteRule(unsigned index, ExceptionCode& ec) argument
105 ec = INDEX_SIZE_ERR;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DShadowRoot.cpp88 PassRefPtr<Node> ShadowRoot::cloneNode(bool, ExceptionCode& ec) argument
90 ec = DATA_CLONE_ERR;
99 void ShadowRoot::setInnerHTML(const String& markup, ExceptionCode& ec) argument
102 ec = INVALID_ACCESS_ERR;
106 if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, host(), AllowScriptingContent, ec))
107 replaceChildrenWithFragment(this, fragment.release(), ec);
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/GObject/
H A DWebKitDOMTestTypedefs.cpp109 WebCore::ExceptionCode ec = 0; local
110 coreSelf->setAttrWithSetterException((g_value_get_long(value)), ec);
118 WebCore::ExceptionCode ec = 0; local
119 coreSelf->setStringAttrWithSetterException(WTF::String::fromUTF8(g_value_get_string(value)), ec);
146 WebCore::ExceptionCode ec = 0; local
147 g_value_set_long(value, coreSelf->attrWithGetterException(ec));
155 WebCore::ExceptionCode ec = 0; local
156 g_value_take_string(value, convertToUTF8String(coreSelf->stringAttrWithGetterException(ec)));
297 WebCore::ExceptionCode ec = 0; local
298 RefPtr<WebCore::DOMString[]> gobjectResult = WTF::getPtr(item->stringArrayFunction(convertedValues, ec));
315 WebCore::ExceptionCode ec = 0; local
331 WebCore::ExceptionCode ec = 0; local
386 WebCore::ExceptionCode ec = 0; local
421 WebCore::ExceptionCode ec = 0; local
436 WebCore::ExceptionCode ec = 0; local
471 WebCore::ExceptionCode ec = 0; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/shadow/
H A DMediaControlsBlackBerry.cpp647 ExceptionCode ec; local
651 embedPanel->appendChild(playButton.release(), ec, AttachLazily);
652 if (ec)
659 timelineContainer->appendChild(timeline.release(), ec, AttachLazily);
660 if (ec)
667 timeDisplayContainer->appendChild(currentTimeDisplay.release(), ec, AttachLazily);
668 if (ec)
673 timeDisplayContainer->appendChild(timeRemainingDisplay.release(), ec, AttachLazily);
674 if (ec)
678 timelineContainer->appendChild(timeDisplayContainer.release(), ec, AttachLazil
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLElement.cpp345 void HTMLElement::setInnerHTML(const String& html, ExceptionCode& ec) argument
347 if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(html, this, AllowScriptingContent, ec)) {
353 replaceChildrenWithFragment(container, fragment.release(), ec);
357 static void mergeWithNextTextNode(PassRefPtr<Node> node, ExceptionCode& ec) argument
366 textNode->appendData(textNext->data(), ec);
367 if (ec)
370 textNext->remove(ec);
373 void HTMLElement::setOuterHTML(const String& html, ExceptionCode& ec) argument
377 ec = NO_MODIFICATION_ALLOWED_ERR;
384 RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(html, parent.get(), AllowScriptingContent, ec);
397 textToFragment(const String& text, ExceptionCode& ec) argument
430 setInnerText(const String& text, ExceptionCode& ec) argument
478 setOuterText(const String &text, ExceptionCode& ec) argument
523 insertAdjacent(const String& where, Node* newChild, ExceptionCode& ec) argument
553 insertAdjacentElement(const String& where, Element* newChild, ExceptionCode& ec) argument
567 contextElementForInsertion(const String& where, Element* element, ExceptionCode& ec) argument
584 insertAdjacentHTML(const String& where, const String& markup, ExceptionCode& ec) argument
595 insertAdjacentText(const String& where, const String& text, ExceptionCode& ec) argument
662 setContentEditable(const String& enabled, ExceptionCode& ec) argument
972 setItemValue(const String& value, ExceptionCode& ec) argument
998 setItemValueText(const String& value, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dustrenum.cpp186 UErrorCode* ec)
188 return THIS(en)->count(*ec);
197 UErrorCode* ec)
199 return THIS(en)->unext(resultLength, *ec);
208 UErrorCode* ec)
210 return THIS(en)->next(resultLength, *ec);
218 UErrorCode* ec)
220 THIS(en)->reset(*ec);
245 uenum_openFromStringEnumeration(icu::StringEnumeration* adopted, UErrorCode* ec) { argument
247 if (U_SUCCESS(*ec)
185 ustrenum_count(UEnumeration* en, UErrorCode* ec) argument
195 ustrenum_unext(UEnumeration* en, int32_t* resultLength, UErrorCode* ec) argument
206 ustrenum_next(UEnumeration* en, int32_t* resultLength, UErrorCode* ec) argument
217 ustrenum_reset(UEnumeration* en, UErrorCode* ec) argument
342 uenum_openCharStringsEnumeration(const char* const strings[], int32_t count, UErrorCode* ec) argument
361 uenum_openUCharStringsEnumeration(const UChar* const strings[], int32_t count, UErrorCode* ec) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/com_err/
H A Dlex.l61 ec { return EC; }
/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Dtest_nist2.in82 ec=
120 ec=1
128 ec=1
136 exit $ec
/macosx-10.9.5/Heimdal-323.92.1/tests/apple/
H A Dcheck-apple-lkdc.in249 ec=0
254 { ec=1 ; eval "${testfailed}"; }
260 { ec=1 ; eval "${testfailed}"; }
262 { ec=1 ; eval "${testfailed}"; }
265 (${kklist} -l | grep ${u}) >/dev/null || { ec=1 ; eval "${testfailed}"; }
266 (${kklist} -l | grep ${u2}) >/dev/null || { ec=1 ; eval "${testfailed}"; }
269 (${kklist} | grep ${u2}) >/dev/null || { ec=1 ; eval "${testfailed}"; }
272 (${kklist} | grep ${u2}) >/dev/null || { ec=1 ; eval "${testfailed}"; }
279 { ec=1; eval "${testfailed}"; }
281 ${kgetcred} host/${r}@${r} || { ec
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DDOMFileSystemSync.cpp155 PassRefPtr<File> DOMFileSystemSync::createFile(const FileEntrySync* fileEntry, ExceptionCode& ec) argument
157 ec = 0;
162 ec = FileException::ABORT_ERR;
166 ec = result->m_code;
238 PassRefPtr<FileWriterSync> DOMFileSystemSync::createWriter(const FileEntrySync* fileEntry, ExceptionCode& ec) argument
241 ec = 0;
251 ec = FileException::ABORT_ERR;
256 ec = FileException::ErrorCodeToExceptionCode(errorCallback->error()->code());
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DRTCIceCandidate.cpp44 PassRefPtr<RTCIceCandidate> RTCIceCandidate::create(const Dictionary& dictionary, ExceptionCode& ec) argument
49 ec = TYPE_MISMATCH_ERR;
/macosx-10.9.5/WebCore-7537.78.1/Modules/quota/
H A DStorageErrorCallback.h53 static PassOwnPtr<CallbackTask> create(PassRefPtr<StorageErrorCallback> callback, ExceptionCode ec) argument
55 return adoptPtr(new CallbackTask(callback, ec));

Completed in 282 milliseconds

1234567891011>>