HomeSort by relevance Sort by last modified time
    Searched defs:Children (Results 26 - 30 of 30) sorted by null

12

  /external/llvm/lib/CodeGen/
MachineLICM.cpp 229 /// dominator tree node if its a leaf or all of its children are done. Walk
667 /// dominator tree node if its a leaf or all of its children are done. Walk
718 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
719 unsigned NumChildren = Children.size();
728 // Add children in reverse order as then the next popped worklist node is
732 MachineDomTreeNode *Child = Children[i];
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 458 SmallVectorImpl<std::unique_ptr<DIE>> &Children) {
465 Children.push_back(
473 Children.push_back(
478 // Collect lexical scope children first.
480 Children.push_back(constructVariableDIE(TheCU, *DV, *Scope, ObjectPointer));
484 Children.push_back(std::move(Nested));
490 // We create children when the scope DIE is not null.
491 SmallVector<std::unique_ptr<DIE>, 8> Children;
492 if (DIE *ObjectPointer = createScopeChildrenDIE(TheCU, Scope, Children))
495 // Add children
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 121 /// operates on the node or its children without potential side effects or a
187 /// ScopeMatcher - This attempts to match each of its children to find the first
189 /// If none of the children match then this check fails. It never has a 'next'.
191 SmallVector<Matcher*, 4> Children;
193 ScopeMatcher(ArrayRef<Matcher *> children)
194 : Matcher(Scope), Children(children.begin(), children.end()) {
198 unsigned getNumChildren() const { return Children.size(); }
200 Matcher *getChild(unsigned i) { return Children[i];
    [all...]
CodeGenDAGPatterns.cpp 744 // We don't want to count any children twice, so return early.
753 // Count children in the count if they are also nodes.
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 55 // references to children (to be compatible with StmtIterator).
402 /// Child Iterators: All subclasses must implement 'children'
411 child_range children();
412 const_child_range children() const { function in class:clang::Stmt
413 return const_cast<Stmt*>(this)->children();
416 child_iterator child_begin() { return children().first; }
417 child_iterator child_end() { return children().second; }
419 const_child_iterator child_begin() const { return children().first; }
420 const_child_iterator child_end() const { return children().second; }
481 child_range children() { function in class:clang::DeclStmt
541 child_range children() { return child_range(); } function in class:clang::NullStmt
630 child_range children() { function in class:clang::CompoundStmt
634 const_child_range children() const { function in class:clang::CompoundStmt
737 child_range children() { function in class:clang::CaseStmt
769 child_range children() { return child_range(&SubStmt, &SubStmt+1); } function in class:clang::DefaultStmt
805 child_range children() { return child_range(&SubStmt, &SubStmt+1); } function in class:clang::LabelStmt
857 child_range children() { return child_range(&SubStmt, &SubStmt + 1); } function in class:clang::AttributedStmt
925 child_range children() { function in class:clang::IfStmt
1017 child_range children() { function in class:clang::SwitchStmt
1077 child_range children() { function in class:clang::WhileStmt
1125 child_range children() { function in class:clang::DoStmt
1199 child_range children() { function in class:clang::ForStmt
1233 child_range children() { return child_range(); } function in class:clang::GotoStmt
1276 child_range children() { return child_range(&Target, &Target+1); } function in class:clang::IndirectGotoStmt
1301 child_range children() { return child_range(); } function in class:clang::ContinueStmt
1325 child_range children() { return child_range(); } function in class:clang::BreakStmt
1380 child_range children() { function in class:clang::ReturnStmt
1532 child_range children() { function in class:clang::AsmStmt
1808 child_range children() { function in class:clang::MSAsmStmt
1847 child_range children() { function in class:clang::SEHExceptStmt
1881 child_range children() { function in class:clang::SEHFinallyStmt
1930 child_range children() { function in class:clang::SEHTryStmt
1961 child_range children() { return child_range(); } function in class:clang::SEHLeaveStmt
    [all...]

Completed in 517 milliseconds

12