Searched refs:order_only_deps_ (Results 1 – 7 of 7) sorted by relevance
/third_party/ninja/src/ |
D | graph.h | 149 deps_missing_(false), implicit_deps_(0), order_only_deps_(0), in Edge() 198 int order_only_deps_; member 200 return index >= inputs_.size() - order_only_deps_ - implicit_deps_ && in is_implicit() 204 return index >= inputs_.size() - order_only_deps_; in is_order_only()
|
D | graph_test.cc | 508 EXPECT_EQ(1u, edge->order_only_deps_); in TEST_F() 643 EXPECT_EQ(1u, edge1->order_only_deps_); in TEST_F() 659 EXPECT_EQ(1u, edge2->order_only_deps_); in TEST_F() 857 EXPECT_EQ(1u, edge->order_only_deps_); in TEST_F()
|
D | graph.cc | 345 edge_->order_only_deps_; in LookupVariable() 639 edge->inputs_.insert(edge->inputs_.end() - edge->order_only_deps_, in PreallocateSpace() 642 return edge->inputs_.end() - edge->order_only_deps_ - count; in PreallocateSpace()
|
D | dyndep.cc | 106 edge->inputs_.insert(edge->inputs_.end() - edge->order_only_deps_, in UpdateEdge()
|
D | manifest_parser.cc | 361 edge->order_only_deps_ = order_only; in ParseEdge()
|
D | build.cc | 497 end = (*oe)->inputs_.end() - (*oe)->order_only_deps_; in CleanNode() 994 i != edge->inputs_.end() - edge->order_only_deps_; ++i) { in FinishCommand()
|
D | build_test.cc | 983 EXPECT_EQ(1, edge->order_only_deps_); in TEST_F()
|