/cts/tests/signature/lib/common/src/android/signature/cts/ |
D | BufferedReaderLineSpliterator.java | 23 public BufferedReaderLineSpliterator(BufferedReader reader, Function<String, T> converter) { in BufferedReaderLineSpliterator() argument 26 mConverter = converter; in BufferedReaderLineSpliterator() 31 BiFunction<String, Integer, T> converter) { in BufferedReaderLineSpliterator() argument 35 mLineNumConverter = converter; in BufferedReaderLineSpliterator()
|
D | ByteBufferLineSpliterator.java | 24 Function<String, T> converter) { in ByteBufferLineSpliterator() argument 27 mConverter = converter; in ByteBufferLineSpliterator()
|
/cts/tests/tests/security/src/android/security/cts/ |
D | EffectBundleTest.java | 555 ByteBuffer converter = ByteBuffer.allocate(4); in intToByteArray() local 556 converter.order(ByteOrder.nativeOrder()); in intToByteArray() 557 converter.putInt(value); in intToByteArray() 558 return converter.array(); in intToByteArray() 562 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToInt() local 563 converter.order(ByteOrder.nativeOrder()); in byteArrayToInt() 564 return converter.getInt(offset); in byteArrayToInt() 568 ByteBuffer converter = ByteBuffer.allocate(2); in shortToByteArray() local 569 converter.order(ByteOrder.nativeOrder()); in shortToByteArray() 571 converter.putShort(sValue); in shortToByteArray() [all …]
|
/cts/tools/signature-tools/src/signature/converter/doclet/ |
D | DocletFactory.java | 17 package signature.converter.doclet; 25 import signature.converter.Visibility; 55 DocletToSigConverter converter = new DocletToSigConverter(); in loadApi() local 56 IApi api = converter.convertDocletRoot(name, root, visibility, in loadApi()
|
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
D | FutureConnection.java | 37 public FutureConnection(Function<IBinder, T> converter) { in FutureConnection() argument 38 mConverter = converter; in FutureConnection()
|
/cts/tests/signature/tests/src/android/signature/cts/tests/ |
D | BufferedReaderLineSpliteratorTest.java | 62 Function<String, Integer> converter) { in createSpliterator() argument 64 new BufferedReader(new StringReader(data)), converter); in createSpliterator()
|
D | ByteBufferLineSpliteratorTest.java | 60 Function<String, Integer> converter) { in createSpliterator() argument 62 converter); in createSpliterator()
|
D | LineSpliteratorTestBase.java | 47 Function<String, Integer> converter); in createSpliterator() argument
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | SimpleCursorAdapterTest.java | 282 SimpleCursorAdapter.CursorToStringConverter converter = in testAccessCursorToStringConverter() local 284 simpleCursorAdapter.setCursorToStringConverter(converter); in testAccessCursorToStringConverter() 285 assertSame(converter, simpleCursorAdapter.getCursorToStringConverter()); in testAccessCursorToStringConverter() 345 SimpleCursorAdapter.CursorToStringConverter converter = in testConvertToString() local 347 simpleCursorAdapter.setCursorToStringConverter(converter); in testConvertToString() 350 verify(converter, times(1)).convertToString(curWith3Columns); in testConvertToString()
|
/cts/tests/tests/animation/src/android/animation/cts/ |
D | PropertyValuesHolderTest.java | 516 TypeConverter<PointF, Float> converter = new TypeConverter<PointF, Float>( in testOfObject_Converter() local 539 PropertyValuesHolder.ofObject(property, converter, path); in testOfObject_Converter()
|
D | ObjectAnimatorTest.java | 707 TypeConverter<PointF, Float> converter = new TypeConverter<PointF, Float>( in testOfObject_Converter() local 718 final ObjectAnimator anim1 = ObjectAnimator.ofObject(target1, "distance", converter, path); in testOfObject_Converter()
|