/third_party/ninja/src/ |
D | graph_test.cc | 34 EXPECT_TRUE(scan_.RecomputeDirty(GetNode("out"), &err)); in TEST_F() 40 EXPECT_TRUE(GetNode("out")->dirty()); in TEST_F() 52 EXPECT_TRUE(scan_.RecomputeDirty(GetNode("out"), &err)); in TEST_F() 56 EXPECT_TRUE(GetNode("out")->dirty()); in TEST_F() 72 EXPECT_TRUE(scan_.RecomputeDirty(GetNode("out.o"), &err)); in TEST_F() 77 EXPECT_TRUE(GetNode("out.o")->dirty()); in TEST_F() 95 EXPECT_TRUE(scan_.RecomputeDirty(GetNode("out.o"), &err)); in TEST_F() 101 EXPECT_TRUE(GetNode("out.o")->dirty()); in TEST_F() 108 Edge* edge = GetNode("out")->in_edge(); in TEST_F() 113 EXPECT_EQ(edge, GetNode("out.imp")->in_edge()); in TEST_F() [all …]
|
D | deps_log_test.cc | 49 deps.push_back(state1.GetNode("foo.h", 0)); in TEST_F() 50 deps.push_back(state1.GetNode("bar.h", 0)); in TEST_F() 51 log1.RecordDeps(state1.GetNode("out.o", 0), 1, deps); in TEST_F() 54 deps.push_back(state1.GetNode("foo.h", 0)); in TEST_F() 55 deps.push_back(state1.GetNode("bar2.h", 0)); in TEST_F() 56 log1.RecordDeps(state1.GetNode("out2.o", 0), 2, deps); in TEST_F() 58 DepsLog::Deps* log_deps = log1.GetDeps(state1.GetNode("out.o", 0)); in TEST_F() 82 DepsLog::Deps* log_deps = log2.GetDeps(state2.GetNode("out2.o", 0)); in TEST_F() 104 deps.push_back(state1.GetNode(buf, 0)); in TEST_F() 106 log1.RecordDeps(state1.GetNode("out.o", 0), 1, deps); in TEST_F() [all …]
|
D | disk_interface_test.cc | 254 Node* out = GetNode("out"); in TEST_F() 270 Node* out = GetNode("out"); in TEST_F() 278 ASSERT_TRUE(GetNode("out")->dirty()); in TEST_F() 280 ASSERT_TRUE(GetNode("mid")->dirty()); in TEST_F() 290 Node* out = GetNode("out"); in TEST_F() 298 ASSERT_TRUE(GetNode("mid1")->dirty()); in TEST_F() 311 Node* out = GetNode("out"); in TEST_F() 317 ASSERT_FALSE(GetNode("in")->dirty()); in TEST_F() 318 ASSERT_TRUE(GetNode("mid")->dirty()); in TEST_F() 319 ASSERT_TRUE(GetNode("out")->dirty()); in TEST_F()
|
D | state_test.cc | 41 EXPECT_FALSE(state.GetNode("in1", 0)->dirty()); in TEST() 42 EXPECT_FALSE(state.GetNode("in2", 0)->dirty()); in TEST() 43 EXPECT_FALSE(state.GetNode("out", 0)->dirty()); in TEST()
|
D | build_test.cc | 57 GetNode("mid")->MarkDirty(); in TEST_F() 58 GetNode("out")->MarkDirty(); in TEST_F() 60 EXPECT_TRUE(plan_.AddTarget(GetNode("out"), &err)); in TEST_F() 92 GetNode("mid1")->MarkDirty(); in TEST_F() 93 GetNode("mid2")->MarkDirty(); in TEST_F() 94 GetNode("out")->MarkDirty(); in TEST_F() 97 EXPECT_TRUE(plan_.AddTarget(GetNode("out"), &err)); in TEST_F() 123 GetNode("a1")->MarkDirty(); in TEST_F() 124 GetNode("a2")->MarkDirty(); in TEST_F() 125 GetNode("b1")->MarkDirty(); in TEST_F() [all …]
|
D | state.cc | 103 Node* State::GetNode(StringPiece path, uint64_t slash_bits) { in GetNode() function in State 138 Node* node = GetNode(path, slash_bits); in AddIn() 144 Node* node = GetNode(path, slash_bits); in AddOut()
|
D | manifest_parser_test.cc | 87 Edge* edge = state.GetNode("result", 0)->in_edge(); in TEST_F() 1093 Edge* edge = state.GetNode("result", 0)->in_edge(); in TEST_F() 1116 Edge* edge = state.GetNode("result", 0)->in_edge(); in TEST_F() 1128 Edge* edge = state.GetNode("result", 0)->in_edge(); in TEST_F() 1140 Edge* edge = state.GetNode("result", 0)->in_edge(); in TEST_F() 1152 Edge* edge = state.GetNode("result", 0)->in_edge(); in TEST_F()
|
D | test.cc | 93 Node* StateTestWithBuiltinRules::GetNode(const string& path) { in GetNode() function in StateTestWithBuiltinRules 95 return state_.GetNode(path, 0); in GetNode()
|
D | dyndep_parser.cc | 207 Node* n = state_->GetNode(path, slash_bits); in ParseEdge() 218 Node* n = state_->GetNode(path, slash_bits); in ParseEdge()
|
D | state.h | 97 Node* GetNode(StringPiece path, uint64_t slash_bits);
|
D | test.h | 121 Node* GetNode(const string& path);
|
/third_party/uboot/u-boot-2020.01/tools/binman/ |
D | entry_test.py | 24 def GetNode(self): member in TestEntry 29 return dtb.GetNode('/binman/u-boot') 74 base = entry.Entry.Create(None, self.GetNode(), 'blob-dtb') 77 dtb = entry.Entry.Create(None, self.GetNode(), 'u-boot-dtb') 82 base = entry.Entry.Create(None, self.GetNode(), 'blob-dtb') 87 base = entry.Entry.Create(None, self.GetNode(), 'blob-dtb')
|
D | state.py | 232 image_node = dtb.GetNode('/binman') 234 image_node = dtb.GetNode('/binman/%s' % image.image_node) 275 other_node = dtb.GetNode(fdt_path_prefix + node.path)
|
D | fdt_test.py | 35 node = dt.GetNode('/microcode/update@0') 46 node = dt.GetNode('/binman/intel-me')
|
/third_party/cef/tests/cefclient/browser/ |
D | osr_accessibility_helper.cc | 12 OsrAXNode* OsrAXTree::GetNode(int nodeId) const { in GetNode() function in client::OsrAXTree 84 OsrAXNode* node = GetNode(treeId, nodeId); in UpdateAccessibilityLocation() 124 return tree->second.GetNode(focused_node_id_); in GetFocusedNode() 134 return tree->second.GetNode(tree->second.GetRootNodeId()); in GetTreeRootNode() 162 OsrAXNode* node = GetNode(treeId, nodeId); in UpdateLayout() 191 OsrAXNode* axNode = tree.GetNode(nodeId); in UpdateLayout() 205 OsrAXNode* node = GetNode(treeId, nodeId); in UpdateLayout() 260 OsrAXNode* OsrAccessibilityHelper::GetNode(const CefString& treeId, in GetNode() function in client::OsrAccessibilityHelper 264 return tree->second.GetNode(nodeId); in GetNode()
|
D | osr_accessibility_helper.h | 20 OsrAXNode* GetNode(int nodeId) const; 56 OsrAXNode* GetNode(const CefString& treeId, int nodeId) const;
|
D | osr_accessibility_node.cc | 118 accessibility_helper_->GetNode(OsrAXTreeId(), offset_container_id_); in AxLocation() 153 return accessibility_helper_->GetNode(OsrAXTreeId(), child_ids_[index]); in ChildAtIndex()
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/mutations/ |
D | replace_identifier.cc | 40 node_id_map.GetNode(message_.use_id())); in IsApplicable() 56 tint::As<ast::Variable>(node_id_map.GetNode(message_.replacement_id())); in IsApplicable() 87 const auto* use_node = node_id_map.GetNode(message_.use_id()); in Apply() 89 tint::As<ast::Variable>(node_id_map.GetNode(message_.replacement_id())); in Apply()
|
/third_party/uboot/u-boot-2020.01/tools/dtoc/ |
D | test_fdt.py | 80 node = self.dtb.GetNode('/spl-test') 83 node = self.dtb.GetNode('/i2c@0/pmic@9') 86 self.assertIsNone(self.dtb.GetNode('/i2c@0/pmic@9/missing')) 88 node = self.dtb.GetNode('/') 114 node = self.dtb.GetNode('/spl-test') 128 node = self.dtb.GetNode('/spl-test') 148 self.node = self.dtb.GetNode('/spl-test') 156 node2 = self.dtb.GetNode('/spl-test2') 210 node = dtb.GetNode('/phandle-source2') 212 target = dtb.GetNode('/phandle-target') [all …]
|
D | test_fdt | 80 node = self.dtb.GetNode('/spl-test') 83 node = self.dtb.GetNode('/i2c@0/pmic@9') 86 self.assertIsNone(self.dtb.GetNode('/i2c@0/pmic@9/missing')) 88 node = self.dtb.GetNode('/') 114 node = self.dtb.GetNode('/spl-test') 128 node = self.dtb.GetNode('/spl-test') 148 self.node = self.dtb.GetNode('/spl-test') 156 node2 = self.dtb.GetNode('/spl-test2') 210 node = dtb.GetNode('/phandle-source2') 212 target = dtb.GetNode('/phandle-target') [all …]
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/ |
D | node_id_map.h | 57 const ast::Node* GetNode(IdType id) const;
|
D | node_id_map.cc | 36 const ast::Node* NodeIdMap::GetNode(IdType id) const { in GetNode() function in tint::fuzzers::ast_fuzzer::NodeIdMap
|
/third_party/uboot/u-boot-2020.01/tools/binman/etype/ |
D | u_boot_dtb_with_ucode.py | 64 self.ucode = fdt.GetNode('/microcode')
|
D | fdtmap.py | 117 node = infdt.GetNode(path)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.h | 155 const SDNode *GetNode() const { in GetNode() function
|