Home
last modified time | relevance | path

Searched defs:input (Results 1 – 25 of 1133) sorted by relevance

12345678910>>...46

/aosp12/system/tools/aidl/tests/android/aidl/tests/
H A DITestService.aidl89 byte[] ReverseByte(in byte[] input, out byte[] repeated); in ReverseByte()
90 char[] ReverseChar(in char[] input, out char[] repeated); in ReverseChar()
91 int[] ReverseInt(in int[] input, out int[] repeated); in ReverseInt()
92 long[] ReverseLong(in long[] input, out long[] repeated); in ReverseLong()
120 @nullable List<String> RepeatNullableStringList( in RepeatNullableStringList()
122 @nullable StructuredParcelable RepeatNullableParcelable( in RepeatNullableParcelable()
125 void TakesAnIBinder(in IBinder input); in TakesAnIBinder()
126 void TakesANullableIBinder(in @nullable IBinder input); in TakesANullableIBinder()
133 @utf8InCpp String[] ReverseUtf8CppString( in ReverseUtf8CppString()
137 @nullable @utf8InCpp String[] ReverseNullableUtf8CppString( in ReverseNullableUtf8CppString()
[all …]
H A DICppJavaTests.aidl29 SimpleParcelable RepeatSimpleParcelable(in SimpleParcelable input, out SimpleParcelable repeat); in RepeatSimpleParcelable()
31 in GenericStructuredParcelable<int, StructuredParcelable, IntEnum> input, in RepeatGenericParcelable()
33 PersistableBundle RepeatPersistableBundle(in PersistableBundle input); in RepeatPersistableBundle()
36 in SimpleParcelable[] input, out SimpleParcelable[] repeated); in ReverseSimpleParcelables()
38 in PersistableBundle[] input, out PersistableBundle[] repeated); in ReversePersistableBundles()
39 Union ReverseUnion(in Union input, out Union repeated); in ReverseUnion()
41 List<IBinder> ReverseNamedCallbackList(in List<IBinder> input, out List<IBinder> repeated); in ReverseNamedCallbackList()
45 in FileDescriptor[] input, out FileDescriptor[] repeated); in ReverseFileDescriptorArray()
47 void TakesAnIBinderList(in List<IBinder> input); in TakesAnIBinderList()
48 void TakesANullableIBinderList(in @nullable List<IBinder> input); in TakesANullableIBinderList()
/aosp12/system/tools/aidl/tests/java/src/android/aidl/service/
H A DTestServiceServer.java164 public byte[] ReverseByte(byte[] input, byte[] repeated) throws RemoteException { in ReverseByte()
173 public char[] ReverseChar(char[] input, char[] repeated) throws RemoteException { in ReverseChar()
182 public int[] ReverseInt(int[] input, int[] repeated) throws RemoteException { in ReverseInt()
277 public List<String> ReverseStringList(List<String> input, List<String> repeated) in ReverseStringList()
312 public int[] RepeatNullableIntArray(int[] input) throws RemoteException { in RepeatNullableIntArray()
320 public int[] RepeatNullableIntEnumArray(int[] input) throws RemoteException { in RepeatNullableIntEnumArray()
328 public String RepeatNullableString(String input) throws RemoteException { in RepeatNullableString()
341 public void TakesAnIBinder(IBinder input) throws RemoteException { in TakesAnIBinder()
345 public void TakesANullableIBinder(IBinder input) throws RemoteException { in TakesANullableIBinder()
366 public String[] ReverseNullableUtf8CppString(String[] input, String[] repeated) in ReverseNullableUtf8CppString()
[all …]
/aosp12/frameworks/base/tools/aapt2/
H A DResourceParser_test.cpp135 std::string input = in TEST_F() local
246 std::string input = R"( in TEST_F() local
258 std::string input = R"( in TEST_F() local
265 std::string input = R"( in TEST_F() local
280 std::string input = R"( in TEST_F() local
325 std::string input = R"( in TEST_F() local
427 std::string input = R"( in TEST_F() local
459 std::string input = R"( in TEST_F() local
472 std::string input = R"( in TEST_F() local
487 std::string input = R"( in TEST_F() local
[all …]
/aosp12/packages/services/Telephony/testapps/TelephonyManagerTestApp/src/com/android/phone/testapps/telephonymanagertestapp/
H A DParameterParser.java61 Object executeParser(Class type, String input) { in executeParser()
66 private static PhoneNumberRange parsePhoneNumberRange(String input) { in parsePhoneNumberRange()
74 private Executor parseExecutor(String input) { in parseExecutor()
78 private Consumer parseConsumer(String input) { in parseConsumer()
87 private RadioAccessSpecifier parseRadioAccessSpecifier(String input) { in parseRadioAccessSpecifier()
105 private List parseList(String input) { in parseList()
129 private NumberVerificationCallback parseNumberVerificationCallback(String input) { in parseNumberVerificationCallback()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
H A DScanResultUtilTest.java49 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in convertScanResult() local
65 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in convertScanResultWithAnqpLines() local
193 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testPskSha256SaeTransitionModeCheck() local
212 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testPskSaeTransitionModeCheck() local
231 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testPskNotInTransitionModeCheck() local
250 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testSaeNotInTransitionModeCheck() local
269 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testFtEapAkmSupportedNetwork() local
289 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testFilsSha256AkmSupportedNetwork() local
310 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testFilsSha384AkmSupportedNetwork() local
330 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid, in testEapNetworkNotPasspointNetwork() local
[all …]
/aosp12/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DColorSpace.java42 ByteBuffer input, ByteBuffer output, int width, int height) { in convertYuv420pToRgba8888()
61 ByteBuffer input, ByteBuffer output, int width, int height) { in convertArgb8888ToRgba8888()
80 ByteBuffer input, ByteBuffer output, int width, int height) { in convertRgba8888ToHsva8888()
99 ByteBuffer input, ByteBuffer output, int width, int height) { in convertRgba8888ToYcbcra8888()
105 private static void expectInputSize(ByteBuffer input, int expectedSize) { in expectInputSize()
122 ByteBuffer input, ByteBuffer output, int width, int height); in nativeYuv420pToRgba8888()
125 ByteBuffer input, ByteBuffer output, int width, int height); in nativeArgb8888ToRgba8888()
128 ByteBuffer input, ByteBuffer output, int width, int height); in nativeRgba8888ToHsva8888()
131 ByteBuffer input, ByteBuffer output, int width, int height); in nativeRgba8888ToYcbcra8888()
/aosp12/system/tools/aidl/tests/
H A Daidl_test_service.cpp359 Status ReverseBoolean(const vector<bool>& input, in ReverseBoolean()
364 Status ReverseByte(const vector<uint8_t>& input, in ReverseByte()
369 Status ReverseChar(const vector<char16_t>& input, in ReverseChar()
374 Status ReverseInt(const vector<int32_t>& input, in ReverseInt()
379 Status ReverseLong(const vector<int64_t>& input, in ReverseLong()
384 Status ReverseFloat(const vector<float>& input, in ReverseFloat()
389 Status ReverseDouble(const vector<double>& input, in ReverseDouble()
394 Status ReverseString(const vector<String16>& input, in ReverseString()
435 Status ReverseStringList(const vector<String16>& input, in ReverseStringList()
505 Status TakesANullableIBinder(const sp<IBinder>& input) { in TakesANullableIBinder()
[all …]
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/
H A DITestService.cpp556 …nst ::std::vector<bool>& input, ::std::vector<bool>* repeated, ::std::vector<bool>* _aidl_return) { in ReverseBoolean()
602 …::vector<uint8_t>& input, ::std::vector<uint8_t>* repeated, ::std::vector<uint8_t>* _aidl_return) { in ReverseByte()
648 …ector<char16_t>& input, ::std::vector<char16_t>* repeated, ::std::vector<char16_t>* _aidl_return) { in ReverseChar()
694 …::vector<int32_t>& input, ::std::vector<int32_t>* repeated, ::std::vector<int32_t>* _aidl_return) { in ReverseInt()
740 …::vector<int64_t>& input, ::std::vector<int64_t>* repeated, ::std::vector<int64_t>* _aidl_return) { in ReverseLong()
786 … ::std::vector<float>& input, ::std::vector<float>* repeated, ::std::vector<float>* _aidl_return) { in ReverseFloat()
832 …std::vector<double>& input, ::std::vector<double>* repeated, ::std::vector<double>* _aidl_return) { in ReverseDouble()
1302 …::optional<::std::vector<int32_t>>& input, ::std::optional<::std::vector<int32_t>>* _aidl_return) { in RepeatNullableIntArray()
1454 … ::std::optional<::android::String16>& input, ::std::optional<::android::String16>* _aidl_return) { in RepeatNullableString()
1568 …oid::binder::Status BpTestService::TakesAnIBinder(const ::android::sp<::android::IBinder>& input) { in TakesAnIBinder()
[all …]
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
H A DAtIdReqTest.java59 ByteBuffer input = ByteBuffer.wrap(AT_PERMANENT_ID_REQ); in testDecodeAtPermanentIdReq() local
71 ByteBuffer input = ByteBuffer.wrap(PERMANENT_ID_INVALID_LENGTH); in testDecodeAtPermanentIdReqInvalidLength() local
90 ByteBuffer input = ByteBuffer.wrap(AT_ANY_ID_REQ); in testDecodeAtAnyIdReq() local
102 ByteBuffer input = ByteBuffer.wrap(ANY_ID_INVALID_LENGTH); in testDecodeAtAnyIdReqInvalidLength() local
121 ByteBuffer input = ByteBuffer.wrap(AT_FULL_AUTH_ID_REQ); in testDecodeAtFullauthIdReq() local
133 ByteBuffer input = ByteBuffer.wrap(FULL_AUTH_ID_INVALID_LENGTH); in testDecodeAtFullauthIdReqInvalidLength() local
H A DAtResTest.java52 ByteBuffer input = ByteBuffer.wrap(AT_RES); in testDecode() local
64 ByteBuffer input = ByteBuffer.wrap(AT_RES_INVALID_RES_LENGTH); in testDecodeInvalidResLength() local
74 ByteBuffer input = ByteBuffer.wrap(AT_RES_SHORT_RES); in testDecodeShortResLength() local
84 ByteBuffer input = ByteBuffer.wrap(AT_RES_LONG_RES); in testDecodeLongResLength() local
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/
H A DITestService.java93 @Override public int[] ReverseInt(int[] input, int[] repeated) throws android.os.RemoteException in ReverseInt()
152 @Override public int[] RepeatNullableIntArray(int[] input) throws android.os.RemoteException in RepeatNullableIntArray()
2449 public byte[] ReverseByte(byte[] input, byte[] repeated) throws android.os.RemoteException; in ReverseByte()
2450 public char[] ReverseChar(char[] input, char[] repeated) throws android.os.RemoteException; in ReverseChar()
2451 public int[] ReverseInt(int[] input, int[] repeated) throws android.os.RemoteException; in ReverseInt()
2452 public long[] ReverseLong(long[] input, long[] repeated) throws android.os.RemoteException; in ReverseLong()
2469 public int[] RepeatNullableIntArray(int[] input) throws android.os.RemoteException; in RepeatNullableIntArray()
2470 public byte[] RepeatNullableByteEnumArray(byte[] input) throws android.os.RemoteException; in RepeatNullableByteEnumArray()
2471 public int[] RepeatNullableIntEnumArray(int[] input) throws android.os.RemoteException; in RepeatNullableIntEnumArray()
2472 public long[] RepeatNullableLongEnumArray(long[] input) throws android.os.RemoteException; in RepeatNullableLongEnumArray()
[all …]
/aosp12/art/tools/
H A Dstream-trace-converter.py63 def Copy(input, output, length): argument
78 def ProcessDataHeader(self, input, body): argument
114 def ProcessMethod(self, input): argument
120 def ProcessThread(self, input): argument
127 def ProcessTraceSummary(self, input): argument
133 def ProcessSpecial(self, input): argument
144 def Process(self, input, body): argument
/aosp12/system/bt/gd/common/
H A Dinit_flags_test.cc26 const char* input[] = {"INIT_logging_debug_enabled_for_all=true", nullptr}; in TEST() local
34 const char* input[] = {"INIT_logging_debug_enabled_for_tags=foo,bar,hello", nullptr}; in TEST() local
44 const char* input[] = {"INIT_logging_debug_disabled_for_tags=foo,bar,hello", nullptr}; in TEST() local
54 const char* input[] = {"INIT_logging_debug_enabled_for_tags=foo,hello", in TEST() local
/aosp12/packages/apps/Dialer/java/com/android/dialer/common/concurrent/
H A DDialerExecutor.java124 OutputT doInBackground(@Nullable InputT input) throws Throwable; in doInBackground()
172 void executeSerial(@Nullable InputT input); in executeSerial()
182 void executeSerialWithWait(@Nullable InputT input, long waitMillis); in executeSerialWithWait()
189 void executeParallel(@Nullable InputT input); in executeParallel()
197 @NonNull ExecutorService executorService, @Nullable InputT input); in executeOnCustomExecutorService()
H A DDialerUiTaskFragment.java121 void executeSerial(InputT input) { in executeSerial()
125 void executeSerialWithWait(InputT input, long waitMillis) { in executeSerialWithWait()
134 void executeParallel(InputT input) { in executeParallel()
138 void executeOnCustomExecutor(ExecutorService executor, InputT input) { in executeOnCustomExecutor()
143 private void runTask(@Nullable InputT input) { in runTask()
H A DDefaultDialerExecutorFactory.java180 public void executeSerial(@Nullable InputT input) { in executeSerial()
185 public void executeSerialWithWait(@Nullable InputT input, long waitMillis) { in executeSerialWithWait()
190 public void executeParallel(@Nullable InputT input) { in executeParallel()
196 @NonNull ExecutorService executorService, @Nullable InputT input) { in executeOnCustomExecutorService()
197 dialerUiTaskFragment.executeOnCustomExecutor(Assert.isNotNull(executorService), input); in executeOnCustomExecutorService() local
226 public void executeSerial(@Nullable InputT input) { in executeSerial()
231 public void executeSerialWithWait(@Nullable InputT input, long waitMillis) { in executeSerialWithWait()
241 public void executeParallel(@Nullable InputT input) { in executeParallel()
247 @NonNull ExecutorService executorService, @Nullable InputT input) { in executeOnCustomExecutorService()
251 private void run(@Nullable InputT input) { in run()
/aosp12/hardware/interfaces/wifi/1.5/default/tests/
H A Dringbuffer_unit_tests.cpp41 const std::vector<uint8_t> input(maxBufferSize_ / 2, '0'); in TEST_F() local
51 const std::vector<uint8_t> input(maxBufferSize_ / 2, '0'); in TEST_F() local
63 const std::vector<uint8_t> input(maxBufferSize_ / 2, '0'); in TEST_F() local
74 const std::vector<uint8_t> input = {}; in TEST_F() local
80 const std::vector<uint8_t> input(maxBufferSize_ + 1, '0'); in TEST_F() local
86 const std::vector<uint8_t> input(maxBufferSize_, '0'); in TEST_F() local
/aosp12/frameworks/native/libs/gralloc/types/
H A DGralloc4.cpp334 status_t encodeInteger(const T& input, OutputHidlVec* output) { in encodeInteger()
347 status_t decodeInteger(InputHidlVec* input, T* output) { in decodeInteger()
372 status_t decodeString(InputHidlVec* input, std::string* output) { in decodeString()
506 status_t encodeXyColor(const XyColor& input, OutputHidlVec* output) { in encodeXyColor()
514 status_t decodeXyColor(InputHidlVec* input, XyColor* output) { in decodeXyColor()
530 status_t encodeRect(const Rect& input, OutputHidlVec* output) { in encodeRect()
546 status_t decodeRect(InputHidlVec* input, Rect* output) { in decodeRect()
740 status_t decodePlaneLayout(InputHidlVec* input, PlaneLayout* output) { in decodePlaneLayout()
1147 status_t encodeInt32(const MetadataType& metadataType, int32_t input, in encodeInt32()
1167 status_t encodeInt64(const MetadataType& metadataType, int64_t input, in encodeInt64()
[all …]
/aosp12/frameworks/native/libs/gralloc/types/fuzzer/
H A Dmain.cpp31 const std::vector<uint8_t>& input) { in doFuzz()
46 size_t fillInMetadataType(const std::vector<uint8_t>& input, MetadataType* outMetadataType) { in fillInMetadataType()
68 const std::vector<uint8_t>& input) { in doFuzzVendorHelper()
90 void fuzz(uint8_t options, uint8_t instruction, const std::vector<uint8_t>& input) { in fuzz()
116 std::vector<uint8_t> input(data, data + size); in LLVMFuzzerTestOneInput() local
/aosp12/frameworks/native/libs/binder/tests/unit_fuzzers/
H A DTextOutputFuzz.cpp39 std::string input = fdp.ConsumeBytesAsString( in LLVMFuzzerTestOneInput() local
46 android::HexDump input(str.c_str(), sizeof(str.c_str())); in LLVMFuzzerTestOneInput() local
51 android::TypeCode input(fdp.ConsumeIntegral<uint32_t>()); in LLVMFuzzerTestOneInput() local
/aosp12/bionic/tests/
H A Dmath_data_test.h25 T1 input; member
31 T1 input; member
37 T1 input; member
43 T1 input; member
57 T input; member
64 T input; member
/aosp12/packages/providers/MediaProvider/tests/src/com/android/providers/media/util/
H A DDatabaseUtilsTest.java256 final Pair<String, String> input = Pair.create( in testRecoverAbusiveGroupBy_Buckets() local
267 final Pair<String, String> input = Pair.create( in testRecoverAbusiveGroupBy_BucketsByPath() local
278 final Pair<String, String> input = Pair.create( in testRecoverAbusiveGroupBy_113651872() local
289 final Pair<String, String> input = Pair.create( in testRecoverAbusiveGroupBy_113652519() local
300 final Pair<String, String> input = Pair.create( in testRecoverAbusiveGroupBy_113652519_longer() local
311 final Pair<String, String> input = Pair.create( in testRecoverAbusiveGroupBy_115340326() local
322 final Pair<String, String> input = Pair.create( in testRecoverAbusiveGroupBy_116845885() local
/aosp12/packages/services/Telephony/src/com/android/phone/
H A DSpecialCharSequenceMgr.java77 static boolean handleChars(Context context, String input) { in handleChars()
104 String input, in handleChars()
130 String input, in handleCharsForLockedDevice()
156 static private boolean handleSecretCode(String input) { in handleSecretCode()
167 static private boolean handleAdnEntry(Context context, String input) { in handleAdnEntry()
230 static private boolean handlePinEntry(Context context, String input, in handlePinEntry()
281 String input) { in handleIMEIDisplay()
307 private static boolean handleRegulatoryInfoDisplay(Context context, String input) { in handleRegulatoryInfoDisplay()
/aosp12/packages/apps/Contacts/src/com/android/contacts/model/
H A DAccountTypeManager.java87 public boolean apply(@Nullable AccountInfo input) { in apply()
93 public boolean apply(@Nullable AccountInfo input) { in apply()
99 public boolean apply(@Nullable AccountInfo input) { in apply()
106 public boolean apply(@Nullable AccountInfo input) { in apply()

12345678910>>...46