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

<<1112131415

  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp 407 ExceptionCode ec = 0; local
408 int v = imp->attrWithGetterException(ec);
409 if (UNLIKELY(ec)) {
410 V8Proxy::setDOMException(ec);
421 ExceptionCode ec = 0; local
422 imp->setAttrWithGetterException(v, ec);
423 if (UNLIKELY(ec))
424 V8Proxy::setDOMException(ec);
440 ExceptionCode ec = 0; local
441 imp->setAttrWithSetterException(v, ec);
451 ExceptionCode ec = 0; local
465 ExceptionCode ec = 0; local
484 ExceptionCode ec = 0; local
702 ExceptionCode ec = 0; local
732 ExceptionCode ec = 0; local
765 ExceptionCode ec = 0; local
781 ExceptionCode ec = 0; local
922 ExceptionCode ec = 0; local
941 ExceptionCode ec = 0; local
    [all...]
  /external/webkit/Source/WebCore/dom/
Range.cpp 86 ExceptionCode ec = 0; local
87 setStart(startContainer, startOffset, ec);
88 ASSERT(!ec);
89 setEnd(endContainer, endOffset, ec);
90 ASSERT(!ec);
124 Node* Range::startContainer(ExceptionCode& ec) const
127 ec = INVALID_STATE_ERR;
134 int Range::startOffset(ExceptionCode& ec) const
137 ec = INVALID_STATE_ERR;
144 Node* Range::endContainer(ExceptionCode& ec) cons
558 ExceptionCode ec = 0; local
    [all...]
xml_expat_tokenizer.cpp 443 ExceptionCode ec = 0; local
444 RefPtr<Element> newElement = m_doc->createElementNS(uri, qName, ec);
450 handleElementNamespaces(newElement.get(), uri, prefix, ec);
451 if (ec) {
456 handleElementAttributes(newElement.get(), atts, ec);
457 if (ec) {
545 ExceptionCode ec = 0; local
546 static_cast<Text*>(m_currentNode)->appendData(toQString(s, len), ec); local
822 ExceptionCode ec = 0; local
823 RefPtr<Element> reportElement = doc->createElementNS(xhtmlNamespaceURI, "parsererror", ec);
849 ExceptionCode ec = 0; local
    [all...]
Element.cpp 219 void Element::removeAttribute(const QualifiedName& name, ExceptionCode& ec)
222 ec = 0;
223 m_attributeMap->removeNamedItem(name, ec);
224 if (ec == NOT_FOUND_ERR)
225 ec = 0;
231 ExceptionCode ec; local
232 setAttribute(name, value, ec);
237 ExceptionCode ec; local
238 setAttribute(name, AtomicString(cStringValue), ec);
653 void Element::setAttribute(const AtomicString& name, const AtomicString& value, ExceptionCode& ec)
1491 removeAttribute(QualifiedName(nullAtom, localName, namespaceURI), ec); local
1856 ExceptionCode ec; local
1868 ExceptionCode ec; local
    [all...]
  /external/webkit/Source/WebCore/editing/
CompositeEditCommand.cpp 690 ExceptionCode ec; local
691 paragraphElement->appendChild(createBreakElement(document()), ec);
    [all...]
ReplaceSelectionCommand.cpp 163 ExceptionCode ec = 0; local
164 editableRoot->dispatchEvent(evt, ec);
165 ASSERT(ec == 0);
219 ExceptionCode ec = 0;
220 parent->removeChild(node.get(), ec);
221 ASSERT(ec == 0);
233 ExceptionCode ec = 0;
234 parent->insertBefore(node, refNode, ec);
235 ASSERT(ec == 0);
246 ExceptionCode ec = 0 local
701 ExceptionCode ec = 0; local
1272 ExceptionCode ec = 0; local
    [all...]
SelectionController.cpp 258 ExceptionCode ec = 0; local
259 Range::CompareResults compareResult = range->compareNode(node, ec);
260 if (!ec && (compareResult == Range::NODE_BEFORE_AND_AFTER || compareResult == Range::NODE_INSIDE)) {
    [all...]
htmlediting.cpp 125 ExceptionCode ec; local
126 int result = Range::compareBoundaryPoints(nodeA, offsetA, nodeB, offsetB, ec);
550 PassRefPtr<Range> createRange(PassRefPtr<Document> document, const VisiblePosition& start, const VisiblePosition& end, ExceptionCode& ec)
552 ec = 0;
554 selectedRange->setStart(start.deepEquivalent().containerNode(), start.deepEquivalent().computeOffsetInContainerNode(), ec);
555 if (!ec)
556 selectedRange->setEnd(end.deepEquivalent().containerNode(), end.deepEquivalent().computeOffsetInContainerNode(), ec);
570 ExceptionCode ec = 0; local
571 Node* ancestor = range->commonAncestorContainer(ec);// find the cloeset common ancestor
584 extendedRange->selectNode(highestNode, ec);
923 ExceptionCode ec = 0; local
1065 ExceptionCode ec = 0; local
    [all...]
visible_units.cpp 68 ExceptionCode ec = 0; local
71 forwardsScanRange->setEndAfter(boundary, ec);
72 forwardsScanRange->setStart(end.deprecatedNode(), end.deprecatedEditingOffset(), ec);
86 searchRange->setStart(start.deprecatedNode(), start.deprecatedEditingOffset(), ec);
87 searchRange->setEnd(end.deprecatedNode(), end.deprecatedEditingOffset(), ec);
89 ASSERT(!ec);
90 if (ec)
122 Node* node = it.range()->startContainer(ec);
148 ExceptionCode ec = 0; local
151 backwardsScanRange->setEnd(start.deprecatedNode(), start.deprecatedEditingOffset(), ec);
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 813 void CanvasRenderingContext2D::arcTo(float x1, float y1, float x2, float y2, float r, ExceptionCode& ec)
815 ec = 0;
820 ec = INDEX_SIZE_ERR;
838 void CanvasRenderingContext2D::arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionCode& ec)
840 ec = 0;
845 ec = INDEX_SIZE_ERR;
1455 ExceptionCode ec; local
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 697 ExceptionCode ec = 0;
698 m_pageStyleSheet->addRule(selector, "", ec);
699 if (ec)
1213 ExceptionCode ec = 0; local
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 158 ExceptionCode ec = 0; local
159 if (!Document::parseQualifiedName(attributeName, prefix, localName, ec))
161 ASSERT(!ec);
    [all...]
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 235 ExceptionCode ec; local
236 if (!m_node->insertBefore(newChildNode->node(), refChildNode ? refChildNode->node() : 0, ec))
269 ExceptionCode ec;
270 if (!m_node->removeChild(oldChildNode->node(), ec))
435 WebCore::ExceptionCode ec = 0;
436 *result = m_node->dispatchEvent(domEvent->coreEvent(), ec) ? TRUE : FALSE;
438 WebCore::raiseOnDOMError(ec);
623 ExceptionCode ec; local
624 *result = DOMElement::createInstance(m_document->createElement(tagNameString, ec).get());
782 WebCore::ExceptionCode ec = 0 local
912 WebCore::ExceptionCode ec = 0; local
    [all...]
DOMHTMLClasses.cpp 495 WebCore::ExceptionCode ec = 0; local
496 htmlEle->setInnerText(textString, ec);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 494 Class<? extends Throwable> ec = ex.getClass(); local
497 Constructor<?>[] cs = ec.getConstructors();// public ctors only
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/smack/asmack-master/lib/
jstun.jar 
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ErrorManager.java 555 ErrorState ec = local
557 if ( ec==null ) {
558 ec = new ErrorState();
559 threadToErrorStateMap.put(Thread.currentThread(), ec); local
561 return ec;
570 ErrorState ec = new ErrorState(); local
571 threadToErrorStateMap.put(Thread.currentThread(), ec); local
    [all...]
  /external/clang/lib/Driver/
ToolChains.cpp 1491 llvm::error_code ec; local
    [all...]
  /external/icu4c/i18n/
timezone.cpp 255 * @param ec input-output error code
260 UErrorCode& ec)
266 UResourceBundle *top = ures_openDirect(0, kZONEINFO, &ec);
268 /* &res = */ getZoneByName(top, id, &res, ec);
271 U_DEBUG_TZ_MSG(("Loading zone '%s' (%s, size %d) - %s\n", buf, ures_getKey((UResourceBundle*)&res), ures_getSize(&res), u_errorName(ec)));
273 int32_t deref = ures_getInt(&res, &ec) + 0;
274 U_DEBUG_TZ_MSG(("getInt: %s - type is %d\n", u_errorName(ec), ures_getType(&res)));
275 UResourceBundle *ares = ures_getByKey(top, kZONES, NULL, &ec); // dereference Zones section
276 ures_getByIndex(ares, deref, &res, &ec);
278 U_DEBUG_TZ_MSG(("alias to #%d (%s) - %s\n", deref, "??", u_errorName(ec)));
415 UErrorCode ec = U_ZERO_ERROR; local
667 UErrorCode ec = U_ZERO_ERROR; local
992 UErrorCode ec = U_ZERO_ERROR; local
998 UErrorCode ec = U_ZERO_ERROR; local
1004 UErrorCode ec = U_ZERO_ERROR; local
1013 UErrorCode ec = U_ZERO_ERROR; local
1036 UErrorCode ec = U_ZERO_ERROR; local
1081 UErrorCode ec = U_ZERO_ERROR; local
1100 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
ucurr.cpp 152 _findMetaData(const UChar* currency, UErrorCode& ec) {
155 if (U_SUCCESS(ec)) {
156 ec = U_ILLEGAL_ARGUMENT_ERROR;
164 UResourceBundle* currencyData = ures_openDirect(U_ICUDATA_CURR, CURRENCY_DATA, &ec);
165 UResourceBundle* currencyMeta = ures_getByKey(currencyData, CURRENCY_META, currencyData, &ec);
167 if (U_FAILURE(ec)) {
179 rb = ures_getByKey(currencyMeta,DEFAULT_META, NULL, &ec);
180 if (U_FAILURE(ec)) {
189 const int32_t *data = ures_getIntVector(rb, &len, &ec);
190 if (U_FAILURE(ec) || len != 2)
802 UErrorCode ec = U_ZERO_ERROR; local
1431 ChoiceFormat f(UnicodeString(TRUE, currname, len), ec); local
    [all...]
  /external/icu4c/test/cintltst/
cucdtst.c 1816 UErrorCode ec = U_ZERO_ERROR; local
2957 UErrorCode ec; local
    [all...]
  /external/icu4c/test/intltest/
loctest.cpp 1836 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
tztest.cpp 239 UErrorCode ec = U_ZERO_ERROR; local
241 UBool startsInDST = tz.inDaylightTime(min, ec);
242 if (failure(ec, "TimeZone::inDaylightTime")) return;
243 if (tz.inDaylightTime(max, ec) == startsInDST) {
248 if (failure(ec, "TimeZone::inDaylightTime")) return;
251 if (tz.inDaylightTime(mid, ec) == startsInDST) {
256 if (failure(ec, "TimeZone::inDaylightTime")) return;
368 UErrorCode ec = U_ZERO_ERROR; local
429 s_length = s->count(ec);
433 *buf += *s->snext(ec);
528 UErrorCode ec = U_ZERO_ERROR; local
733 UErrorCode ec = U_ZERO_ERROR; local
1692 UErrorCode ec = U_ZERO_ERROR; local
1800 UErrorCode ec = U_ZERO_ERROR; local
1994 UErrorCode ec = U_ZERO_ERROR; local
2082 TimeZone::getCanonicalID(UnicodeString(data[i].id), canonicalID, isSystemID, ec); local
    [all...]
  /external/valgrind/main/coregrind/
m_transtab.c 1821 Int sno, ec; local
    [all...]

Completed in 796 milliseconds

<<1112131415