Searched refs:setInput (Results 1 - 25 of 176) sorted by relevance

12345678

/frameworks/ml/nn/runtime/test/benchmark/libnnbenchmark/
H A Drun_tflite.h32 bool setInput(const uint8_t* dataPtr, size_t length);
H A Drun_tflite.cpp49 bool BenchmarkModel::setInput(const uint8_t* dataPtr, size_t length) { function in class:BenchmarkModel
/frameworks/base/core/tests/coretests/src/android/app/backup/
H A DFullBackupTest.java58 mXpp.setInput(new StringReader(
79 mXpp.setInput(new StringReader(
104 mXpp.setInput(new StringReader(
125 mXpp.setInput(new StringReader(
150 mXpp.setInput(new StringReader(
176 mXpp.setInput(new StringReader(
201 mXpp.setInput(new StringReader(
215 mXpp.setInput(new StringReader(
231 mXpp.setInput(new StringReader(
253 mXpp.setInput(ne
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicYuvToRGB.java57 public void setInput(Allocation ain) { method in class:ScriptIntrinsicYuvToRGB
H A DScriptIntrinsicBlur.java61 public void setInput(Allocation ain) { method in class:ScriptIntrinsicBlur
H A DScriptIntrinsicConvolve5x5.java74 public void setInput(Allocation ain) { method in class:ScriptIntrinsicConvolve5x5
H A DScriptIntrinsicResize.java52 public void setInput(Allocation ain) { method in class:ScriptIntrinsicResize
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DArtistic1.java32 blur.setInput(mInPixelsAllocation);
/frameworks/ml/nn/runtime/test/
H A DTestTrivialModel.cpp122 ASSERT_EQ(execution.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR);
123 ASSERT_EQ(execution.setInput(1, matrix2, sizeof(Matrix3x4)), Result::NO_ERROR);
139 ASSERT_EQ(execution2.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR);
140 ASSERT_EQ(execution2.setInput(1, matrix2, sizeof(Matrix3x4)), Result::NO_ERROR);
150 ASSERT_EQ(execution3.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR);
151 ASSERT_EQ(execution3.setInput(1, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR);
182 ASSERT_EQ(execution.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR);
183 ASSERT_EQ(execution.setInput(1, matrix2b, sizeof(Matrix4)), Result::NO_ERROR);
214 ASSERT_EQ(execution.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR);
215 ASSERT_EQ(execution.setInput(
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java43 public void setInput(String input) { method in class:CatResponseMessage
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup.h28 void setInput(const ScriptKernelID *kid, Allocation *) override;
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicYuvToRGB.java65 public void setInput(Allocation ain) { method in class:ScriptIntrinsicYuvToRGB
H A DScriptIntrinsicBlur.java74 public void setInput(Allocation ain) { method in class:ScriptIntrinsicBlur
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A DArtistic1.java35 blur.setInput(mInPixelsAllocation);
H A DConvolve3x3.java55 mIntrinsic.setInput(mInPixelsAllocation);
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DArtistic1.java35 blur.setInput(mInPixelsAllocation);
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A DUT_blur_validation.java75 scriptBlur.setInput(input1D);
77 scriptBlur.setInput(input2D);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_blur_validation.java77 scriptBlur.setInput(input1D);
79 scriptBlur.setInput(input2D);
/frameworks/ml/nn/common/operations/
H A DLSTMTest.cpp195 ASSERT_EQ(execution.setInput(LSTMCell::k##X##Tensor, X##_.data(), \
213 execution.setInput(LSTMCell::kInputToInputWeightsTensor, nullptr, 0);
214 execution.setInput(LSTMCell::kRecurrentToInputWeightsTensor, nullptr, 0);
219 execution.setInput(LSTMCell::kCellToInputWeightsTensor, nullptr, 0);
222 execution.setInput(LSTMCell::kCellToInputWeightsTensor, nullptr, 0);
223 execution.setInput(LSTMCell::kCellToForgetWeightsTensor, nullptr, 0);
224 execution.setInput(LSTMCell::kCellToOutputWeightsTensor, nullptr, 0);
229 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0);
232 execution.setInput(LSTMCell::kProjectionWeightsTensor, nullptr, 0);
233 execution.setInput(LSTMCel
[all...]
H A DLSHProjectionTest.cpp109 ASSERT_EQ(execution.setInput(LSHProjection::k##X##Tensor, X##_.data(), \
127 execution.setInput(LSHProjection::kTypeParam, &type_, sizeof(type_)),
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DExpatPerformanceTest.java85 pullParser.setInput(newInputStream(), "UTF-8");
96 pullParser.setInput(newInputStream(), "UTF-8");
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
H A DRemoteXmlPullParser.java41 void setInput(Reader in) throws XmlPullParserException, RemoteException; method in interface:RemoteXmlPullParser
43 void setInput(RemoteInputStream inputStream, String inputEncoding) method in interface:RemoteXmlPullParser
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java232 public void setInput(InputStream inputStream, String s) throws XmlPullParserException { method in class:LayoutParserWrapper
233 mDelegate.setInput(inputStream, s);
237 public void setInput(Reader reader) throws XmlPullParserException { method in class:LayoutParserWrapper
238 mDelegate.setInput(reader);
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteXmlPullParserAdapter.java68 public void setInput(Reader in) throws XmlPullParserException, RemoteException { method in class:RemoteXmlPullParserAdapter
69 mDelegate.setInput(in);
73 public void setInput(RemoteInputStream inputStream, String inputEncoding) method in class:RemoteXmlPullParserAdapter
75 mDelegate.setInput(StreamUtil.getInputStream(inputStream), inputEncoding);
/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/
H A DRemoteXmlPullParserAdapter.java75 public void setInput(Reader in) throws XmlPullParserException { method in class:RemoteXmlPullParserAdapter
77 mDelegate.setInput(in);
84 public void setInput(InputStream inputStream, String inputEncoding) method in class:RemoteXmlPullParserAdapter
87 mDelegate.setInput(RemoteInputStreamAdapter.create(inputStream), inputEncoding);

Completed in 339 milliseconds

12345678