Searched refs:ec (Results 26 - 50 of 677) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/lib/Object/
H A DObject.cpp46 error_code ec; local
47 unwrap(SI)->increment(ec);
48 if (ec) report_fatal_error("LLVMMoveToNextSection failed: " + ec.message());
53 if (error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
54 report_fatal_error(ec.message());
73 error_code ec; local
74 unwrap(SI)->increment(ec);
75 if (ec) report_fatal_error("LLVMMoveToNextSymbol failed: " + ec
131 error_code ec; local
[all...]
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_econv.rb5 def check_ec(edst, esrc, eres, dst, src, ec, off, len, opts=nil)
6 res = ec.primitive_convert(src, dst, off, len, opts)
15 def assert_econv(converted, eres, obuf_bytesize, ec, consumed, rest, opts=nil)
16 ec = Encoding::Converter.new(*ec) if Array === ec
19 ret = ec.primitive_convert(i, o, 0, obuf_bytesize, opts)
24 def assert_errinfo(e_res, e_enc1, e_enc2, e_error_bytes, e_readagain_bytes, ec)
28 ec.primitive_errinfo)
116 ec
[all...]
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DFileReaderSync.cpp50 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec) argument
53 ec = NOT_FOUND_ERR;
58 startLoading(scriptExecutionContext, loader, blob, ec);
63 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec) argument
66 ec = NOT_FOUND_ERR;
71 startLoading(scriptExecutionContext, loader, blob, ec);
75 String FileReaderSync::readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, const String& encoding, ExceptionCode& ec) argument
78 ec = NOT_FOUND_ERR;
84 startLoading(scriptExecutionContext, loader, blob, ec);
88 String FileReaderSync::readAsDataURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec) argument
101 startLoading(ScriptExecutionContext* scriptExecutionContext, FileReaderLoader& loader, Blob* blob, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/properties/
H A DSVGStaticListPropertyTearOff.h46 void clear(ExceptionCode& ec) argument
48 Base::clearValues(ec);
51 ListItemType initialize(const ListItemType& newItem, ExceptionCode& ec) argument
53 return Base::initializeValues(newItem, ec);
56 ListItemType getItem(unsigned index, ExceptionCode& ec) argument
58 return Base::getItemValues(index, ec);
61 ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
63 return Base::insertItemBeforeValues(newItem, index, ec);
66 ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
68 return Base::replaceItemValues(newItem, index, ec);
71 removeItem(unsigned index, ExceptionCode& ec) argument
76 appendItem(const ListItemType& newItem, ExceptionCode& ec) argument
[all...]
H A DSVGListProperty.h53 bool canAlterList(ExceptionCode& ec) const
56 ec = NO_MODIFICATION_ALLOWED_ERR;
101 void clearValues(ExceptionCode& ec) argument
103 if (!canAlterList(ec))
110 void clearValuesAndWrappers(ExceptionCode& ec) argument
112 if (!canAlterList(ec))
127 ListItemType initializeValues(const ListItemType& newItem, ExceptionCode& ec) argument
129 if (!canAlterList(ec))
143 PassListItemTearOff initializeValuesAndWrappers(PassListItemTearOff passNewItem, ExceptionCode& ec) argument
146 if (!canAlterList(ec))
173 canGetItem(unsigned index, ExceptionCode& ec) argument
183 getItemValues(unsigned index, ExceptionCode& ec) argument
192 getItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, unsigned index, ExceptionCode& ec) argument
214 insertItemBeforeValues(const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
237 insertItemBeforeValuesAndWrappers(PassListItemTearOff passNewItem, unsigned index, ExceptionCode& ec) argument
272 canReplaceItem(unsigned index, ExceptionCode& ec) argument
285 replaceItemValues(const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
310 replaceItemValuesAndWrappers(PassListItemTearOff passNewItem, unsigned index, ExceptionCode& ec) argument
351 canRemoveItem(unsigned index, ExceptionCode& ec) argument
364 removeItemValues(unsigned index, ExceptionCode& ec) argument
376 removeItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, unsigned index, ExceptionCode& ec) argument
398 appendItemValues(const ListItemType& newItem, ExceptionCode& ec) argument
413 appendItemValuesAndWrappers(PassListItemTearOff passNewItem, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBIndex.cpp59 PassRefPtr<IDBRequest> IDBIndex::openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, const String& directionString, ExceptionCode& ec) argument
63 ec = IDBDatabaseException::InvalidStateError;
67 ec = IDBDatabaseException::TransactionInactiveError;
70 IndexedDB::CursorDirection direction = IDBCursor::stringToDirection(directionString, ec);
71 if (ec)
80 PassRefPtr<IDBRequest> IDBIndex::openCursor(ScriptExecutionContext* context, const ScriptValue& key, const String& direction, ExceptionCode& ec) argument
83 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::only(context, key, ec);
84 if (ec)
86 return openCursor(context, keyRange.release(), direction, ec);
89 PassRefPtr<IDBRequest> IDBIndex::count(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionCode& ec) argument
105 count(ScriptExecutionContext* context, const ScriptValue& key, ExceptionCode& ec) argument
114 openKeyCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, const String& directionString, ExceptionCode& ec) argument
135 openKeyCursor(ScriptExecutionContext* context, const ScriptValue& key, const String& direction, ExceptionCode& ec) argument
144 get(ScriptExecutionContext* context, const ScriptValue& key, ExceptionCode& ec) argument
153 get(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionCode& ec) argument
174 getKey(ScriptExecutionContext* context, const ScriptValue& key, ExceptionCode& ec) argument
184 getKey(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionCode& ec) argument
[all...]
H A DIDBCursor.cpp124 PassRefPtr<IDBRequest> IDBCursor::update(ScriptState* state, ScriptValue& value, ExceptionCode& ec) argument
129 ec = IDBDatabaseException::InvalidStateError;
133 ec = IDBDatabaseException::TransactionInactiveError;
137 ec = IDBDatabaseException::ReadOnlyError;
147 ec = IDBDatabaseException::DataError;
152 return objectStore->put(IDBDatabaseBackendInterface::CursorUpdate, IDBAny::create(this), state, value, m_currentPrimaryKey, ec);
155 void IDBCursor::advance(unsigned long count, ExceptionCode& ec) argument
157 ec = 0;
160 ec = IDBDatabaseException::InvalidStateError;
165 ec
180 continueFunction(ScriptExecutionContext* context, const ScriptValue& keyValue, ExceptionCode& ec) argument
187 continueFunction(PassRefPtr<IDBKey> key, ExceptionCode& ec) argument
229 deleteFunction(ScriptExecutionContext* context, ExceptionCode& ec) argument
300 stringToDirection(const String& directionString, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcposxtst.c39 UErrorCode ec = U_ZERO_ERROR; local
58 const char *path = loadTestData(&ec);
60 if (U_FAILURE(ec)) {
61 log_data_err("FAIL: loadTestData => %s\n", u_errorName(ec));
65 catd = u_catopen(path, "mc", &ec);
66 if (U_FAILURE(ec)) {
67 log_data_err("FAIL: u_catopen => %s\n", u_errorName(ec));
82 ec = U_ZERO_ERROR;
83 ustr = u_catgets(catd, set_num, msg_num, FAIL, &len, &ec);
85 err = u_errorName(ec);
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMRange.mm71 WebCore::ExceptionCode ec = 0;
72 _impl->setStart(WebKit::toWebCoreNode(node), offset, ec);
78 WebCore::ExceptionCode ec = 0;
79 _impl->setEnd(WebKit::toWebCoreNode(node), offset, ec);
85 WebCore::ExceptionCode ec = 0;
86 _impl->collapse(toStart, ec);
92 WebCore::ExceptionCode ec = 0;
93 _impl->selectNode(WebKit::toWebCoreNode(node), ec);
99 WebCore::ExceptionCode ec = 0;
100 _impl->selectNodeContents(WebKit::toWebCoreNode(node), ec);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseSync.cpp77 void DatabaseSync::changeVersion(const String& oldVersion, const String& newVersion, PassRefPtr<SQLTransactionSyncCallback> changeVersionCallback, ExceptionCode& ec) argument
83 ec = SQLException::DATABASE_ERR;
88 if ((ec = transaction->begin())) {
96 ec = SQLException::UNKNOWN_ERR;
102 ec = SQLException::VERSION_ERR;
106 if ((ec = transaction->execute())) {
113 ec = SQLException::UNKNOWN_ERR;
117 if ((ec = transaction->commit())) {
127 void DatabaseSync::transaction(PassRefPtr<SQLTransactionSyncCallback> callback, ExceptionCode& ec) argument
129 runTransaction(callback, false, ec);
132 readTransaction(PassRefPtr<SQLTransactionSyncCallback> callback, ExceptionCode& ec) argument
137 runTransaction(PassRefPtr<SQLTransactionSyncCallback> callback, bool readOnly, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/storage/
H A DStorage.cpp61 unsigned Storage::length(ExceptionCode& ec) const
63 ec = 0;
65 ec = SECURITY_ERR;
75 String Storage::key(unsigned index, ExceptionCode& ec) const
78 ec = SECURITY_ERR;
88 String Storage::getItem(const String& key, ExceptionCode& ec) const
91 ec = SECURITY_ERR;
101 void Storage::setItem(const String& key, const String& value, ExceptionCode& ec) argument
104 ec = SECURITY_ERR;
109 ec
120 removeItem(const String& key, ExceptionCode& ec) argument
133 clear(ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DDataView.h47 int16_t getInt16(unsigned byteOffset, ExceptionCode& ec) { return getInt16(byteOffset, false, ec); } argument
49 uint16_t getUint16(unsigned byteOffset, ExceptionCode& ec) { return getUint16(byteOffset, false, ec); } argument
51 int32_t getInt32(unsigned byteOffset, ExceptionCode& ec) { return getInt32(byteOffset, false, ec); } argument
53 uint32_t getUint32(unsigned byteOffset, ExceptionCode& ec) { return getUint32(byteOffset, false, ec); } argument
55 float getFloat32(unsigned byteOffset, ExceptionCode& ec) { return getFloat32(byteOffset, false, ec); } argument
57 getFloat64(unsigned byteOffset, ExceptionCode& ec) argument
62 setInt16(unsigned byteOffset, int16_t value, ExceptionCode& ec) argument
64 setUint16(unsigned byteOffset, uint16_t value, ExceptionCode& ec) argument
66 setInt32(unsigned byteOffset, int32_t value, ExceptionCode& ec) argument
68 setUint32(unsigned byteOffset, uint32_t value, ExceptionCode& ec) argument
70 setFloat32(unsigned byteOffset, float value, ExceptionCode& ec) argument
72 setFloat64(unsigned byteOffset, double value, ExceptionCode& ec) argument
[all...]
H A DDataView.cpp130 T DataView::getData(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) const
133 ec = INDEX_SIZE_ERR;
145 void DataView::setData(unsigned byteOffset, T value, bool littleEndian, ExceptionCode& ec) argument
148 ec = INDEX_SIZE_ERR;
159 int8_t DataView::getInt8(unsigned byteOffset, ExceptionCode& ec) argument
161 return getData<int8_t>(byteOffset, false, ec);
164 uint8_t DataView::getUint8(unsigned byteOffset, ExceptionCode& ec) argument
166 return getData<uint8_t>(byteOffset, false, ec);
169 int16_t DataView::getInt16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
171 return getData<int16_t>(byteOffset, littleEndian, ec);
174 getUint16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
179 getInt32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
184 getUint32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
189 getFloat32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
194 getFloat64(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
199 setInt8(unsigned byteOffset, int8_t value, ExceptionCode& ec) argument
204 setUint8(unsigned byteOffset, uint8_t value, ExceptionCode& ec) argument
209 setInt16(unsigned byteOffset, short value, bool littleEndian, ExceptionCode& ec) argument
214 setUint16(unsigned byteOffset, uint16_t value, bool littleEndian, ExceptionCode& ec) argument
219 setInt32(unsigned byteOffset, int32_t value, bool littleEndian, ExceptionCode& ec) argument
224 setUint32(unsigned byteOffset, uint32_t value, bool littleEndian, ExceptionCode& ec) argument
229 setFloat32(unsigned byteOffset, float value, bool littleEndian, ExceptionCode& ec) argument
234 setFloat64(unsigned byteOffset, double value, bool littleEndian, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/tests/kdc/
H A Dleaks-kill.sh16 ec=0
32 { echo "Memory leak in $name" ; echo ""; cat leaks-log; ec=1; }
36 ec=0
39 [ "$ec" != "0" ] && { echo ""; cat leaks-log ; }
41 #[ "$ec" != "0" ] && { malloc_history $pid -all_by_size > l; }
42 #[ "$ec" != "0" ] && { env PS1=": leaks-debugger !!!! ; " bash ; }
44 [ "$ec" = "0" ] && rm leaks-log
55 exit $ec
H A Dcheck-cc.in106 ec=0
121 ${kinit} foo@${R} || { ec=1 ; eval "${testfailed}"; }
122 ${kswitch} -p foo@${R} || { ec=1 ; eval "${testfailed}"; }
123 ${klist} -l | grep foo@ >/dev/null || { ec=1 ; eval "${testfailed}"; }
127 ${kinit} -c SCC:1 foo@${R} || { ec=1 ; eval "${testfailed}"; }
128 ${kinit} -c SCC:2 bar@${R} || { ec=1 ; eval "${testfailed}"; }
130 ${kswitch} -p foo@${R} || { ec=1 ; eval "${testfailed}"; }
131 ${klist} | head -2 | grep foo@ >/dev/null || { ec=1 ; eval "${testfailed}"; }
132 ${klist} -l | grep foo@ >/dev/null || { ec=1 ; eval "${testfailed}"; }
133 ${klist} -l | grep bar@ >/dev/null || { ec
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DFileWriterSync.cpp43 void FileWriterSync::write(Blob* data, ExceptionCode& ec) argument
47 ec = 0;
49 ec = FileException::TYPE_MISMATCH_ERR;
57 ec = FileException::ErrorCodeToExceptionCode(m_error);
58 if (ec)
65 void FileWriterSync::seek(long long position, ExceptionCode& ec) argument
69 ec = 0;
73 void FileWriterSync::truncate(long long offset, ExceptionCode& ec) argument
77 ec = 0;
79 ec
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDOMCoreException.cpp66 bool DOMCoreException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) argument
69 description->code = ec;
73 size_t tableIndex = ec - INDEX_SIZE_ERR;
H A DRange.cpp130 Node* Range::startContainer(ExceptionCode& ec) const
133 ec = INVALID_STATE_ERR;
140 int Range::startOffset(ExceptionCode& ec) const
143 ec = INVALID_STATE_ERR;
150 Node* Range::endContainer(ExceptionCode& ec) const
153 ec = INVALID_STATE_ERR;
160 int Range::endOffset(ExceptionCode& ec) const
163 ec = INVALID_STATE_ERR;
170 Node* Range::commonAncestorContainer(ExceptionCode& ec) const
173 ec
213 setStart(PassRefPtr<Node> refNode, int offset, ExceptionCode& ec) argument
242 setEnd(PassRefPtr<Node> refNode, int offset, ExceptionCode& ec) argument
271 setStart(const Position& start, ExceptionCode& ec) argument
277 setEnd(const Position& end, ExceptionCode& ec) argument
283 collapse(bool toStart, ExceptionCode& ec) argument
296 isPointInRange(Node* refNode, int offset, ExceptionCode& ec) argument
460 compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, ExceptionCode& ec) argument
553 compareBoundaryPoints(const RangeBoundaryPoint& boundaryA, const RangeBoundaryPoint& boundaryB, ExceptionCode& ec) argument
560 ExceptionCode ec = 0; local
564 deleteContents(ExceptionCode& ec) argument
573 intersectsNode(Node* refNode, ExceptionCode& ec) argument
672 processContents(ActionType action, ExceptionCode& ec) argument
768 deleteCharacterData(PassRefPtr<CharacterData> data, unsigned startOffset, unsigned endOffset, ExceptionCode& ec) argument
776 processContentsBetweenOffsets(ActionType action, PassRefPtr<DocumentFragment> fragment, Node* container, unsigned startOffset, unsigned endOffset, ExceptionCode& ec) argument
850 processNodes(ActionType action, Vector<RefPtr<Node> >& nodes, PassRefPtr<Node> oldContainer, PassRefPtr<Node> newContainer, ExceptionCode& ec) argument
867 processAncestorsAndTheirSiblings(ActionType action, Node* container, ContentsProcessDirection direction, PassRefPtr<Node> passedClonedContainer, Node* commonRoot, ExceptionCode& ec) argument
922 extractContents(ExceptionCode& ec) argument
931 cloneContents(ExceptionCode& ec) argument
941 insertNode(PassRefPtr<Node> prpNewNode, ExceptionCode& ec) argument
1097 createContextualFragment(const String& markup, ExceptionCode& ec) argument
1118 detach(ExceptionCode& ec) argument
1227 setStartAfter(Node* refNode, ExceptionCode& ec) argument
1247 setEndBefore(Node* refNode, ExceptionCode& ec) argument
1267 setEndAfter(Node* refNode, ExceptionCode& ec) argument
1287 selectNode(Node* refNode, ExceptionCode& ec) argument
1352 selectNodeContents(Node* refNode, ExceptionCode& ec) argument
1394 surroundContents(PassRefPtr<Node> passNewParent, ExceptionCode& ec) argument
1487 setStartBefore(Node* refNode, ExceptionCode& ec) argument
1507 checkDeleteExtract(ExceptionCode& ec) argument
1866 expand(const String& unit, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Decdh.h39 #include <hcrypto/ec.h>
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtextfile.cpp21 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) : argument
28 if (U_FAILURE(ec) || _name == 0 || _encoding == 0) {
29 if (U_SUCCESS(ec)) {
30 ec = U_ILLEGAL_ARGUMENT_ERROR;
39 ec = U_MEMORY_ALLOCATION_ERROR;
49 const char* testDir = IntlTest::getSourceTestData(ec);
50 if (U_FAILURE(ec)) {
54 ec = U_MEMORY_ALLOCATION_ERROR;
62 ec = U_ILLEGAL_ARGUMENT_ERROR;
76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) { argument
111 readLineSkippingComments(UnicodeString& line, UErrorCode& ec, UBool trim) argument
132 setBuffer(int32_t index, char c, UErrorCode& ec) argument
[all...]
H A Dtextfile.h28 TextFile(const char* name, const char* encoding, UErrorCode& ec);
39 UBool readLine(UnicodeString& line, UErrorCode& ec);
48 UBool readLineSkippingComments(UnicodeString& line, UErrorCode& ec,
58 UBool setBuffer(int32_t index, char c, UErrorCode& ec);
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DNavigatorMediaStream.cpp49 void NavigatorMediaStream::webkitGetUserMedia(Navigator* navigator, const Dictionary& options, PassRefPtr<NavigatorUserMediaSuccessCallback> successCallback, PassRefPtr<NavigatorUserMediaErrorCallback> errorCallback, ExceptionCode& ec) argument
56 ec = NOT_SUPPORTED_ERR;
60 RefPtr<UserMediaRequest> request = UserMediaRequest::create(navigator->frame()->document(), userMedia, options, successCallback, errorCallback, ec);
62 ec = NOT_SUPPORTED_ERR;
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSCryptoCustom.cpp48 ExceptionCode ec = 0;
49 impl()->getRandomValues(arrayBufferView, ec);
51 if (ec) {
52 setDOMException(exec, ec);
H A DJSHTMLOptionsCollectionCustom.cpp43 ExceptionCode ec = 0; local
48 ec = INDEX_SIZE_ERR;
54 if (!ec)
55 imp->setLength(newLength, ec);
56 setDOMException(exec, ec);
70 ExceptionCode ec = 0; local
72 imp->add(option, ec);
77 imp->add(option, index, ec);
79 setDOMException(exec, ec);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ducurrimp.h27 icu::UnicodeString& result, UErrorCode& ec);
55 UErrorCode& ec);

Completed in 318 milliseconds

1234567891011>>