Searched refs:bodyNode (Results 1 – 7 of 7) sorted by relevance
62 void TestBodyNodeStructure(CefRefPtr<CefDOMNode> bodyNode) { in TestBodyNodeStructure() argument63 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 …]
30 TIntermBlock *bodyNode = node->getBody(); in NeedsReturnStatement() local31 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement()52 TIntermBlock *bodyNode = definition->getBody(); in AddDefaultReturnStatements() local53 bodyNode->getSequence()->push_back(branch); in AddDefaultReturnStatements()
217 TIntermBlock *bodyNode = new TIntermBlock(); in GetIndexFunctionDefinition() local218 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()
31 TIntermBlock *bodyNode = node->getBody(); in NeedsReturnStatement() local32 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement()53 TIntermBlock *bodyNode = definition->getBody(); in AddDefaultReturnStatements() local54 bodyNode->getSequence()->push_back(branch); in AddDefaultReturnStatements()
227 TIntermBlock *bodyNode = new TIntermBlock(); in GetIndexFunctionDefinition() local228 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()
2291 TIntermBlock *bodyNode = loopNode->getBody(); in visitForLoop() local2292 ASSERT(bodyNode); in visitForLoop()2321 bodyNode->traverse(this); in visitForLoop()2333 TIntermBlock *bodyNode = loopNode->getBody(); in visitWhileLoop() local2334 ASSERT(condNode && bodyNode); in visitWhileLoop()2341 bodyNode->traverse(this); in visitWhileLoop()2353 TIntermBlock *bodyNode = loopNode->getBody(); in visitDoWhileLoop() local2354 ASSERT(condNode && bodyNode); in visitDoWhileLoop()2359 bodyNode->traverse(this); in visitDoWhileLoop()
1161 py::object bodyNode = python_adapter::GetPyObjAttr(node, "body"); in ParseIf() local1162 FunctionBlockPtr true_end = ParseStatements(true_block, bodyNode); in ParseIf()1516 py::object bodyNode = python_adapter::GetPyObjAttr(node, "body"); in ParseIfExp() local1517 true_block->func_graph()->debug_info()->set_location(GetLocation(bodyNode)); in ParseIfExp()1518 AnfNodePtr true_node = ParseExprNode(true_block, bodyNode); in ParseIfExp()