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

12 3 4 5 6 7 8 9

  /external/webkit/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 55 ExceptionCode ec = 0; local
57 parentNode->insertBefore(newNode, nodeToReplace, ec);
58 ASSERT(!ec);
63 newNode->appendChild(child, ec);
64 ASSERT(!ec);
69 parentNode->removeChild(nodeToReplace, ec);
70 ASSERT(!ec);
SplitElementCommand.cpp 53 ExceptionCode ec = 0; local
58 parent->insertBefore(m_element1.get(), m_element2.get(), ec);
59 if (ec)
64 m_element1->appendChild(children[i], ec);
85 ExceptionCode ec = 0; local
89 m_element2->insertBefore(children[i].get(), refChild.get(), ec);
91 m_element1->remove(ec);
SplitTextNodeCommand.cpp 56 ExceptionCode ec = 0;
58 String prefixText = m_text2->substringData(0, m_offset, ec);
66 parent->insertBefore(prefixTextNode.get(), m_text2.get(), ec);
67 if (ec)
70 m_text2->deleteData(0, m_offset, ec);
84 ExceptionCode ec = 0; local
85 m_text2->insertData(0, prefixText, ec);
86 if (ec)
90 prefixTextNode->remove(ec);
WrapContentsInDummySpanCommand.cpp 47 ExceptionCode ec; local
51 m_dummySpan->appendChild(children[i].release(), ec);
53 m_element->appendChild(m_dummySpan.get(), ec);
74 ExceptionCode ec; local
78 m_element->appendChild(children[i].release(), ec);
80 m_dummySpan->remove(ec);
SmartReplaceICU.cpp 56 UErrorCode ec = U_ZERO_ERROR; local
58 smartSet = uset_openPattern(whitespaceAndNewline.characters(), whitespaceAndNewline.length(), &ec);
59 ASSERT(U_SUCCESS(ec));
80 UErrorCode ec = U_ZERO_ERROR; local
82 USet* icuPunct = uset_openPattern(punctuationClass.characters(), punctuationClass.length(), &ec);
83 ASSERT(U_SUCCESS(ec));
  /external/webkit/WebCore/svg/
SVGPointList.cpp 42 ExceptionCode ec = 0; local
47 FloatPoint point = getItem(i, ec);
48 ASSERT(ec == 0);
SVGStringList.cpp 41 ExceptionCode ec = 0; local
45 appendItem(String(""), ec); // Create empty string...
51 ExceptionCode ec = 0; local
52 clear(ec);
62 appendItem(String(start, ptr - start), ec); local
SVGComponentTransferFunctionElement.cpp 120 ExceptionCode ec = 0; local
123 func.tableValues.append(numbers->getItem(i, ec));
SVGDocument.cpp 58 ExceptionCode ec = 0; local
59 RefPtr<SVGZoomEvent> event = static_pointer_cast<SVGZoomEvent>(createEvent("SVGZoomEvents", ec));
63 rootElement()->dispatchEvent(event.release(), ec);
68 ExceptionCode ec = 0; local
69 RefPtr<Event> event = createEvent("SVGEvents", ec);
71 rootElement()->dispatchEvent(event.release(), ec);
SVGFEColorMatrixElement.cpp 94 ExceptionCode ec = 0; local
97 _values.append(numbers->getItem(i, ec));
  /external/webkit/WebCore/wml/
WMLFieldSetElement.cpp 58 ExceptionCode ec = 0; local
59 appendChild(m_insertedLegendElement, ec);
60 ASSERT(ec == 0);
63 m_insertedLegendElement->appendChild(document()->createTextNode(title), ec); local
64 ASSERT(ec == 0);
  /external/icu4c/test/cintltst/
