HomeSort by relevance Sort by last modified time
    Searched defs:child_end (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/include/llvm/ADT/
GraphTraits.h 37 // static ChildIteratorType child_end (NodeType *)
99 static ChildIteratorType child_end(NodeType* N) { function in struct:llvm::GraphTraits
100 return GraphTraits<T>::child_end(N);
  /external/clang/include/clang/AST/
StmtGraphTraits.h 39 static inline ChildIteratorType child_end(NodeType* N) { function in struct:llvm::GraphTraits
40 if (N) return N->child_end();
66 static inline ChildIteratorType child_end(NodeType* N) { function in struct:llvm::GraphTraits
67 if (N) return N->child_end();
  /external/llvm/unittests/ADT/
SCCIteratorTest.cpp 226 /// child_end - Return the end iterator for children of the given node.
227 static ChildIterator child_end(NodeType *Parent) {
241 static inline ChildIteratorType child_end(NodeType *Node) { function in struct:llvm::GraphTraits
242 return Graph<N>::child_end(Node);
  /external/chromium_org/cc/layers/
layer_utils_unittest.cc 130 TransformOperations child_end; local
131 child_end.AppendTranslate(50.f, 0.f, 0.f);
132 AddAnimatedTransformToLayer(parent(), duration, start, child_end); local
  /external/llvm/include/llvm/Analysis/
Interval.h 131 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
143 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
CallGraph.h 412 static inline ChildIteratorType child_end(NodeType *N) { function in struct:GraphTraits
427 static inline ChildIteratorType child_end(NodeType *N) { return N->end(); } function in struct:GraphTraits
LazyCallGraph.h 521 static ChildIteratorType child_end(NodeType *N) { return N->end(); } function in struct:llvm::GraphTraits
529 static ChildIteratorType child_end(NodeType *N) { return N->end(); } function in struct:llvm::GraphTraits
LoopInfo.h 158 SE = BlockTraits::child_end(BB); SI != SE; ++SI) {
174 E = InvBlockTraits::child_end(H); I != E; ++I)
241 E = InvBlockTraits::child_end(H); I != E; ++I)
761 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
774 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 171 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
184 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
MachineDominators.h 191 static inline ChildIteratorType child_end(NodeType* N) { function in struct:llvm::GraphTraits
MachineBasicBlock.h 711 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
724 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
744 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
758 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
  /external/llvm/include/llvm/IR/
Dominators.h 127 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
CFG.h 282 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
296 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
313 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
327 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
Type.h 452 static inline ChildIteratorType child_end(NodeType *N) {
465 static inline ChildIteratorType child_end(NodeType *N) { function in class:llvm::Type
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 181 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
  /external/clang/lib/AST/
Comment.cpp 59 ASSERT_IMPLEMENTS_child_begin(&CLASS::child_end);
83 Comment::child_iterator Comment::child_end() const { function in class:clang::comments::Comment
89 return static_cast<const CLASS *>(this)->child_end();
107 for (child_iterator I = child_begin(), E = child_end(); I != E; ++I) {
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 63 static ChildIteratorType child_end(const NodeType *N) { function in struct:llvm::GraphTraits
BlockFrequencyInfoImpl.cpp 585 static ChildIteratorType child_end(NodeType *N) { return N->succ_end(); } function in struct:llvm::GraphTraits
  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 67 static ChildIteratorType child_end(const NodeType *N) { function in struct:llvm::GraphTraits
  /external/clang/include/clang/Analysis/
CallGraph.h 183 static inline ChildIteratorType child_end (NodeType *N) { function in struct:llvm::GraphTraits
196 static inline ChildIteratorType child_end(NodeType *N) { return N->end(); } function in struct:llvm::GraphTraits
  /external/clang/lib/Serialization/
ModuleManager.cpp 432 static ChildIteratorType child_end(NodeType *Node) { function in struct:llvm::GraphTraits
  /external/llvm/lib/Object/
Archive.cpp 135 if (Parent->StringTable == Parent->child_end()
198 : Binary(Binary::ID_Archive, std::move(Source)), SymbolTable(child_end()) {
208 child_iterator e = child_end();
316 return child_end();
326 Archive::child_iterator Archive::child_end() const { function in class:Archive
497 return child_end();
501 return child_end();
505 return SymbolTable != child_end();
  /external/chromium_org/content/browser/accessibility/
browser_accessibility.cc 254 int child_end = 0; local
257 for (size_t i = 0; i < InternalChildCount() && child_end < start + len; ++i) {
263 child_start = child_end;
264 child_end += child_len;
266 if (child_end < start)
270 int overlap_end = std::min(end, child_end);
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 391 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 457 static inline ChildIteratorType child_end(NodeType* N) { function in struct:llvm::GraphTraits
483 static inline ChildIteratorType child_end(NodeType* N) { function in struct:llvm::GraphTraits

Completed in 600 milliseconds

1 2