HomeSort by relevance Sort by last modified time
    Searched refs:ec (Results 176 - 200 of 811) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu4c/i18n/
olsontz.cpp 115 * @param ec input-output error code
120 UErrorCode& ec) :
125 if ((top == NULL || res == NULL) && U_SUCCESS(ec)) {
126 ec = U_ILLEGAL_ARGUMENT_ERROR;
128 if (U_SUCCESS(ec)) {
138 ures_getByKey(res, kTRANSPRE32, &r, &ec);
139 transitionTimesPre32 = ures_getIntVector(&r, &len, &ec);
141 if (ec == U_MISSING_RESOURCE_ERROR) {
145 ec = U_ZERO_ERROR;
146 } else if (U_SUCCESS(ec) && (len < 0 || len > 0x7FFF || (len & 1) != 0) /* len must be even */)
428 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
currfmt.cpp 23 CurrencyFormat::CurrencyFormat(const Locale& locale, UErrorCode& ec) :
26 fmt = NumberFormat::createCurrencyInstance(locale, ec);
57 UErrorCode& ec) const
59 return fmt->format(obj, appendTo, pos, ec);
  /external/webkit/Source/WebCore/dom/
XMLDocumentParser.cpp 200 ExceptionCode ec = 0;
201 static_cast<Text*>(m_currentNode)->appendData(toString(m_bufferedText.data(), m_bufferedText.size()), ec); local
267 ExceptionCode ec = 0; local
269 reportElement->appendChild(h3.get(), ec);
270 h3->appendChild(doc->createTextNode("This page contains the following errors:"), ec);
273 reportElement->appendChild(fixed.get(), ec);
275 fixed->appendChild(doc->createTextNode(errorMessages), ec);
278 reportElement->appendChild(h3.get(), ec);
279 h3->appendChild(doc->createTextNode("Below is a rendering of the page up to the first error."), ec);
295 ExceptionCode ec = 0
    [all...]
NodeIterator.h 57 PassRefPtr<Node> nextNode(ExceptionCode& ec) { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); }
58 PassRefPtr<Node> previousNode(ExceptionCode& ec) { return previousNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
ECPublicKeyParameters.java 3 import org.bouncycastle.math.ec.ECPoint;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECPublicKeySpec.java 3 import org.bouncycastle.math.ec.ECPoint;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECConstants.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()
ZTauElement.java 1 package org.bouncycastle.math.ec;
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCNO, GCNO_Buff)) {
49 errs() << InputGCNO << ": " << ec.message() << "\n";
60 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCDA, GCDA_Buff)) {
61 errs() << InputGCDA << ": " << ec.message() << "\n";
  /external/webkit/Source/WebCore/bindings/js/
JSSharedWorkerCustom.cpp 71 ExceptionCode ec = 0; local
72 RefPtr<SharedWorker> worker = SharedWorker::create(ustringToString(scriptURL), ustringToString(name), window->document(), ec);
73 if (ec) {
74 setDOMException(exec, ec);
JSWebSocketCustom.cpp 62 ExceptionCode ec = 0; local
64 webSocket->connect(url, ec);
69 webSocket->connect(url, protocol, ec);
71 setDOMException(exec, ec);
JSDataViewCustom.cpp 69 ExceptionCode ec = 0;
84 result = jsNumber(imp->getInt8(byteOffset, ec));
87 result = jsNumber(imp->getUint8(byteOffset, ec));
91 double value = (type == AccessDataViewMemberAsFloat32) ? imp->getFloat32(byteOffset, littleEndian, ec) : imp->getFloat64(byteOffset, littleEndian, ec);
98 setDOMException(exec, ec);
126 ExceptionCode ec = 0;
136 imp->setInt8(byteOffset, static_cast<int8_t>(value), ec);
139 imp->setUint8(byteOffset, static_cast<uint8_t>(value), ec);
145 setDOMException(exec, ec);
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
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...]
V8SharedWorkerCustom.cpp 76 ExceptionCode ec = 0;
77 RefPtr<SharedWorker> obj = SharedWorker::create(toWebCoreString(scriptUrl), name, context, ec);
78 if (ec)
79 return throwError(ec);
  /external/webkit/Source/WebCore/editing/
AppendNodeCommand.cpp 62 ExceptionCode ec;
63 m_parent->appendChild(m_node.get(), ec);
78 ExceptionCode ec; local
79 m_node->remove(ec);
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);
  /external/webkit/Source/WebCore/loader/appcache/
DOMApplicationCache.cpp 73 void DOMApplicationCache::update(ExceptionCode& ec)
77 ec = INVALID_STATE_ERR;
80 void DOMApplicationCache::swapCache(ExceptionCode& ec)
84 ec = INVALID_STATE_ERR;
  /external/webkit/Source/WebCore/platform/chromium/
DataTransferItemsChromium.cpp 67 void DataTransferItemsChromium::deleteItem(unsigned long index, ExceptionCode& ec)
70 ec = INVALID_STATE_ERR;
88 void DataTransferItemsChromium::add(const String& data, const String& type, ExceptionCode& ec)
96 ec = INVALID_STATE_ERR;
  /external/webkit/Source/WebCore/svg/
SVGAltGlyphElement.cpp 71 void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionCode& ec)
73 ec = NO_MODIFICATION_ALLOWED_ERR;
81 void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionCode& ec)
83 ec = NO_MODIFICATION_ALLOWED_ERR;
  /external/webkit/Source/WebCore/svg/properties/
SVGTransformListPropertyTearOff.h 41 PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionCode& ec)
44 ec = TYPE_MISMATCH_ERR;
51 PassRefPtr<SVGPropertyTearOff<SVGTransform> > consolidate(ExceptionCode& ec)
53 if (!canAlterList(ec))
  /external/webkit/Source/WebCore/html/
HTMLProgressElement.cpp 99 void HTMLProgressElement::setValue(double value, ExceptionCode& ec)
102 ec = NOT_SUPPORTED_ERR;
117 void HTMLProgressElement::setMax(double max, ExceptionCode& ec)
120 ec = NOT_SUPPORTED_ERR;
144 ExceptionCode ec = 0; local
145 bar->appendChild(m_value, ec);
146 ensureShadowRoot()->appendChild(bar, ec);
HTMLTableSectionElement.cpp 63 PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionCode& ec)
69 ec = INDEX_SIZE_ERR; // per the DOM
73 appendChild(row, ec);
80 insertBefore(row, n, ec);
86 void HTMLTableSectionElement::deleteRow(int index, ExceptionCode& ec)
94 HTMLElement::removeChild(row.get(), ec);
96 ec = INDEX_SIZE_ERR;
  /external/webkit/Source/WebCore/notifications/
Notification.cpp 49 Notification::Notification(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
57 ec = SECURITY_ERR;
62 ec = SYNTAX_ERR;
69 Notification::Notification(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
78 ec = SECURITY_ERR;
83 ec = SYNTAX_ERR;
96 PassRefPtr<Notification> Notification::create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
98 return adoptRef(new Notification(url, context, ec, provider));
101 PassRefPtr<Notification> Notification::create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
103 return adoptRef(new Notification(contents, context, ec, provider))
    [all...]

Completed in 3012 milliseconds

1 2 3 4 5 6 78 91011>>