/external/webkit/Source/WebCore/html/ |
TimeRanges.cpp | 50 float TimeRanges::start(unsigned index, ExceptionCode& ec) const 53 ec = INDEX_SIZE_ERR; 59 float TimeRanges::end(unsigned index, ExceptionCode& ec) const 62 ec = INDEX_SIZE_ERR;
|
DateTimeLocalInputType.cpp | 62 void DateTimeLocalInputType::setValueAsDate(double value, ExceptionCode& ec) const 65 InputType::setValueAsDate(value, ec);
|
HTMLFrameOwnerElement.cpp | 98 SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionCode& ec) const 104 ec = NOT_SUPPORTED_ERR;
|
HTMLSummaryElement.cpp | 55 ExceptionCode ec = 0; local 56 ensureShadowRoot()->appendChild(DetailsMarkerControl::create(document()), ec, true);
|
/external/webkit/Source/WebCore/storage/ |
StorageArea.h | 53 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
|
IDBObjectStoreBackendImpl.cpp | 84 void IDBObjectStoreBackendImpl::get(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) 90 ec = IDBDatabaseException::NOT_ALLOWED_ERR; 121 void IDBObjectStoreBackendImpl::put(PassRefPtr<SerializedScriptValue> prpValue, PassRefPtr<IDBKey> prpKey, PutMode putMode, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) 124 ec = IDBDatabaseException::READ_ONLY_ERR; 136 ec = IDBDatabaseException::NOT_ALLOWED_ERR; 272 void IDBObjectStoreBackendImpl::deleteFunction(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) 275 ec = IDBDatabaseException::READ_ONLY_ERR; 284 ec = IDBDatabaseException::NOT_ALLOWED_ERR; 307 void IDBObjectStoreBackendImpl::clear(PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) 310 ec = IDBDatabaseException::READ_ONLY_ERR [all...] |
IDBCursor.h | 59 void continueFunction(ExceptionCode& ec) { continueFunction(0, ec); }
|
IDBTransaction.h | 80 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); }
|
/external/llvm/lib/Support/ |
PathV2.cpp | 617 if (error_code ec = current_path(current_dir)) return ec; 660 if (error_code ec = fs::exists(parent, parent_exists)) return ec; 663 if (error_code ec = create_directories(parent, existed)) return ec; 683 if (error_code ec = status(path, st)) 684 return ec; 695 if (error_code ec = status(path, st)) 696 return ec; [all...] |
/external/icu4c/i18n/ |
ucal.cpp | 32 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) { 34 if (ec!=NULL && U_SUCCESS(*ec)) { 43 *ec = U_MEMORY_ALLOCATION_ERROR; 51 const int32_t* rawOffset, UErrorCode* ec) { 53 zoneType, region, rawOffset, *ec), ec); 57 ucal_openTimeZones(UErrorCode* ec) { 58 return uenum_openFromStringEnumeration(TimeZone::createEnumeration(), ec); 62 ucal_openCountryTimeZones(const char* country, UErrorCode* ec) { [all...] |
msgfmt.cpp | 200 void formatAndAppend(const Format* formatter, const Formattable& arg, UErrorCode& ec) { 202 formatter->format(arg, s, ec); 203 if (U_SUCCESS(ec)) { 304 UErrorCode ec = U_ZERO_ERROR; local 305 copyObjects(that, ec); 306 if (U_FAILURE(ec)) { 369 UErrorCode ec = U_ZERO_ERROR; local 370 copyObjects(that, ec); 371 if (U_FAILURE(ec)) { 400 UErrorCode ec = U_ZERO_ERROR local 1380 UErrorCode ec = U_ZERO_ERROR; local [all...] |
ucurr.cpp | 152 _findMetaData(const UChar* currency, UErrorCode& ec) { 155 if (U_SUCCESS(ec)) { 156 ec = U_ILLEGAL_ARGUMENT_ERROR; 164 UResourceBundle* currencyData = ures_openDirect(U_ICUDATA_CURR, CURRENCY_DATA, &ec); 165 UResourceBundle* currencyMeta = ures_getByKey(currencyData, CURRENCY_META, currencyData, &ec); 167 if (U_FAILURE(ec)) { 179 rb = ures_getByKey(currencyMeta,DEFAULT_META, NULL, &ec); 180 if (U_FAILURE(ec)) { 189 const int32_t *data = ures_getIntVector(rb, &len, &ec); 190 if (U_FAILURE(ec) || len != 2) 802 UErrorCode ec = U_ZERO_ERROR; local 1431 ChoiceFormat f(UnicodeString(TRUE, currname, len), ec); local [all...] |
/external/webkit/Source/WebCore/editing/ |
TextCheckingHelper.cpp | 41 ExceptionCode ec = 0; local 42 RefPtr<Range> paragraphRange = range->cloneRange(ec); 94 int TextCheckingParagraph::offsetTo(const Position& position, ExceptionCode& ec) const 98 range->setEnd(position.containerNode(), position.computeOffsetInContainerNode(), ec); 99 if (ec) 115 ExceptionCode ec = 0; local 116 m_offsetAsRange = Range::create(paragraphRange()->startContainer(ec)->document(), paragraphRange()->startPosition(), checkingRange()->startPosition()); 208 ExceptionCode ec = 0; 209 misspellingRange->startContainer(ec)->document()->markers()->addMarker(misspellingRange.get(), DocumentMarker::Spelling); 210 ASSERT(!ec); 231 ExceptionCode ec = 0; local 379 ExceptionCode ec = 0; local 514 ExceptionCode ec; local [all...] |
/external/webkit/Source/WebCore/html/canvas/ |
WebGLRenderingContext.cpp | 618 void WebGLRenderingContext::activeTexture(GC3Denum texture, ExceptionCode& ec) 620 UNUSED_PARAM(ec); 632 void WebGLRenderingContext::attachShader(WebGLProgram* program, WebGLShader* shader, ExceptionCode& ec) 634 UNUSED_PARAM(ec); 646 void WebGLRenderingContext::bindAttribLocation(WebGLProgram* program, GC3Duint index, const String& name, ExceptionCode& ec) 648 UNUSED_PARAM(ec); 672 void WebGLRenderingContext::bindBuffer(GC3Denum target, WebGLBuffer* buffer, ExceptionCode& ec) 674 UNUSED_PARAM(ec); 699 void WebGLRenderingContext::bindFramebuffer(GC3Denum target, WebGLFramebuffer* buffer, ExceptionCode& ec) 701 UNUSED_PARAM(ec); [all...] |
OESVertexArrayObject.cpp | 88 void OESVertexArrayObject::bindVertexArrayOES(WebGLVertexArrayObjectOES* arrayObject, ExceptionCode& ec) 90 UNUSED_PARAM(ec);
|
/external/webkit/Source/WebCore/dom/ |
ContainerNode.cpp | 86 ExceptionCode ec = 0; local 90 RefPtr<Node> child = document()->adoptNode(children[i].release(), ec); 91 ASSERT(!ec); 103 bool ContainerNode::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) 109 ec = 0; 113 return appendChild(newChild, ec, shouldLazyAttach); 116 checkAddChild(newChild.get(), ec); 117 if (ec) 122 ec = NOT_FOUND_ERR; 142 oldParent->removeChild(child, ec); 812 ExceptionCode ec = 0; local [all...] |
/external/webkit/Source/WebCore/css/ |
CSSPrimitiveValue.cpp | 356 void CSSPrimitiveValue::setFloatValue(unsigned short, double, ExceptionCode& ec) 361 ec = NO_MODIFICATION_ALLOWED_ERR; 410 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType, ExceptionCode& ec) const 415 ec = INVALID_ACCESS_ERR; 419 ec = 0; 501 void CSSPrimitiveValue::setStringValue(unsigned short, const String&, ExceptionCode& ec) 506 ec = NO_MODIFICATION_ALLOWED_ERR; 509 String CSSPrimitiveValue::getStringValue(ExceptionCode& ec) const 511 ec = 0; 520 ec = INVALID_ACCESS_ERR [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
ECKeyPairGenerator.java | 13 import org.bouncycastle.math.ec.ECConstants; 14 import org.bouncycastle.math.ec.ECPoint; 32 * Given the domain parameters this routine generates an EC key
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/ |
ECParameterSpec.java | 3 import org.bouncycastle.math.ec.ECCurve; 4 import org.bouncycastle.math.ec.ECPoint;
|
/external/llvm/lib/AsmParser/ |
Parser.cpp | 46 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), File)) { 48 "Could not open input file: " + ec.message());
|
/external/llvm/utils/FileUpdate/ |
FileUpdate.cpp | 48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), In)) { 50 << InputFilename << "': " << ec.message() << '\n';
|
/external/openssl/crypto/asn1/ |
d2i_pu.c | 72 #include <openssl/ec.h> 120 if (!o2i_ECPublicKey(&(ret->pkey.ec),
|
/external/webkit/Source/WebCore/page/ |
FrameActionScheduler.cpp | 46 ExceptionCode ec = 0; local 48 m_eventTarget->dispatchEvent(m_event, ec);
|
/external/webkit/Source/WebKit/chromium/src/ |
StorageInfoChromium.cpp | 52 void fireStorageInfoErrorCallback(PassRefPtr<StorageInfoErrorCallback> errorCallback, ExceptionCode ec) 56 getExceptionCodeDescription(ec, description);
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebInspector.idl | 37 uuid(68159FF1-9037-45ec-9992-B2E455CF39F3),
|