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

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DedicatedWorkerContextCustom.cpp 58 ExceptionCode ec = 0; local
59 workerContext->postMessage(message.release(), &portArray, ec);
60 return throwError(ec);
V8DataViewCustom.cpp 63 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...]
V8HistoryCustom.cpp 62 ExceptionCode ec = 0; local
64 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
65 return throwError(ec);
86 ExceptionCode ec = 0; local
88 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
89 return throwError(ec);
V8NotificationCenterCustom.cpp 54 ExceptionCode ec = 0; local
56 RefPtr<Notification> notification = notificationCenter->createHTMLNotification(url, ec);
58 if (ec)
59 return throwError(ec);
70 ExceptionCode ec = 0; local
71 RefPtr<Notification> notification = notificationCenter->createNotification(toWebCoreString(args[0]), toWebCoreString(args[1]), toWebCoreString(args[2]), ec);
73 if (ec)
74 return throwError(ec);
V8SQLTransactionCustom.cpp 111 ExceptionCode ec = 0; local
112 transaction->executeSQL(statement, sqlValues, callback, errorCallback, ec);
113 V8Proxy::setDOMException(ec);
V8SQLTransactionSyncCustom.cpp 93 ExceptionCode ec = 0; local
94 v8::Handle<v8::Value> result = toV8(transaction->executeSQL(statement, sqlValues, ec));
95 V8Proxy::setDOMException(ec);
V8SVGLengthCustom.cpp 47 ExceptionCode ec = 0; local
48 float value = imp.value(wrapper->contextElement(), ec);
49 if (UNLIKELY(ec)) {
50 V8Proxy::setDOMException(ec);
71 ExceptionCode ec = 0; local
72 imp.setValue(static_cast<float>(value->NumberValue()), wrapper->contextElement(), ec); local
73 if (UNLIKELY(ec))
74 V8Proxy::setDOMException(ec);
92 ExceptionCode ec = 0; local
94 imp.convertToSpecifiedUnits(unitType, wrapper->contextElement(), ec);
    [all...]
V8WebSocketCustom.cpp 72 ExceptionCode ec = 0; local
75 webSocket->connect(url, ec);
81 webSocket->connect(url, toWebCoreString(protocol), ec);
83 if (ec)
84 return throwError(ec);
V8WorkerCustom.cpp 75 ExceptionCode ec = 0;
76 RefPtr<Worker> obj = Worker::create(toWebCoreString(scriptUrl), context, ec);
77 if (ec)
78 return throwError(ec);
103 ExceptionCode ec = 0; local
104 worker->postMessage(message.release(), &portArray, ec);
105 return throwError(ec);
  /external/webkit/Source/WebCore/editing/
InsertIntoTextNodeCommand.cpp 58 ExceptionCode ec; local
59 m_node->insertData(m_offset, m_text, ec);
74 ExceptionCode ec; local
75 m_node->deleteData(m_offset, m_text.length(), ec);
InsertNodeBeforeCommand.cpp 53 ExceptionCode ec;
54 parent->insertBefore(m_insertChild.get(), m_refChild.get(), ec);
69 ExceptionCode ec; local
70 m_insertChild->remove(ec);
RemoveNodeCommand.cpp 51 ExceptionCode ec; local
52 m_node->remove(ec);
62 ExceptionCode ec;
63 parent->insertBefore(m_node.get(), refChild.get(), ec);
AppendNodeCommand.cpp 62 ExceptionCode ec;
63 m_parent->appendChild(m_node.get(), ec);
78 ExceptionCode ec; local
79 m_node->remove(ec);
MergeIdenticalElementsCommand.cpp 50 ExceptionCode ec = 0; local
58 m_element2->insertBefore(children[i].release(), m_atChild.get(), ec);
60 m_element1->remove(ec);
74 ExceptionCode ec = 0;
76 parent->insertBefore(m_element1.get(), m_element2.get(), ec);
77 if (ec)
86 m_element1->appendChild(children[i].release(), ec);
ReplaceNodeWithSpanCommand.cpp 54 ExceptionCode ec = 0; local
56 parentNode->insertBefore(newNode, nodeToReplace, ec);
57 ASSERT(!ec);
62 newNode->appendChild(child, ec);
63 ASSERT(!ec);
68 parentNode->removeChild(nodeToReplace, ec);
69 ASSERT(!ec);
SplitElementCommand.cpp 54 ExceptionCode ec = 0; local
59 parent->insertBefore(m_element1.get(), m_element2.get(), ec);
60 if (ec)
64 m_element2->removeAttribute(HTMLNames::idAttr, ec);
65 ASSERT(!ec);
69 m_element1->appendChild(children[i], ec);
90 ExceptionCode ec = 0; local
94 m_element2->insertBefore(children[i].get(), refChild.get(), ec);
100 m_element1->remove(ec);
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.cpp 62 ExceptionCode ec = 0; local
63 Storage* storage = frames[i]->domWindow()->sessionStorage(ec);
64 if (!ec)
79 ExceptionCode ec = 0; local
80 Storage* storage = frames[i]->domWindow()->localStorage(ec);
81 if (!ec)
  /external/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherImpl.cpp 75 ExceptionCode ec = 0; local
76 Storage* storage = frames[i]->domWindow()->localStorage(ec);
77 if (!ec)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECConstants.java 1 package org.bouncycastle.math.ec;
FpNafMultiplier.java 1 package org.bouncycastle.math.ec;
12 * @see org.bouncycastle.math.ec.ECMultiplier#multiply(org.bouncycastle.math.ec.ECPoint, java.math.BigInteger)
  /external/llvm/lib/Object/
Binary.cpp 52 error_code ec; local
55 OwningPtr<Binary> ret(new Archive(scopedSource.take(), ec));
56 if (ec) return ec;
88 OwningPtr<Binary> ret(new COFFObjectFile(scopedSource.take(), ec));
89 if (ec) return ec;
100 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Path, File))
101 return ec;
  /external/webkit/Source/WebCore/bindings/js/
JSDOMApplicationCacheCustom.cpp 54 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);
JSSQLTransactionCustom.cpp 112 ExceptionCode ec = 0; local
113 m_impl->executeSQL(sqlStatement, sqlValues, callback.release(), errorCallback.release(), ec);
114 setDOMException(exec, ec);
JSSQLTransactionSyncCustom.cpp 89 ExceptionCode ec = 0; local
90 JSValue result = toJS(exec, globalObject(), WTF::getPtr(m_impl->executeSQL(sqlStatement, sqlValues, ec)));
91 setDOMException(exec, ec);
  /external/webkit/Source/WebCore/css/
StyleMedia.cpp 69 ExceptionCode ec = 0; local
70 media->setMediaText(query, ec);
71 if (ec)

Completed in 270 milliseconds

12 3 4 5 6 7 8 91011>>