Home
last modified time | relevance | path

Searched refs:bodyNode (Results 1 – 7 of 7) sorted by relevance

/third_party/cef/tests/ceftests/
Ddom_unittest.cc62 void TestBodyNodeStructure(CefRefPtr<CefDOMNode> bodyNode) { in TestBodyNodeStructure() argument
63 EXPECT_TRUE(bodyNode.get()); in TestBodyNodeStructure()
64 EXPECT_TRUE(bodyNode->IsElement()); in TestBodyNodeStructure()
65 EXPECT_FALSE(bodyNode->IsText()); in TestBodyNodeStructure()
66 EXPECT_EQ(bodyNode->GetName(), "BODY"); in TestBodyNodeStructure()
67 EXPECT_EQ(bodyNode->GetElementTagName(), "BODY"); in TestBodyNodeStructure()
69 EXPECT_TRUE(bodyNode->HasChildren()); in TestBodyNodeStructure()
70 EXPECT_FALSE(bodyNode->HasElementAttributes()); in TestBodyNodeStructure()
72 CefRefPtr<CefDOMNode> h1Node = bodyNode->GetFirstChild(); in TestBodyNodeStructure()
116 brNode = bodyNode->GetDocument()->GetElementById("some_id"); in TestBodyNodeStructure()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DAddDefaultReturnStatements.cpp30 TIntermBlock *bodyNode = node->getBody(); in NeedsReturnStatement() local
31 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement()
52 TIntermBlock *bodyNode = definition->getBody(); in AddDefaultReturnStatements() local
53 bodyNode->getSequence()->push_back(branch); in AddDefaultReturnStatements()
DRemoveDynamicIndexing.cpp217 TIntermBlock *bodyNode = new TIntermBlock(); in GetIndexFunctionDefinition() local
218 bodyNode->getSequence()->push_back(switchNode); in GetIndexFunctionDefinition()
252 bodyNode->getSequence()->push_back(ifNode); in GetIndexFunctionDefinition()
253 bodyNode->getSequence()->push_back(useLastBlock); in GetIndexFunctionDefinition()
256 new TIntermFunctionDefinition(prototypeNode, bodyNode); in GetIndexFunctionDefinition()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/d3d/
DAddDefaultReturnStatements.cpp31 TIntermBlock *bodyNode = node->getBody(); in NeedsReturnStatement() local
32 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement()
53 TIntermBlock *bodyNode = definition->getBody(); in AddDefaultReturnStatements() local
54 bodyNode->getSequence()->push_back(branch); in AddDefaultReturnStatements()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DRemoveDynamicIndexing.cpp227 TIntermBlock *bodyNode = new TIntermBlock(); in GetIndexFunctionDefinition() local
228 bodyNode->getSequence()->push_back(switchNode); in GetIndexFunctionDefinition()
262 bodyNode->getSequence()->push_back(ifNode); in GetIndexFunctionDefinition()
263 bodyNode->getSequence()->push_back(useLastBlock); in GetIndexFunctionDefinition()
266 new TIntermFunctionDefinition(prototypeNode, bodyNode); in GetIndexFunctionDefinition()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DEmitMetal.cpp2291 TIntermBlock *bodyNode = loopNode->getBody(); in visitForLoop() local
2292 ASSERT(bodyNode); in visitForLoop()
2321 bodyNode->traverse(this); in visitForLoop()
2333 TIntermBlock *bodyNode = loopNode->getBody(); in visitWhileLoop() local
2334 ASSERT(condNode && bodyNode); in visitWhileLoop()
2341 bodyNode->traverse(this); in visitWhileLoop()
2353 TIntermBlock *bodyNode = loopNode->getBody(); in visitDoWhileLoop() local
2354 ASSERT(condNode && bodyNode); in visitDoWhileLoop()
2359 bodyNode->traverse(this); in visitDoWhileLoop()
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/parse/
Dparse.cc1161 py::object bodyNode = python_adapter::GetPyObjAttr(node, "body"); in ParseIf() local
1162 FunctionBlockPtr true_end = ParseStatements(true_block, bodyNode); in ParseIf()
1516 py::object bodyNode = python_adapter::GetPyObjAttr(node, "body"); in ParseIfExp() local
1517 true_block->func_graph()->debug_info()->set_location(GetLocation(bodyNode)); in ParseIfExp()
1518 AnfNodePtr true_node = ParseExprNode(true_block, bodyNode); in ParseIfExp()