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

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/editing/
SplitTextNodeCommand.cpp 57 ExceptionCode ec = 0;
58 String prefixText = m_text2->substringData(0, m_offset, ec);
78 ExceptionCode ec = 0; local
79 m_text2->insertData(0, prefixText, ec);
80 ASSERT(!ec);
83 m_text1->remove(ec);
100 ExceptionCode ec = 0; local
101 m_text2->parentNode()->insertBefore(m_text1.get(), m_text2.get(), ec);
102 if (ec)
104 m_text2->deleteData(0, m_offset, ec);
    [all...]
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/Source/WebCore/svg/
SVGLengthList.cpp 34 ExceptionCode ec = 0; local
49 length.setValueAsString(valueString, ec);
50 if (ec)
  /external/webkit/Source/WebCore/wml/
WMLFieldSetElement.cpp 63 ExceptionCode ec = 0; local
64 appendChild(m_insertedLegendElement, ec);
65 ASSERT(ec == 0);
68 m_insertedLegendElement->appendChild(document()->createTextNode(title), ec); local
69 ASSERT(ec == 0);
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
ErrorCodeEnum.pass.cpp 40 std::error_code ec; local
41 ec = two;
42 assert(ec.value() == 2);
43 assert(ec.category() == std::generic_category());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECAlgorithms.java 1 package org.bouncycastle.math.ec;
WNafPreCompInfo.java 1 package org.bouncycastle.math.ec;
12 * {@link org.bouncycastle.math.ec.multiplier.WNafMultiplier.multiply()
20 * {@link org.bouncycastle.math.ec.multiplier.WNafMultiplier.multiply()
  /external/icu4c/test/cintltst/
cposxtst.c 39 UErrorCode ec = U_ZERO_ERROR; local
58 const char *path = loadTestData(&ec);
60 if (U_FAILURE(ec)) {
61 log_data_err("FAIL: loadTestData => %s\n", u_errorName(ec));
65 catd = u_catopen(path, "mc", &ec);
66 if (U_FAILURE(ec)) {
67 log_data_err("FAIL: u_catopen => %s\n", u_errorName(ec));
82 ec = U_ZERO_ERROR;
83 ustr = u_catgets(catd, set_num, msg_num, FAIL, &len, &ec);
85 err = u_errorName(ec);
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSArrayBufferViewHelper.h 54 ExceptionCode ec = 0; local
55 impl->set(array, offset, ec);
56 setDOMException(exec, ec);
JSDOMStringMapCustom.cpp 71 ExceptionCode ec = 0;
72 m_impl->deleteItem(identifierToString(propertyName), ec); local
73 setDOMException(exec, ec);
95 ExceptionCode ec = 0;
96 impl()->setItem(identifierToString(propertyName), stringValue, ec); local
97 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 181 ExceptionCode ec = 0; local
182 impl()->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
183 setDOMException(exec, ec);
205 ExceptionCode ec = 0; local
206 impl()->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
207 setDOMException(exec, ec);
JSOptionConstructor.cpp 63 ExceptionCode ec = 0; local
64 RefPtr<HTMLOptionElement> element = HTMLOptionElement::createForJSConstructor(document, data, value, defaultSelected, selected, ec);
65 if (ec) {
66 setDOMException(exec, ec);
JSStorageCustom.cpp 93 ExceptionCode ec = 0;
94 impl()->setItem(identifierToString(propertyName), stringValue, ec); local
95 setDOMException(exec, ec);
JSWorkerContextCustom.cpp 116 ExceptionCode ec = 0; local
118 impl()->importScripts(urls, ec);
119 setDOMException(exec, ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DOMStringMapCustom.cpp 75 ExceptionCode ec = 0;
76 V8DOMStringMap::toNative(info.Holder())->deleteItem(toWebCoreString(name), ec); local
77 if (ec)
78 throwError(ec);
91 ExceptionCode ec = 0;
92 V8DOMStringMap::toNative(info.Holder())->setItem(toWebCoreString(name), toWebCoreString(value), ec); local
93 if (ec)
94 return throwError(ec);
V8DirectoryEntrySyncCustom.cpp 50 static bool extractBooleanValue(const v8::Handle<v8::Object>& object, const char* name, ExceptionCode& ec) {
51 ec = 0;
57 ec = TYPE_MISMATCH_ERR;
65 static PassRefPtr<WebKitFlags> getFlags(const v8::Local<v8::Value>& arg, ExceptionCode& ec)
67 ec = 0;
78 ec = TYPE_MISMATCH_ERR;
83 bool isCreate = extractBooleanValue(object, "create", ec);
84 if (ec)
86 bool isExclusive = extractBooleanValue(object, "exclusive", ec);
87 if (ec)
101 ExceptionCode ec = 0; local
120 ExceptionCode ec = 0; local
    [all...]
V8HTMLOptionElementConstructor.cpp 77 ExceptionCode ec = 0; local
78 RefPtr<HTMLOptionElement> option = HTMLOptionElement::createForJSConstructor(document, data, value, defaultSelected, selected, ec);
80 if (ec)
81 throwError(ec);
V8MessagePortCustom.cpp 58 ExceptionCode ec = 0; local
59 messagePort->postMessage(message.release(), &portArray, ec);
60 return throwError(ec);
V8NodeCustom.cpp 66 ExceptionCode ec = 0; local
69 bool success = imp->insertBefore(newChild, refChild, ec, true);
70 if (ec) {
71 V8Proxy::setDOMException(ec);
85 ExceptionCode ec = 0; local
88 bool success = imp->replaceChild(newChild, oldChild, ec, true);
89 if (ec) {
90 V8Proxy::setDOMException(ec);
103 ExceptionCode ec = 0; local
105 bool success = imp->removeChild(oldChild, ec);
121 ExceptionCode ec = 0; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLDetailsElement.cpp 102 ExceptionCode ec = 0; local
103 defaultSummary->appendChild(Text::create(document(), defaultDetailsSummaryText()), ec);
104 ensureShadowRoot()->appendChild(defaultSummary, ec, true);
HTMLKeygenElement.cpp 75 ExceptionCode ec = 0; local
78 select->appendChild(option, ec);
79 option->appendChild(Text::create(document, keys[i]), ec); local
82 ensureShadowRoot()->appendChild(select, ec);
HTMLOutputElement.cpp 133 ExceptionCode ec; local
135 setTextContent(value, ec);
HTMLSummaryElement.cpp 55 ExceptionCode ec = 0; local
56 ensureShadowRoot()->appendChild(DetailsMarkerControl::create(document()), ec, true);

Completed in 263 milliseconds

1 23 4 5 6 7 8 91011>>