Searched defs:ancestors (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DBreakBlockquoteCommand.cpp128 // Build up list of ancestors in between the start node and the top blockquote.
129 Vector<Element*> ancestors; local
131 ancestors.append(node);
137 // Clone startNode's ancestors into the cloned blockquote.
139 // that was cloned (i.e. the clone of either ancestors.last()
140 // or clonedBlockquote if ancestors is empty).
142 for (size_t i = ancestors.size(); i != 0; --i) {
143 RefPtr<Element> clonedChild = ancestors[i - 1]->cloneElementWithoutChildren();
146 Node* listChildNode = i > 1 ? ancestors[i - 2] : startNode;
168 if (!ancestors
[all...]
H A DInsertParagraphSeparatorCommand.cpp122 void InsertParagraphSeparatorCommand::getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, Vector<Element*>& ancestors) argument
124 ancestors.clear();
126 // Build up list of ancestors elements between the insertion node and the outer block.
129 ancestors.append(n);
133 PassRefPtr<Element> InsertParagraphSeparatorCommand::cloneHierarchyUnderNewBlock(const Vector<Element*>& ancestors, PassRefPtr<Element> blockToInsert) argument
135 // Make clones of ancestors in between the start node and the start block.
137 for (size_t i = ancestors.size(); i != 0; --i) {
138 RefPtr<Element> child = ancestors[i - 1]->cloneElementWithoutChildren();
241 Vector<Element*> ancestors; local
242 getAncestorsInsideBlock(positionOutsideTabSpan(insertionPosition).deprecatedNode(), startBlock, ancestors);
275 Vector<Element*> ancestors; local
[all...]
H A DCompositeEditCommand.cpp785 Vector<RefPtr<Node> > ancestors; local
789 ancestors.append(n);
793 for (size_t i = ancestors.size(); i != 0; --i) {
794 Node* item = ancestors[i - 1].get();
/external/webkit/Source/WebCore/dom/
H A DEventDispatcher.cpp170 // Since ancestors does not contain target itself, we must account
177 // Trim ancestors to lowestCommonBoundary to keep events inside of the common shadow DOM subtree.
184 inline static bool ancestorsCrossShadowBoundaries(const Vector<EventContext>& ancestors) argument
186 return ancestors.isEmpty() || ancestors.first().node() == ancestors.last().node();
207 // ancestors size and if the retargeting has occured (indicating the presence of shadow DOM boundaries).
H A DRange.cpp863 Vector<RefPtr<Node> > ancestors; local
865 ancestors.append(n);
868 for (Vector<RefPtr<Node> >::const_iterator it = ancestors.begin(); it != ancestors.end(); it++) {
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb215 [ancestors] the list of successive parents from a tree node to the root node
277 def ancestors method in class:ANTLR3.AST
/external/webkit/Source/WebCore/inspector/
H A DInspectorInstrumentation.h96 static InspectorInstrumentationCookie willDispatchEvent(Document*, const Event& event, DOMWindow* window, Node* node, const Vector<EventContext>& ancestors);
215 static InspectorInstrumentationCookie willDispatchEventImpl(InspectorAgent*, const Event& event, DOMWindow* window, Node* node, const Vector<EventContext>& ancestors);
475 inline InspectorInstrumentationCookie InspectorInstrumentation::willDispatchEvent(Document* document, const Event& event, DOMWindow* window, Node* node, const Vector<EventContext>& ancestors) argument
479 return willDispatchEventImpl(inspectorAgent, event, window, node, ancestors);
H A DInspectorInstrumentation.cpp77 static bool eventHasListeners(const AtomicString& eventType, DOMWindow* window, Node* node, const Vector<EventContext>& ancestors) argument
85 for (size_t i = 0; i < ancestors.size(); i++) {
86 Node* ancestor = ancestors[i].node();
243 InspectorInstrumentationCookie InspectorInstrumentation::willDispatchEventImpl(InspectorAgent* inspectorAgent, const Event& event, DOMWindow* window, Node* node, const Vector<EventContext>& ancestors) argument
249 if (timelineAgent && eventHasListeners(event.type(), window, node, ancestors)) {
/external/webkit/Source/WebCore/css/
H A DCSSStyleSelector.cpp657 Vector<Element*, 30> ancestors; local
659 ancestors.append(ancestor);
660 int count = ancestors.size();
662 pushParentStackFrame(ancestors[n]);
2117 // Rewind to the topmost child or subselector and the element it matched, continue checking ancestors.
3079 // Only collect identifiers that match ancestors.
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1286 milliseconds