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

1234567891011>>

/external/webkit/Source/WebCore/svg/
H A DSVGColor.cpp43 void SVGColor::setRGBColor(const String& rgbColor, ExceptionCode& ec) argument
47 ec = SVGException::SVG_INVALID_VALUE_ERR;
65 void SVGColor::setRGBColorICCColor(const String& rgbColor, const String& iccColor, ExceptionCode& ec) argument
68 ec = SVGException::SVG_INVALID_VALUE_ERR;
73 setRGBColor(rgbColor, ec);
74 if (ec)
81 void SVGColor::setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, ExceptionCode& ec) argument
84 ec = SVGException::SVG_WRONG_TYPE_ERR;
95 ec = SVGException::SVG_INVALID_VALUE_ERR;
108 ec
[all...]
/external/webkit/Source/WebCore/html/canvas/
H A DDataView.h46 int16_t getInt16(unsigned byteOffset, ExceptionCode& ec) { return getInt16(byteOffset, false, ec); } argument
48 uint16_t getUint16(unsigned byteOffset, ExceptionCode& ec) { return getUint16(byteOffset, false, ec); } argument
50 int32_t getInt32(unsigned byteOffset, ExceptionCode& ec) { return getInt32(byteOffset, false, ec); } argument
52 uint32_t getUint32(unsigned byteOffset, ExceptionCode& ec) { return getUint32(byteOffset, false, ec); } argument
54 float getFloat32(unsigned byteOffset, ExceptionCode& ec) { return getFloat32(byteOffset, false, ec); } argument
56 getFloat64(unsigned byteOffset, ExceptionCode& ec) argument
61 setInt16(unsigned byteOffset, int16_t value, ExceptionCode& ec) argument
63 setUint16(unsigned byteOffset, uint16_t value, ExceptionCode& ec) argument
65 setInt32(unsigned byteOffset, int32_t value, ExceptionCode& ec) argument
67 setUint32(unsigned byteOffset, uint32_t value, ExceptionCode& ec) argument
69 setFloat32(unsigned byteOffset, float value, ExceptionCode& ec) argument
71 setFloat64(unsigned byteOffset, double value, ExceptionCode& ec) argument
[all...]
H A DDataView.cpp121 T DataView::getData(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) const
124 ec = INDEX_SIZE_ERR;
136 void DataView::setData(unsigned byteOffset, T value, bool littleEndian, ExceptionCode& ec) argument
139 ec = INDEX_SIZE_ERR;
150 int8_t DataView::getInt8(unsigned byteOffset, ExceptionCode& ec) argument
152 return getData<int8_t>(byteOffset, false, ec);
155 uint8_t DataView::getUint8(unsigned byteOffset, ExceptionCode& ec) argument
157 return getData<uint8_t>(byteOffset, false, ec);
160 int16_t DataView::getInt16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
162 return getData<int16_t>(byteOffset, littleEndian, ec);
165 getUint16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
170 getInt32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
175 getUint32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
180 getFloat32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
185 getFloat64(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) argument
190 setInt8(unsigned byteOffset, int8_t value, ExceptionCode& ec) argument
195 setUint8(unsigned byteOffset, uint8_t value, ExceptionCode& ec) argument
200 setInt16(unsigned byteOffset, short value, bool littleEndian, ExceptionCode& ec) argument
205 setUint16(unsigned byteOffset, uint16_t value, bool littleEndian, ExceptionCode& ec) argument
210 setInt32(unsigned byteOffset, int32_t value, bool littleEndian, ExceptionCode& ec) argument
215 setUint32(unsigned byteOffset, uint32_t value, bool littleEndian, ExceptionCode& ec) argument
220 setFloat32(unsigned byteOffset, float value, bool littleEndian, ExceptionCode& ec) argument
225 setFloat64(unsigned byteOffset, double value, bool littleEndian, ExceptionCode& ec) argument
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBCursorImpl.cpp70 void WebIDBCursorImpl::update(const WebSerializedScriptValue& value, WebIDBCallbacks* callbacks, WebExceptionCode& ec) argument
72 m_idbCursorBackend->update(value, IDBCallbacksProxy::create(callbacks), ec);
75 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, WebExceptionCode& ec) argument
77 m_idbCursorBackend->continueFunction(key, IDBCallbacksProxy::create(callbacks), ec);
80 void WebIDBCursorImpl::deleteFunction(WebIDBCallbacks* callbacks, WebExceptionCode& ec) argument
82 m_idbCursorBackend->deleteFunction(IDBCallbacksProxy::create(callbacks), ec); local
H A DWebIDBObjectStoreImpl.cpp70 void WebIDBObjectStoreImpl::get(const WebIDBKey& key, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
72 m_objectStore->get(key, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
75 void WebIDBObjectStoreImpl::put(const WebSerializedScriptValue& value, const WebIDBKey& key, PutMode putMode, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
77 m_objectStore->put(value, key, static_cast<IDBObjectStoreBackendInterface::PutMode>(putMode), IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
80 void WebIDBObjectStoreImpl::deleteFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
82 m_objectStore->deleteFunction(key, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
85 void WebIDBObjectStoreImpl::clear(WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
87 m_objectStore->clear(IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec); local
90 WebIDBIndex* WebIDBObjectStoreImpl::createIndex(const WebString& name, const WebString& keyPath, bool unique, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
92 RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, transaction.getIDBTransactionBackendInterface(), ec);
98 index(const WebString& name, WebExceptionCode& ec) argument
106 deleteIndex(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
111 openCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
[all...]
H A DWebIDBIndexImpl.cpp71 void WebIDBIndexImpl::openObjectCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
73 m_backend->openCursor(keyRange, direction, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
76 void WebIDBIndexImpl::openKeyCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
78 m_backend->openKeyCursor(keyRange, direction, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
81 void WebIDBIndexImpl::getObject(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
83 m_backend->get(keyRange, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
86 void WebIDBIndexImpl::getKey(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
88 m_backend->getKey(keyRange, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
/external/webkit/Source/WebCore/fileapi/
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...]
/external/webkit/Source/WebCore/dom/
H A DRange.cpp86 ExceptionCode ec = 0; local
87 setStart(startContainer, startOffset, ec);
88 ASSERT(!ec);
89 setEnd(endContainer, endOffset, ec);
90 ASSERT(!ec);
124 Node* Range::startContainer(ExceptionCode& ec) const
127 ec = INVALID_STATE_ERR;
134 int Range::startOffset(ExceptionCode& ec) const
137 ec = INVALID_STATE_ERR;
144 Node* Range::endContainer(ExceptionCode& ec) cons
195 setStart(PassRefPtr<Node> refNode, int offset, ExceptionCode& ec) argument
235 setEnd(PassRefPtr<Node> refNode, int offset, ExceptionCode& ec) argument
275 collapse(bool toStart, ExceptionCode& ec) argument
288 isPointInRange(Node* refNode, int offset, ExceptionCode& ec) argument
458 compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, ExceptionCode& ec) argument
551 compareBoundaryPoints(const RangeBoundaryPoint& boundaryA, const RangeBoundaryPoint& boundaryB, ExceptionCode& ec) argument
558 ExceptionCode ec = 0; local
562 deleteContents(ExceptionCode& ec) argument
571 intersectsNode(Node* refNode, ExceptionCode& ec) argument
667 processContents(ActionType action, ExceptionCode& ec) argument
761 deleteCharacterData(PassRefPtr<CharacterData> data, unsigned startOffset, unsigned endOffset, ExceptionCode& ec) argument
769 processContentsBetweenOffsets(ActionType action, PassRefPtr<DocumentFragment> fragment, Node* container, unsigned startOffset, unsigned endOffset, ExceptionCode& ec) argument
843 processNodes(ActionType action, Vector<RefPtr<Node> >& nodes, PassRefPtr<Node> oldContainer, PassRefPtr<Node> newContainer, ExceptionCode& ec) argument
860 processAncestorsAndTheirSiblings(ActionType action, Node* container, ContentsProcessDirection direction, PassRefPtr<Node> passedClonedContainer, Node* commonRoot, ExceptionCode& ec) argument
913 extractContents(ExceptionCode& ec) argument
922 cloneContents(ExceptionCode& ec) argument
932 insertNode(PassRefPtr<Node> prpNewNode, ExceptionCode& ec) argument
1103 detach(ExceptionCode& ec) argument
1214 setStartAfter(Node* refNode, ExceptionCode& ec) argument
1239 setEndBefore(Node* refNode, ExceptionCode& ec) argument
1264 setEndAfter(Node* refNode, ExceptionCode& ec) argument
1290 selectNode(Node* refNode, ExceptionCode& ec) argument
1355 selectNodeContents(Node* refNode, ExceptionCode& ec) argument
1397 surroundContents(PassRefPtr<Node> passNewParent, ExceptionCode& ec) argument
1490 setStartBefore(Node* refNode, ExceptionCode& ec) argument
1515 checkDeleteExtract(ExceptionCode& ec) argument
1875 expand(const String& unit, ExceptionCode& ec) argument
[all...]
/external/llvm/lib/Object/
H A DELFObjectFile.cpp26 error_code ec; local
34 return new ELFObjectFile<ELFType<support::little, 4, false> >(Object, ec);
38 return new ELFObjectFile<ELFType<support::little, 2, false> >(Object, ec);
44 return new ELFObjectFile<ELFType<support::big, 4, false> >(Object, ec);
48 return new ELFObjectFile<ELFType<support::big, 2, false> >(Object, ec);
54 return new ELFObjectFile<ELFType<support::big, 8, true> >(Object, ec);
58 return new ELFObjectFile<ELFType<support::big, 2, true> >(Object, ec);
64 return new ELFObjectFile<ELFType<support::little, 8, true> >(Object, ec);
68 return new ELFObjectFile<ELFType<support::little, 2, true> >(Object, ec);
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMApplicationCacheCustom.cpp54 ExceptionCode ec = 0; local
55 bool result = impl()->hasItem(url, ec);
56 setDOMException(exec, ec);
67 ExceptionCode ec = 0; local
68 impl()->add(url, ec);
69 setDOMException(exec, ec);
80 ExceptionCode ec = 0; local
81 impl()->remove(url, ec);
82 setDOMException(exec, ec);
/external/webkit/Source/WebCore/workers/
H A DDedicatedWorkerContext.cpp50 void DedicatedWorkerContext::postMessage(PassRefPtr<SerializedScriptValue> message, MessagePort* port, ExceptionCode& ec) argument
55 postMessage(message, &ports, ec);
58 void DedicatedWorkerContext::postMessage(PassRefPtr<SerializedScriptValue> message, ExceptionCode& ec) argument
60 postMessage(message, static_cast<MessagePortArray*>(0), ec);
63 void DedicatedWorkerContext::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionCode& ec) argument
66 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec);
67 if (ec)
72 void DedicatedWorkerContext::importScripts(const Vector<String>& urls, ExceptionCode& ec) argument
74 Base::importScripts(urls, ec);
/external/clang/test/Lexer/
H A Dnumeric-literal-trash.c7 int ec(int, int);
/external/icu4c/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);
H A Dtokiter.cpp26 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) { argument
27 if (done || U_FAILURE(ec)) {
33 if (!reader->readLineSkippingComments(line, ec)) {
41 if (!nextToken(token, ec)) {
43 if (U_FAILURE(ec)) return FALSE;
61 * @param ec input-output error code
65 UBool TokenIterator::nextToken(UnicodeString& token, UErrorCode& ec) { argument
88 ec = U_MALFORMED_UNICODE_ESCAPE;
104 ec = U_UNTERMINATED_QUOTE;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DataViewCustom.cpp63 ExceptionCode ec = 0; local
65 int8_t result = imp->getInt8(byteOffset, ec);
66 if (UNLIKELY(ec)) {
67 V8Proxy::setDOMException(ec);
80 ExceptionCode ec = 0; local
82 uint8_t result = imp->getUint8(byteOffset, ec);
83 if (UNLIKELY(ec)) {
84 V8Proxy::setDOMException(ec);
97 ExceptionCode ec = 0; local
100 imp->setInt8(byteOffset, static_cast<int8_t>(value), ec);
113 ExceptionCode ec = 0; local
[all...]
H A DV8WebKitCSSMatrixConstructor.cpp60 ExceptionCode ec = 0; local
61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec);
62 if (ec)
63 throwError(ec);
H A DV8XMLHttpRequestCustom.cpp55 ExceptionCode ec = 0; local
56 const String& text = xmlHttpRequest->responseText(ec);
57 if (ec)
58 return throwError(ec);
74 ExceptionCode ec = 0; local
75 Document* document = xmlHttpRequest->responseXML(ec);
76 if (ec) {
77 V8Proxy::setDOMException(ec);
86 ExceptionCode ec = 0; local
87 Blob* blob = xmlHttpRequest->responseBlob(ec);
101 ExceptionCode ec = 0; local
137 ExceptionCode ec = 0; local
174 ExceptionCode ec = 0; local
204 xmlHttpRequest->send(toWebCoreStringWithNullCheck(arg), ec); local
[all...]
/external/webkit/Source/WebCore/css/
H A DMediaList.cpp70 ExceptionCode ec = 0; local
71 setMediaText(media, ec);
80 if (ec)
81 setMediaText("invalid", ec);
88 ExceptionCode ec = 0; local
89 setMediaText(media, ec);
90 if (ec)
91 setMediaText("invalid", ec);
120 void MediaList::deleteMedium(const String& oldMedium, ExceptionCode& ec) argument
140 ec
174 setMediaText(const String& value, ExceptionCode& ec) argument
226 appendMedium(const String& newMedium, ExceptionCode& ec) argument
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGListProperty.h45 bool canAlterList(ExceptionCode& ec) const
48 ec = NO_MODIFICATION_ALLOWED_ERR;
56 void clearValues(PropertyType& values, ExceptionCode& ec) argument
58 if (!canAlterList(ec))
65 void clearValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, ExceptionCode& ec) argument
68 if (!canAlterList(ec))
89 ListItemType initializeValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec) argument
91 if (!canAlterList(ec))
105 PassListItemTearOff initializeValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, ExceptionCode& ec) argument
108 if (!canAlterList(ec))
138 canGetItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
148 getItemValues(PropertyType& values, unsigned index, ExceptionCode& ec) argument
157 getItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, unsigned index, ExceptionCode& ec) argument
182 insertItemBeforeValues(PropertyType& values, const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
202 insertItemBeforeValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, unsigned index, ExceptionCode& ec) argument
239 canReplaceItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
252 replaceItemValues(PropertyType& values, const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
274 replaceItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, unsigned index, ExceptionCode& ec) argument
316 canRemoveItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
329 removeItemValues(PropertyType& values, unsigned index, ExceptionCode& ec) argument
341 removeItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, unsigned index, ExceptionCode& ec) argument
365 appendItemValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec) argument
380 appendItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, ExceptionCode& ec) argument
[all...]
/external/icu4c/i18n/
H A Ducurrimp.h27 icu::UnicodeString& result, UErrorCode& ec);
55 UErrorCode& ec);
/external/icu4c/i18n/unicode/
H A Dmeasfmt.h53 * @param ec input-output error code
58 UErrorCode& ec);
63 * @param ec input-output error code
67 static MeasureFormat* U_EXPORT2 createCurrencyFormat(UErrorCode& ec);
/external/webkit/Source/WebCore/html/
H A DDOMSettableTokenList.cpp47 bool DOMSettableTokenList::contains(const AtomicString& token, ExceptionCode& ec) const
49 if (!validateToken(token, ec))
54 void DOMSettableTokenList::add(const AtomicString& token, ExceptionCode& ec) argument
56 if (!validateToken(token, ec) || m_tokens.contains(token))
70 void DOMSettableTokenList::remove(const AtomicString& token, ExceptionCode& ec) argument
72 if (!validateToken(token, ec) || !m_tokens.contains(token))
83 bool DOMSettableTokenList::toggle(const AtomicString& token, ExceptionCode& ec) argument
85 if (!validateToken(token, ec))
/external/webkit/Source/WebCore/xml/
H A DXMLSerializer.cpp29 String XMLSerializer::serializeToString(Node* node, ExceptionCode& ec) argument
40 ec = INVALID_ACCESS_ERR;
H A DXPathExpression.cpp45 PassRefPtr<XPathExpression> XPathExpression::createExpression(const String& expression, XPathNSResolver* resolver, ExceptionCode& ec) argument
50 expr->m_topExpression = parser.parseStatement(expression, resolver, ec);
62 PassRefPtr<XPathResult> XPathExpression::evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionCode& ec) argument
65 ec = NOT_SUPPORTED_ERR;
80 ec = XPathException::INVALID_EXPRESSION_ERR;
85 ec = 0;
86 result->convertTo(type, ec);
87 if (ec)

Completed in 357 milliseconds

1234567891011>>