HomeSort by relevance Sort by last modified time
    Searched defs:ec (Results 76 - 100 of 357) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/html/
HTMLTitleElement.cpp 90 ExceptionCode ec = 0; local
94 static_cast<Text*>(firstChild())->setData(value, ec);
104 appendChild(document()->createTextNode(valueCopy.impl()), ec);
PluginDocument.cpp 70 ExceptionCode ec; local
72 document()->appendChild(rootElement, ec);
85 rootElement->appendChild(body, ec);
103 body->appendChild(embedElement, ec);
ValidationMessage.cpp 86 ExceptionCode ec = 0; local
89 m_bubbleMessage->appendChild(HTMLBRElement::create(doc), ec); local
90 m_bubbleMessage->appendChild(Text::create(doc, lines[i]), ec); local
93 bold->setInnerText(lines[i], ec);
94 m_bubbleMessage->appendChild(bold.release(), ec);
132 ExceptionCode ec = 0; local
133 host->ensureShadowRoot()->appendChild(m_bubble.get(), ec);
136 clipper->appendChild(ElementWithPseudoId::create(doc, "-webkit-validation-bubble-arrow"), ec); local
137 m_bubble->appendChild(clipper.release(), ec);
139 m_bubble->appendChild(m_bubbleMessage, ec);
160 ExceptionCode ec; local
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDOMStorageResource.cpp 108 ExceptionCode ec = 0; local
109 bool isLocalStorage = (storage->frame()->domWindow()->localStorage(ec) == storage && !ec);
  /external/webkit/Source/WebCore/svg/
SVGDocument.cpp 54 ExceptionCode ec = 0; local
55 RefPtr<SVGZoomEvent> event = static_pointer_cast<SVGZoomEvent>(createEvent("SVGZoomEvents", ec));
59 rootElement()->dispatchEvent(event.release(), ec);
64 ExceptionCode ec = 0; local
65 RefPtr<Event> event = createEvent("SVGEvents", ec);
67 rootElement()->dispatchEvent(event.release(), ec);
SVGMarkerElement.cpp 102 ExceptionCode ec = 0; local
103 angle.setValueAsString(attr->value(), ec);
  /external/webkit/Source/WebCore/webaudio/
AudioBuffer.cpp 79 ExceptionCode ec; local
80 channelDataArray->setRange(bus->channel(i)->data(), m_length, 0, ec);
102 ExceptionCode ec; local
103 getChannelData(i)->zeroRange(0, length(), ec);
  /external/webkit/Source/WebKit/chromium/src/
