Home
last modified time | relevance | path

Searched refs:input2 (Results 1 – 5 of 5) sorted by relevance

/test/xts/acts/security/cryptoFramework/js_api10_test_oh41/entry/src/ohosTest/ets/test/utils/signVerify/
DsignVerifyAsyPromiseFunc.ets35 let input2: cpFw.DataBlob = { data: stringToUint8Array("This is a signVerify test2.") };
45 signedText = await sign.sign(input2);
50 return await verify.verify(input2, signedText);
105 let input2: cpFw.DataBlob = { data: stringToUint8Array("This is a signVerify test2.") };
122 signedText = await sign.sign(input2);
131 return await verify.verify(input2, signedText);
DsignVerifyAsyCallbackFunc.ets95 let input2: cpFw.DataBlob = { data: stringToUint8Array("This is a signVerify test2.") };
108 signedText = await signSign(sign, input2);
113 return await verifyVerify(verify, input2, signedText);
168 let input2: cpFw.DataBlob = { data: stringToUint8Array("This is a signVerify test2.") };
185 signedText = await signSign(sign, input2);
194 return await verifyVerify(verify, input2, signedText);
/test/xts/acts/ai/nncore/opstest/src/
Dselect_test.cpp34 … OHNNOperandTest input2 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input2Value, sizeof(float)}; member
37 .operands = {input0, input1, input2, output},
52 …OHNNOperandTest input2 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input2Value, 3*sizeof(float)}; member
55 .operands = {input0, input1, input2, output},
71 … OHNNOperandTest input2 = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, input2Value, 3*sizeof(float)}; member
74 .operands = {input0, input1, input2, output},
91 …OHNNOperandTest input2 = {OH_NN_FLOAT32, OH_NN_TENSOR, input2_shape, input2Value, 4*sizeof(float)}; member
94 .operands = {input0, input1, input2, output},
273 graphArgs.operands = {selectModel.input0, selectModel.input1, selectModel.input2,
274 selectModel.input2, selectModel.output};
[all …]
Dwhere_test.cpp34 …OHNNOperandTest input2 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input2Value, 3*sizeof(float)}; member
37 .operands = {input0, input1, input2, output},
52 …OHNNOperandTest input2 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input2Value, 3*sizeof(float)}; member
55 .operands = {input0, input1, input2, output},
70 OHNNOperandTest input2 = {OH_NN_FLOAT32, OH_NN_TENSOR, {1}, input2Value, sizeof(float)}; member
73 .operands = {input0, input1, input2, output},
178 graphArgs.operands = {whereModel.input0, whereModel.input1, whereModel.input2,
179 whereModel.input2, whereModel.output};
199 graphArgs.operands = {whereModel.input0, whereModel.input1, whereModel.input2,
223 …graphArgs.operands = {whereModel.input0, whereModel.input1, whereModel.input2, whereModel.output, …
/test/xts/acts/testfwk/uitest/src/main/ets/test/
Duitest.test.ets849 let input2 = await driver.findComponent(ON.type('TextInput'))
850 await input2.clearText()