HomeSort by relevance Sort by last modified time
    Searched refs:ASSERT_NO_EXCEPTION (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaDocument.cpp 85 head->appendChild(meta.release(), ASSERT_NO_EXCEPTION);
98 media->appendChild(source.release(), ASSERT_NO_EXCEPTION);
101 body->appendChild(media.release(), ASSERT_NO_EXCEPTION);
103 rootElement->appendChild(head.release(), ASSERT_NO_EXCEPTION);
104 rootElement->appendChild(body.release(), ASSERT_NO_EXCEPTION);
106 document()->appendChild(rootElement.release(), ASSERT_NO_EXCEPTION, AttachLazily);
HTMLDetailsElement.cpp 63 defaultSummary->appendChild(Text::create(document(), defaultDetailsSummaryText()), ASSERT_NO_EXCEPTION);
69 root->appendChild(content, ASSERT_NO_EXCEPTION, AttachLazily);
70 root->appendChild(HTMLContentElement::create(document()), ASSERT_NO_EXCEPTION, AttachLazily);
HTMLKeygenElement.cpp 65 option->appendChild(Text::create(document(), keys[i]), ASSERT_NO_EXCEPTION);
66 select->appendChild(option, ASSERT_NO_EXCEPTION);
69 root->appendChild(select, ASSERT_NO_EXCEPTION);
HTMLSummaryElement.cpp 58 root->appendChild(DetailsMarkerControl::create(document()), ASSERT_NO_EXCEPTION, AttachLazily);
59 root->appendChild(HTMLContentElement::create(document()), ASSERT_NO_EXCEPTION, AttachLazily);
ImageDocument.cpp 170 appendChild(rootElement, ASSERT_NO_EXCEPTION, AttachLazily);
180 head->appendChild(meta, ASSERT_NO_EXCEPTION, AttachLazily);
189 body->appendChild(m_imageElement.get(), ASSERT_NO_EXCEPTION, AttachLazily);
199 rootElement->appendChild(head, ASSERT_NO_EXCEPTION, AttachLazily);
200 rootElement->appendChild(body, ASSERT_NO_EXCEPTION, AttachLazily);
ColorInputType.cpp 126 wrapperElement->appendChild(colorSwatch.release(), ASSERT_NO_EXCEPTION);
127 element()->userAgentShadowRoot()->appendChild(wrapperElement.release(), ASSERT_NO_EXCEPTION);
HTMLProgressElement.cpp 160 bar->appendChild(m_value, ASSERT_NO_EXCEPTION);
162 inner->appendChild(bar, ASSERT_NO_EXCEPTION);
BaseChooserOnlyDateAndTimeInputType.cpp 80 toHTMLElement(node)->setInnerText(displayValue, ASSERT_NO_EXCEPTION);
HTMLTextAreaElement.cpp 104 root->appendChild(TextControlInnerTextElement::create(document()), ASSERT_NO_EXCEPTION);
536 userAgentShadowRoot()->removeChild(m_placeholder, ASSERT_NO_EXCEPTION);
545 userAgentShadowRoot()->insertBefore(m_placeholder, innerTextElement()->nextSibling(), ASSERT_NO_EXCEPTION);
547 m_placeholder->setInnerText(placeholderText, ASSERT_NO_EXCEPTION);
HTMLMeterElement.cpp 236 bar->appendChild(m_value, ASSERT_NO_EXCEPTION);
238 inner->appendChild(bar, ASSERT_NO_EXCEPTION);
HTMLTextFormControlElement.cpp 334 range->selectNodeContents(innerTextElement(), ASSERT_NO_EXCEPTION);
346 range->setStart(innerTextElement(), 0, ASSERT_NO_EXCEPTION);
347 range->setEnd(indexPosition.containerNode(), indexPosition.offsetInContainerNode(), ASSERT_NO_EXCEPTION);
528 innerTextElement()->setInnerText(value, ASSERT_NO_EXCEPTION);
531 innerTextElement()->appendChild(HTMLBRElement::create(document()), ASSERT_NO_EXCEPTION, AttachLazily);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionStatePlaceholder.h 56 #define ASSERT_NO_EXCEPTION (::WebCore::IgnorableExceptionState().returnThis())
72 #define ASSERT_NO_EXCEPTION (::WebCore::NoExceptionStateAssertionChecker(__FILE__, __LINE__).returnThis())
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ReplaceNodeWithSpanCommand.cpp 55 parentNode->insertBefore(newNode, nodeToReplace, ASSERT_NO_EXCEPTION);
60 newNode->appendChild(children[i], ASSERT_NO_EXCEPTION);
65 parentNode->removeChild(nodeToReplace, ASSERT_NO_EXCEPTION);
SplitTextNodeCommand.cpp 79 m_text2->insertData(0, prefixText, ASSERT_NO_EXCEPTION);
82 m_text1->remove(ASSERT_NO_EXCEPTION);
markup.cpp 552 bool collapsed = updatedRange->collapsed(ASSERT_NO_EXCEPTION);
555 Node* commonAncestor = updatedRange->commonAncestorContainer(ASSERT_NO_EXCEPTION);
580 if (pastEnd && Range::compareBoundaryPoints(startNode, 0, pastEnd, 0, ASSERT_NO_EXCEPTION) >= 0)
685 node->parentNode()->removeChild(node.get(), ASSERT_NO_EXCEPTION);
693 node->parentNode()->removeChild(node.get(), ASSERT_NO_EXCEPTION);
723 Node* commonAncestor = range->commonAncestorContainer(ASSERT_NO_EXCEPTION);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.h 71 void setStart(PassRefPtr<Node> container, int offset, ExceptionState& = ASSERT_NO_EXCEPTION);
72 void setEnd(PassRefPtr<Node> container, int offset, ExceptionState& = ASSERT_NO_EXCEPTION);
98 void setStartAfter(Node*, ExceptionState& = ASSERT_NO_EXCEPTION);
99 void setEndBefore(Node*, ExceptionState& = ASSERT_NO_EXCEPTION);
100 void setEndAfter(Node*, ExceptionState& = ASSERT_NO_EXCEPTION);
101 void selectNode(Node*, ExceptionState& = ASSERT_NO_EXCEPTION);
108 void setStart(const Position&, ExceptionState& = ASSERT_NO_EXCEPTION);
109 void setEnd(const Position&, ExceptionState& = ASSERT_NO_EXCEPTION);
ContainerNode.h 99 void insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
100 void replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
101 void removeChild(Node* child, ExceptionState& = ASSERT_NO_EXCEPTION);
102 void appendChild(PassRefPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedAngle.cpp 37 sharedAngle.setValueAsString(valueAsString, ASSERT_NO_EXCEPTION);
153 from.setValueAsString(fromString, ASSERT_NO_EXCEPTION);
155 to.setValueAsString(toString, ASSERT_NO_EXCEPTION);
SVGAnimatedLength.cpp 38 sharedLength.setValueAsString(valueAsString, mode, ASSERT_NO_EXCEPTION);
81 toLength.setValue(toLength.value(lengthContext) + fromLength.value(lengthContext), lengthContext, ASSERT_NO_EXCEPTION);
108 animatedSVGLength.setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EXCEPTION);
SVGAnimatedLengthList.cpp 81 toLengthList[i].setValue(toLengthList[i].value(lengthContext) + fromLengthList[i].value(lengthContext), lengthContext, ASSERT_NO_EXCEPTION);
125 animatedLengthList[i].setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlsChromiumAndroid.cpp 97 m_overlayEnclosure->insertBefore(textTrackContainer, m_overlayPlayButton, ASSERT_NO_EXCEPTION, AttachLazily);
MediaControlsChromium.cpp 159 m_durationDisplay->setInnerText(page->theme()->formatMediaControlsTime(duration), ASSERT_NO_EXCEPTION);
221 insertBefore(textTrackContainer, m_enclosure, ASSERT_NO_EXCEPTION, AttachLazily);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
MockPagePopupDriver.cpp 71 document->body()->appendChild(m_iframe.get(), ASSERT_NO_EXCEPTION, AttachLazily);
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitMediaSource.cpp 173 activeRanges[i] = m_activeSourceBuffers->item(i)->buffered(ASSERT_NO_EXCEPTION);
MediaSourceBase.cpp 116 highestEndTime = std::max(highestEndTime, ranges[i]->end(length - 1, ASSERT_NO_EXCEPTION));
134 sourceRanges->add(sourceRanges->start(sourceRanges->length() - 1, ASSERT_NO_EXCEPTION), highestEndTime);

Completed in 398 milliseconds

1 2 3