WebIDBCursorImpl.cpp 70 void WebIDBCursorImpl::update(const WebSerializedScriptValue& value, WebIDBCallbacks* callbacks, WebExceptionCode& ec)
72 m_idbCursorBackend->update(value, IDBCallbacksProxy::create(callbacks), ec);
75 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, WebExceptionCode& ec)
77 m_idbCursorBackend->continueFunction(key, IDBCallbacksProxy::create(callbacks), ec);
80 void WebIDBCursorImpl::deleteFunction(WebIDBCallbacks* callbacks, WebExceptionCode& ec)
82 m_idbCursorBackend->deleteFunction(IDBCallbacksProxy::create(callbacks), ec); local
WebIDBObjectStoreImpl.cpp 70 void WebIDBObjectStoreImpl::get(const WebIDBKey& key, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
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)
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)
82 m_objectStore->deleteFunction(key, IDBCallbacksProxy::create(callbacks), transaction.getIDBTransactionBackendInterface(), ec);
85 void WebIDBObjectStoreImpl::clear(WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
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)
92 RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, transaction.getIDBTransactionBackendInterface(), ec);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/src/
condition_variable.cpp 40 int ec = pthread_cond_wait(&__cv_, lk.mutex()->native_handle()); local
41 if (ec)
42 __throw_system_error(ec, "condition_variable wait failed");
70 int ec = pthread_cond_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); local
71 if (ec != 0 && ec != ETIMEDOUT)
72 __throw_system_error(ec, "condition_variable timed_wait failed");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java 165 ECPrivateKey ec = ECPrivateKey.getInstance(keyInfo.parsePrivateKey()); local
166 BigInteger d = ec.getKey();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
EC5Util.java 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
13 import org.bouncycastle.math.ec.ECCurve;
21 // TODO: the Sun EC implementation doesn't currently handle the seed properly
48 EllipticCurve ec)
50 ECField field = ec.getField();
51 BigInteger a = ec.getA();
52 BigInteger b = ec.getB();
108 public static org.bouncycastle.math.ec.ECPoint convertPoint(
116 public static org.bouncycastle.math.ec.ECPoint convertPoint(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WTauNafMultiplier.java 1 package org.bouncycastle.math.ec;
12 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
41 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
73 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
  /external/icu4c/common/
uvectr64.cpp 71 void UVector64::assign(const UVector64& other, UErrorCode &ec) {
72 if (ensureCapacity(other.count, ec)) {
197 UErrorCode ec = U_ZERO_ERROR; local
198 if (!ensureCapacity(newSize, ec)) {
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 83 error_code ec; local
88 ec);
89 if (ec) {
117 error_code ec; local
120 ec = applyMemoryGroupPermissions(CodeMem,
122 if (ec) {
124 *ErrMsg = ec.message();
130 ec = applyMemoryGroupPermissions(RODataMem,
132 if (ec) {
134 *ErrMsg = ec.message()
148 error_code ec; local
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSCSSStyleDeclarationCustom.cpp 189 ExceptionCode ec = 0; local
190 impl()->setProperty(prop, propValue, ec);
191 setDOMException(exec, ec);
JSHTMLCanvasElementCustom.cpp 95 ExceptionCode ec = 0; local
108 result = jsString(exec, canvas->toDataURL(type, qualityPtr, ec));
109 setDOMException(exec, ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ArrayBufferViewCustom.h 179 ExceptionCode ec = 0; local
180 impl->set(src, offset, ec);
181 V8Proxy::setDOMException(ec);
V8HTMLOptionsCollectionCustom.cpp 65 ExceptionCode ec = 0; local
67 imp->add(option, ec);
77 ec = TYPE_MISMATCH_ERR;
79 imp->add(option, index, ec);
82 if (ec != 0)
83 V8Proxy::setDOMException(ec);
102 ExceptionCode ec = 0; local
105 ec = INDEX_SIZE_ERR;
111 if (!ec)
112 imp->setLength(value->Uint32Value(), ec);
    [all...]
V8WorkerContextCustom.cpp 105 ExceptionCode ec = 0; local
106 workerContext->importScripts(urls, ec);
108 if (ec)
109 return throwError(ec);
  /external/webkit/Source/WebCore/css/
CSSImportRule.cpp 96 ExceptionCode ec; local
97 m_styleSheet->deleteRule(0, ec);
  /external/webkit/Source/WebCore/html/canvas/
TypedArrayBase.h 40 void set(TypedArrayBase<T>* array, unsigned offset, ExceptionCode& ec)
42 setImpl(array, offset * sizeof(T), ec);
45 void setRange(const T* data, size_t dataLength, unsigned offset, ExceptionCode& ec)
47 setRangeImpl(reinterpret_cast<const char*>(data), dataLength * sizeof(T), offset * sizeof(T), ec); local
50 void zeroRange(unsigned offset, size_t length, ExceptionCode& ec)
52 zeroRangeImpl(offset * sizeof(T), length * sizeof(T), ec); local
  /external/webkit/Source/WebCore/page/
FrameActionScheduler.cpp 46 ExceptionCode ec = 0; local
48 m_eventTarget->dispatchEvent(m_event, ec);
  /external/webkit/Source/WebKit/win/
DOMCSSClasses.cpp 94 WebCore::ExceptionCode ec; local
95 m_style->setCssText(cssTextString, ec);
  /frameworks/compile/libbcc/lib/Core/
Source.cpp 92 llvm::error_code ec = llvm::MemoryBuffer::getFile(pPath, input_data); local
93 if (ec != llvm::error_code::success()) {
95 ec.message().c_str());
118 llvm::error_code ec = local
121 if (ec != llvm::error_code::success()) {
123 pFd, ec.message().c_str());

Completed in 443 milliseconds

1 2 34 5 6 7 8 91011>>