Searched defs:child_end (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/include/clang/AST/
H A DStmtGraphTraits.h39 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/include/llvm/ADT/
H A DGraphTraits.h37 // 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/llvm/unittests/ADT/
H A DSCCIteratorTest.cpp226 /// 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/
H A Dlayer_utils_unittest.cc130 TransformOperations child_end; local
131 child_end.AppendTranslate(50.f, 0.f, 0.f);
132 AddAnimatedTransformToLayer(parent(), duration, start, child_end); local
/external/clang/lib/AST/
H A DComment.cpp59 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/include/llvm/Analysis/
H A DInterval.h131 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
H A DCallGraph.h412 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
H A DLazyCallGraph.h521 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
H A DLoopInfo.h158 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/
H A DMachineDominators.h191 static inline ChildIteratorType child_end(NodeType* N) { function in struct:llvm::GraphTraits
H A DMachineLoopInfo.h171 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
H A DMachineBasicBlock.h711 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/
H A DDominators.h127 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
H A DCFG.h282 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
H A DType.h452 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/
H A DDominators.h181 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits
/external/clang/include/clang/Analysis/
H A DCallGraph.h183 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/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp63 static ChildIteratorType child_end(const NodeType *N) { function in struct:llvm::GraphTraits
H A DBlockFrequencyInfoImpl.cpp585 static ChildIteratorType child_end(NodeType *N) { return N->succ_end(); } function in struct:llvm::GraphTraits
/external/llvm/lib/CodeGen/
H A DMachineBlockFrequencyInfo.cpp67 static ChildIteratorType child_end(const NodeType *N) { function in struct:llvm::GraphTraits
/external/clang/lib/Serialization/
H A DModuleManager.cpp432 static ChildIteratorType child_end(NodeType *Node) { function in struct:llvm::GraphTraits
/external/llvm/lib/Object/
H A DArchive.cpp135 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/
H A Dbrowser_accessibility.cc254 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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h457 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
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp391 static inline ChildIteratorType child_end(NodeType *N) { function in struct:llvm::GraphTraits

Completed in 1526 milliseconds

12