Home
last modified time | relevance | path

Searched refs:new_source (Results 1 – 11 of 11) sorted by relevance

/external/python/asn1crypto/dev/
Dversion.py61 new_source = ''
65 new_source += '__version__ = %r\n' % new_version
68 new_source += '__version_info__ = %r\n' % (new_version_info,)
71 new_source += 'PACKAGE_VERSION = %r\n' % new_version
73 new_source += line
81 if new_source != orig_source:
84 f.write(new_source)
/external/tensorflow/tensorflow/compiler/xla/service/
Dindexed_array_analysis.cc496 Array* const new_source, in ReshapeToRemoveDegenerateDims()
523 new_source, new_indices, new_source_dim, in ReshapeToRemoveDegenerateDims()
598 Array* const new_source, in ReshapeToAddDegenerateDims()
601 new_source, operand->indices(), new_source_dim, in ReshapeToAddDegenerateDims()
943 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForElementwiseBinaryOp() local
945 new_source, scalar_indexed_const->indices(), in ComputeArrayForElementwiseBinaryOp()
967 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForElementwiseUnaryOp() local
969 new_source, scalar_indexed_const->indices(), in ComputeArrayForElementwiseUnaryOp()
1064 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForDotWithIndexedLhs() local
1066 new_source, lhs->indices(), new_source_dim, in ComputeArrayForDotWithIndexedLhs()
[all …]
/external/cronet/net/http/
Dtransport_security_state_test_util.cc56 const net::TransportSecurityStateSource new_source = { in ScopedTransportSecurityStateSource() local
62 source_ = std::make_unique<TransportSecurityStateSource>(new_source); in ScopedTransportSecurityStateSource()
/external/harfbuzz_ng/src/
Dhb-subset-input.cc521 hb_face_t* new_source = hb_subset_or_fail (source, input); in hb_subset_preprocess() local
524 if (!new_source) { in hb_subset_preprocess()
529 return new_source; in hb_subset_preprocess()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dmerge_return_pass.h265 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp257 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
259 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
262 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dmerge_return_pass.h265 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp261 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
263 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
266 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dmerge_return_pass.h265 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp261 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
263 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
266 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf_test.py445 new_source = parser.unparse(node, indentation=' ')
446 new_str = textwrap.dedent(new_source).strip()