HomeSort by relevance Sort by last modified time
    Searched defs:ancestors (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
BreakBlockquoteCommand.cpp 132 // Build up list of ancestors in between the start node and the top blockquote.
133 WillBeHeapVector<RefPtrWillBeMember<Element> > ancestors; local
135 ancestors.append(node);
141 // Clone startNode's ancestors into the cloned blockquote.
143 // that was cloned (i.e. the clone of either ancestors.last()
144 // or clonedBlockquote if ancestors is empty).
146 for (size_t i = ancestors.size(); i != 0; --i) {
147 RefPtrWillBeRawPtr<Element> clonedChild = ancestors[i - 1]->cloneElementWithoutChildren();
150 Node* listChildNode = i > 1 ? ancestors[i - 2].get() : startNode;
165 if (!ancestors.isEmpty())
    [all...]
InsertParagraphSeparatorCommand.cpp 125 void InsertParagraphSeparatorCommand::getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors)
127 ancestors.clear();
129 // Build up list of ancestors elements between the insertion node and the outer block.
132 ancestors.append(n);
136 PassRefPtrWillBeRawPtr<Element> InsertParagraphSeparatorCommand::cloneHierarchyUnderNewBlock(const WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors, PassRefPtrWillBeRawPtr<Element> blockToInsert)
138 // Make clones of ancestors in between the start node and the start block.
140 for (size_t i = ancestors.size(); i != 0; --i) {
141 RefPtrWillBeRawPtr<Element> child = ancestors[i - 1]->cloneElementWithoutChildren();
254 WillBeHeapVector<RefPtrWillBeMember<Element> > ancestors; local
255 getAncestorsInsideBlock(positionOutsideTabSpan(insertionPosition).deprecatedNode(), startBlock.get(), ancestors); local
299 WillBeHeapVector<RefPtrWillBeMember<Element> > ancestors; local
300 getAncestorsInsideBlock(positionAvoidingSpecialElementBoundary(positionOutsideTabSpan(insertionPosition)).deprecatedNode(), startBlock.get(), ancestors); local
    [all...]
CompositeEditCommand.cpp 1007 WillBeHeapVector<RefPtrWillBeMember<Node> > ancestors; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.cpp 94 WillBeHeapVector<RawPtrWillBeMember<Element>, 30> ancestors; local
96 ancestors.append(ancestor);
97 for (size_t n = ancestors.size(); n; --n)
98 pushParentStackFrame(*ancestors[n - 1]);
141 // Only collect identifiers that match ancestors.
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_types.py 91 ancestors = defaultdict(list) # interface_name -> ancestors variable
95 ancestor_name in ancestors[interface_name])
99 ancestors.update(new_ancestors)
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugInfo.cpp 461 ancestors()
469 std::vector<DWARFDebugInfoEntry> ancestors; member in struct:DumpInfo
519 const uint32_t num_ancestors = dumpInfo->ancestors.size();
524 dumpInfo->ancestors[i].Dump(dwarf2Data, cu, *s, 0);
556 dumpInfo->ancestors.back() = *die;
564 dumpInfo->ancestors.pop_back();
576 dumpInfo->ancestors.push_back(null_die);
599 dumpInfo->ancestors.clear();
600 dumpInfo->ancestors.resize(1);
  /libcore/luni/src/main/java/java/util/prefs/
XMLParser.java 168 StringTokenizer ancestors = new StringTokenizer(prefs.absolutePath(), "/"); local
169 exportNode(ancestors, prefs, withSubTree, out);
177 private static void exportNode(StringTokenizer ancestors,
180 if (ancestors.hasMoreTokens()) {
181 String name = ancestors.nextToken();
183 if (ancestors.hasMoreTokens()) {
185 exportNode(ancestors, prefs, withSubTree, out);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 215 [ancestors] the list of successive parents from a tree node to the root node
277 def ancestors method in class:ANTLR3.AST
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp 790 NodeVector ancestors; local
792 ancestors.append(n);
795 for (NodeVector::const_iterator it = ancestors.begin(); it != ancestors.end(); ++it) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 173 * Only ancestors that are searched are
186 * Only ancestors that are searched are
203 * Only ancestors that are searched are
222 * attribute is specified, then the only ancestors that are searched are those
226 * When level="multiple", it constructs a list of all ancestors of the current node
230 * If the from attribute is specified, then the only ancestors that are searched are
819 NodeVector ancestors = local
822 int lastIndex = ancestors.size() - 1;
830 int target = ancestors.elementAt(i);
965 * Get the ancestors, up to the root, that match th
982 NodeSetDTM ancestors = new NodeSetDTM(xctxt.getDTMManager()); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 939 // The Node's Ancestors including self.
940 Vector<EventTarget*> ancestors; local
941 ancestors.append(target);
945 ancestors.append(ancestor);
949 for (size_t i = ancestors.size(); i; --i) {
950 EventTarget* ancestor = ancestors[i - 1];
984 // Then traverse siblings of the node itself and its ancestors.
    [all...]
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /prebuilts/misc/common/android-support-test/
espresso-core.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/15.0/
guava-15.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/17.0/
guava-17.0.jar 

Completed in 965 milliseconds