Home
last modified time | relevance | path

Searched refs:value_node (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/source/Host/common/
DXML.cpp426 XMLNode value_node = GetValueNode(key); in GetValueAsString() local
427 if (value_node) in GetValueAsString()
428 return ApplePropertyList::ExtractStringFromValueNode(value_node, value); in GetValueAsString()
433 XMLNode value_node; in GetValueNode() local
438 "key", [key, &value_node](const XMLNode &key_node) -> bool { in GetValueNode()
442 value_node = key_node.GetSibling(); in GetValueNode()
443 while (value_node && !value_node.IsElement()) in GetValueNode()
444 value_node = value_node.GetSibling(); in GetValueNode()
452 return value_node; in GetValueNode()
/external/tensorflow/tensorflow/core/kernels/data/
Dsparse_tensor_slice_dataset_op.cc71 Node* value_node; in AsGraphDefInternal() local
72 TF_RETURN_IF_ERROR(b->AddTensor(sparse_tensor_.values(), &value_node)); in AsGraphDefInternal()
82 b->AddDataset(this, {indices_node, value_node, dense_shape_node}, in AsGraphDefInternal()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dscalar_analysis.cpp300 SENode* value_node = AnalyzeInstruction(value_inst); in AnalyzePhiInstruction() local
303 if (value_node->IsCantCompute()) in AnalyzePhiInstruction()
309 phi_node->AddOffset(value_node); in AnalyzePhiInstruction()
312 if (value_node->GetType() != SENode::Add) in AnalyzePhiInstruction()
317 SENode* operand_1 = value_node->GetChild(0); in AnalyzePhiInstruction()
318 SENode* operand_2 = value_node->GetChild(1); in AnalyzePhiInstruction()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dscalar_analysis.cpp300 SENode* value_node = AnalyzeInstruction(value_inst); in AnalyzePhiInstruction() local
303 if (value_node->IsCantCompute()) in AnalyzePhiInstruction()
309 phi_node->AddOffset(value_node); in AnalyzePhiInstruction()
312 if (value_node->GetType() != SENode::Add) in AnalyzePhiInstruction()
317 SENode* operand_1 = value_node->GetChild(0); in AnalyzePhiInstruction()
318 SENode* operand_2 = value_node->GetChild(1); in AnalyzePhiInstruction()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dscalar_analysis.cpp300 SENode* value_node = AnalyzeInstruction(value_inst); in AnalyzePhiInstruction() local
303 if (value_node->IsCantCompute()) in AnalyzePhiInstruction()
309 phi_node->AddOffset(value_node); in AnalyzePhiInstruction()
312 if (value_node->GetType() != SENode::Add) in AnalyzePhiInstruction()
317 SENode* operand_1 = value_node->GetChild(0); in AnalyzePhiInstruction()
318 SENode* operand_2 = value_node->GetChild(1); in AnalyzePhiInstruction()
/external/tensorflow/tensorflow/python/autograph/pyct/testing/
Dcodegen.py172 value_node = self.generate_expression()
174 node = gast.Assign(targets=[target_node], value=value_node)
/external/tensorflow/tensorflow/python/autograph/pyct/
Dtemplates_test.py338 value_node = templates.replace(template, bar=replacement)[0].value
339 self.assertExpectedCtxSet(value_node, gast.Load)
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Ddecorators.py835 value_node = config.GetValueForKey(key)
837 have = value_node.GetValueForKey("value").GetBooleanValue(fail_value)