cposxtst.c 37 UErrorCode ec = U_ZERO_ERROR; local
56 const char *path = loadTestData(&ec);
58 if (U_FAILURE(ec)) {
59 log_data_err("FAIL: loadTestData => %s\n", u_errorName(ec));
63 catd = u_catopen(path, "mc", &ec);
64 if (U_FAILURE(ec)) {
65 log_data_err("FAIL: u_catopen => %s\n", u_errorName(ec));
80 ec = U_ZERO_ERROR;
81 ustr = u_catgets(catd, set_num, msg_num, FAIL, &len, &ec);
83 err = u_errorName(ec);
    [all...]
  /external/webkit/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);
JSHTMLOptionsCollectionCustom.cpp 47 ExceptionCode ec = 0; local
52 ec = INDEX_SIZE_ERR;
58 if (!ec)
59 imp->setLength(newLength, ec);
60 setDOMException(exec, ec);
74 ExceptionCode ec = 0; local
76 imp->add(option, ec);
83 ec = TYPE_MISMATCH_ERR;
85 imp->add(option, index, ec);
87 setDOMException(exec, ec);
    [all...]
JSHistoryCustom.cpp 182 ExceptionCode ec = 0; local
183 impl()->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
184 setDOMException(exec, ec);
206 ExceptionCode ec = 0; local
207 impl()->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
208 setDOMException(exec, ec);
JSSVGPathSegListCustom.cpp 41 ExceptionCode ec = 0; local
44 list->clear(ec);
46 setDOMException(exec, ec);
54 ExceptionCode ec = 0; local
59 SVGPathSeg* obj = WTF::getPtr(list->initialize(newItem, ec));
63 setDOMException(exec, ec);
71 ExceptionCode ec = 0; local
81 SVGPathSeg* obj = WTF::getPtr(list->getItem(index, ec));
85 setDOMException(exec, ec);
91 ExceptionCode ec = 0 local
113 ExceptionCode ec = 0; local
135 ExceptionCode ec = 0; local
158 ExceptionCode ec = 0; local
    [all...]
JSWebSocketConstructor.cpp 72 ExceptionCode ec = 0; local
74 webSocket->connect(url, ec);
79 webSocket->connect(url, protocol, ec);
81 setDOMException(exec, ec);
  /external/webkit/WebCore/bindings/v8/custom/
V8ElementCustom.cpp 61 ExceptionCode ec = 0; local
62 V8BindingElement::setAttribute(V8BindingState::Only(), element, name, value, ec); local
63 if (ec)
64 return throwError(ec);
78 ExceptionCode ec = 0; local
79 RefPtr<Attr> result = V8BindingElement::setAttributeNode(V8BindingState::Only(), element, newAttr, ec);
80 if (ec)
81 throwError(ec);
94 ExceptionCode ec = 0; local
95 V8BindingElement::setAttributeNS(V8BindingState::Only(), element, namespaceURI, qualifiedName, value, ec); local
111 ExceptionCode ec = 0; local
    [all...]
V8HistoryCustom.cpp 59 ExceptionCode ec = 0; local
61 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
62 return throwError(ec);
80 ExceptionCode ec = 0; local
82 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
83 return throwError(ec);
V8NotificationCenterCustom.cpp 86 ExceptionCode ec = 0; local
88 RefPtr<Notification> notification = notificationCenter->createHTMLNotification(url, ec);
90 if (ec)
91 return throwError(ec);
101 ExceptionCode ec = 0; local
102 RefPtr<Notification> notification = notificationCenter->createNotification(toWebCoreString(args[0]), toWebCoreString(args[1]), toWebCoreString(args[2]), ec);
104 if (ec)
105 return throwError(ec);
V8SQLTransactionCustom.cpp 120 ExceptionCode ec = 0; local
121 transaction->executeSQL(statement, sqlValues, callback, errorCallback, ec);
122 V8Proxy::setDOMException(ec);
V8SVGMatrixCustom.cpp 64 ExceptionCode ec = 0; local
68 ec = SVGException::SVG_MATRIX_NOT_INVERTABLE;
70 if (ec != 0) {
71 V8Proxy::setDOMException(ec);
83 ExceptionCode ec = 0; local
89 ec = SVGException::SVG_INVALID_VALUE_ERR;
91 if (ec != 0) {
92 V8Proxy::setDOMException(ec);
V8WebGLArrayCustom.h 208 ExceptionCode ec = 0; local
209 array->set(src, offset, ec);
210 V8Proxy::setDOMException(ec);
V8WebSocketCustom.cpp 103 ExceptionCode ec = 0; local
106 webSocket->connect(url, ec);
112 webSocket->connect(url, toWebCoreString(protocol), ec);
114 if (ec)
115 return throwError(ec);
132 ExceptionCode ec = 0; local
138 ret = webSocket->send(msg, ec);
140 if (ec)
141 return throwError(ec);
  /external/webkit/WebCore/html/
HTMLTitleElement.cpp 81 ExceptionCode ec = 0; local
85 static_cast<Text*>(firstChild())->setData(value, ec);
90 appendChild(document()->createTextNode(value.impl()), ec);

Completed in 945 milliseconds

12 3 4 5 6 7 8 9