Searched refs:endNode (Results 1 - 23 of 23) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/editing/
H A DModifySelectionListLevel.h40 void appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent);
41 void insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode);
42 void insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode);
H A DModifySelectionListLevel.cpp91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode) argument
99 if (node == endNode)
106 void ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode) argument
114 if (node == endNode)
122 void ModifySelectionListLevelCommand::appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent) argument
130 if (node == endNode)
H A DApplyStyleCommand.cpp1314 Node* endNode = end.containerNode(); local
1316 if (isAtomicNode(endNode)) {
1318 if (offsetIsBeforeLastNodeOffset(endOffset, endNode) || end.deprecatedNode()->nextSibling())
1321 endNode = end.deprecatedNode()->parentNode();
1324 if (!endNode->isElementNode() || endNode->hasTagName(brTag))
1327 Node* nextSibling = endNode->nextSibling();
1328 if (nextSibling && areIdenticalElements(endNode, nextSibling)) {
1330 Element* element = toElement(endNode);
1335 bool shouldUpdateStart = start.containerNode() == endNode;
1345 surroundNodeRangeWithElement(PassRefPtr<Node> passedStartNode, PassRefPtr<Node> endNode, PassRefPtr<Element> elementToInsert) argument
1433 RefPtr<Node> endNode = passedEnd; local
[all...]
H A DReplaceSelectionCommand.cpp1288 Node* endNode = endUpstream.computeNodeBeforePosition(); local
1289 int endOffset = endNode && endNode->isTextNode() ? toText(endNode)->length() : 0;
1291 endNode = endUpstream.containerNode();
1296 if (needsTrailingSpace && endNode) {
1297 bool collapseWhiteSpace = !endNode->renderer() || endNode->renderer()->style().collapseWhiteSpace();
1298 if (endNode->isTextNode()) {
1299 insertTextIntoNode(toText(endNode), endOffse
[all...]
H A DVisibleUnits.cpp816 Node* endNode; local
819 endNode = rootBox->getLogicalEndBoxWithNode(endBox);
820 if (!endNode)
830 endNode = endBox->renderer().nonPseudoNode();
831 if (endNode)
839 if (endNode->hasTagName(brTag))
840 pos = positionBeforeNode(endNode);
841 else if (endBox->isInlineTextBox() && endNode->isTextNode()) {
846 pos = Position(toText(endNode), endOffset);
848 pos = positionAfterNode(endNode);
[all...]
H A DApplyStyleCommand.h102 void applyInlineStyleChange(PassRefPtr<Node> startNode, PassRefPtr<Node> endNode, StyleChange&, EAddStyledElement);
H A DTextIterator.cpp1144 Node* endNode = range.endContainer();
1154 if (!endNode->offsetInCharacters()) {
1155 if (endOffset > 0 && endOffset <= static_cast<int>(endNode->childNodeCount())) {
1156 endNode = endNode->childNode(endOffset - 1);
1157 endOffset = lastOffsetInNode(endNode);
1161 m_node = endNode;
1169 m_endContainer = endNode;
1174 m_positionNode = endNode;
H A DEditor.cpp783 Node* endNode = m_frame.selection().selection().end().upstream().deprecatedNode(); local
784 if (enclosingBlock(startNode) != enclosingBlock(endNode))
809 auto* endNode = enclosingElementWithTag(m_frame.selection().selection().end(), ulTag); local
810 if (startNode && endNode && startNode == endNode)
824 auto* endNode = enclosingElementWithTag(m_frame.selection().selection().end(), olTag); local
825 if (startNode && endNode && startNode == endNode)
1394 void Editor::simplifyMarkup(Node* startNode, Node* endNode) argument
1398 if (endNode) {
[all...]
H A DEditor.h391 void simplifyMarkup(Node* startNode, Node* endNode);
H A DCompositeEditCommand.cpp1529 RefPtr<Node> endNode = end; local
1530 for (node = start; node && node->parentNode() != endNode; node = node->parentNode()) {
/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DProfile.cpp62 ProfileNode* endNode = m_head->traverseNextNodePostOrder(); local
63 while (currentNode && currentNode != endNode) {
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebHTMLRepresentation.h57 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
H A DWebHTMLRepresentation.mm278 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset
280 return editingAttributedStringFromRange(*Range::create(core(startNode)->document(), core(startNode), startOffset, core(endNode), endOffset));
H A DWebViewPrivate.h960 - (void)_simplifyMarkup:(DOMNode *)startNode endNode:(DOMNode *)endNode;
H A DWebView.mm7647 - (void)_simplifyMarkup:(DOMNode *)startNode endNode:(DOMNode *)endNode
7655 return coreFrame->editor().simplifyMarkup(coreStartNode, core(endNode));
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DUtilities.js229 var endNode;
274 if (!endNode)
275 endNode = stayWithinNode;
283 endNode = node;
290 if (endNode)
296 if (!endNode) {
297 endNode = stayWithinNode;
301 endNode = this;
307 result.setEnd(endNode, endOffset);
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebHTMLRepresentation.h63 /* [in] */ IDOMNode* endNode,
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebHTMLRepresentation.idl62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
64 HRESULT attributedStringFromDOMNodes([in] IDOMNode* startNode, [in] int startOffset, [in] IDOMNode* endNode, [in] int endOffset, [out, retval] IDataObject** attributedString);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLTextFormControlElement.cpp445 Node* endNode = 0; local
455 setContainerAndOffsetForRange(node, end - offset, endNode, end);
462 if (!startNode || !endNode)
465 return Range::create(document(), startNode, start, endNode, end);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Drbbitblb.cpp422 RBBINode *endNode = NULL; local
428 endNode = tNode;
432 if (endNode == NULL) {
444 UChar32 c = this->fRB->fSetBuilder->getFirstChar(endNode->fVal);
464 if (endNode->fVal == startNode->fVal) {
470 // letting matches transition from a match state at endNode
472 setAdd(endNode->fFollowPos, startNode->fFollowPos);
H A Drbbiscan.cpp323 RBBINode *endNode = pushNewNode(RBBINode::endMark); local
327 catNode->fRightChild = endNode;
329 endNode->fVal = fRuleNum;
330 endNode->fLookAheadEnd = TRUE;
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderView.cpp879 Node* endNode = end->node(); local
880 Node* stopNode = NodeTraversal::nextSkippingChildren(endNode);
895 if (node == endNode)
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/
H A Dantlr.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ...

Completed in 300 milliseconds