/packages/apps/Car/libs/car-arch-common/src/com/android/car/arch/common/ |
D | LiveDataFunctions.java | 498 public static <T, U> LiveData<Pair<T, U>> pair( 499 @NonNull LiveData<T> tData, @NonNull LiveData<U> uData) { 521 public static <T, U> Observer<Pair<T, U>> split(@NonNull BiConsumer<T, U> consumer) { 537 public static <T, U, V> Function<Pair<T, U>, LiveData<V>> split( 538 @NonNull BiFunction<T, U, LiveData<V>> function) { 553 public static <T, U, R> LiveData<R> combine( 555 @NonNull LiveData<U> uData, 556 @NonNull BiFunction<T, U, R> function) { 560 private static class BinaryOperation<T, U, R> extends MediatorLiveData<R> { 562 private final BiFunction<T, U, R> mFunction; [all …]
|
/packages/apps/DocumentsUI/tests/res/raw/ |
D | images_tar | 8 �H�0220�0100HDRP�d5m^p,��MWT�U�,iGqkQ�Ğo��t�� ĩ��YZ�хm�Ջ���ɫBH�����ߝ… 10 …�.�|<C�sKⷋHK�6�b��mר��;o����0(���b���XWOw�����r�z�?���(D��Ox��Z��O���U��5�T ��L|��{�I… 13 ���ڪ��U�+Zn9�1柔�!�,�b�>�*�W��F���(�x�]^��k^C#�~���N_���a���h�7��\�3F'F�$� �qld�V��}q�X�!�… 16 P���ʈ݁-���v���)@�]��e�<X��f������%�Xh�U�}�~���=��I]�-�� 19 …U���v��R���l\�p� �I���9z�p߱�xv<��Z<zKI��k� \�x:S�8X �&�a5�O :�ڃ�/�=�N�Z���S�=���D)p幬… 25 ���/�����a��c]d��J69�M��*����!OA�!a�����X�C��LGVĕi]��S*�����AT���i�N��[��UMb������X�… 27 …��������S::�n��'j's��;X�r��>����y�ڱ�6JcG�Ǥ�4f[R��셮��jV_<��qm[�7�z�FQ�������z�F*{`x�U� 30 …U���#*${�������:�k:��X�?���,c0�O��YuɄ����E[�����{�`��Xy*g2+ۿ���j�G.z��l��3DN�1�����o��xY/4… 45 …�Y��7�?�P�\������%�h贵��$��"�r�t���)�u�9��r�Y���n��&@�ܜ��?�uL�+�U����l�~��۽�ׁ(2�N[<… 46 ���`n�-���Y��Eo�cf��}:)�U�����Ǵ��ni����"]�����3v���3\�^m�pk�f#%,����_F?O�&����c�h*Q�… [all …]
|
/packages/apps/Dialer/java/com/android/incallui/baseui/ |
D | Presenter.java | 22 public abstract class Presenter<U extends Ui> { 24 private U ui; 31 public void onUiReady(U ui) { in onUiReady() 36 public final void onUiDestroy(U ui) { in onUiDestroy() 45 public void onUiUnready(U ui) {} in onUiUnready() 51 public U getUi() { in getUi()
|
D | BaseFragment.java | 23 public abstract class BaseFragment<T extends Presenter<U>, U extends Ui> extends Fragment { 35 public abstract U getUi(); in getUi()
|
/packages/services/Car/cpp/evs/support_library/ |
D | FormatConvert.cpp | 47 float U = Uin - 128.0f; in yuvToRgbx() local 51 float Gf = Y - 0.395f*U - 0.581f*V; in yuvToRgbx() 52 float Bf = Y + 2.032f*U; in yuvToRgbx() 144 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32() local 149 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32() 150 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
|
/packages/services/Car/cpp/evs/apps/default/ |
D | FormatConvert.cpp | 44 float U = Uin - 128.0f; in yuvToRgbx() local 48 float Gf = Y - 0.395f*U - 0.581f*V; in yuvToRgbx() 49 float Bf = Y + 2.032f*U; in yuvToRgbx() 141 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32() local 146 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32() 147 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
D | ImageUtils.cpp | 374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0; in allocateImage() 375 yuv->U.width = yuv->U.pitch = yuv->V.width = yuv->V.pitch = widthUV; in allocateImage() 376 yuv->U.height = yuv->V.height = heightUV; in allocateImage() 388 yuv->U.ptr = &y[height + heightUV]; in allocateImage() 404 for (i = 0; i < img->U.height; i++, position += img->U.width) in mapYUVInfoToImage() 405 img->U.ptr[i] = position; in mapYUVInfoToImage()
|
D | MosaicTypes.h | 116 ImageType U = image + (width*height); in getV() local 117 return U[y*width+x]; in getV() 125 ImageType U = image + (width*height*2); in getU() local 126 return U[y*width+x]; in getU()
|
D | Blend.cpp | 476 imgMos.U.ptr[y][x - o] = 50 + (99 - 50) * o / tw; in DoMergeAndBlend() 484 imgMos.U.ptr[y][x + o] = imgMos.U.ptr[y][x - o]; in DoMergeAndBlend() 529 imgMos.U.ptr[y - o][x] = 50 + (99 - 50) * o / tw; in DoMergeAndBlend() 537 imgMos.U.ptr[y + o][x] = imgMos.U.ptr[y - o][x]; in DoMergeAndBlend() 600 uimg = imgMos.U.ptr[0]; in CropFinalMosaic() 662 uimg = imgMos.U.ptr[0]; in PerformFinalBlending() 956 (double)imgMos.U.ptr[jj][ii] / 100.0 : in ProcessPyramidForThisFrame() 957 1.0 - (double)imgMos.U.ptr[jj][ii] / 100.0); in ProcessPyramidForThisFrame()
|
D | ImageUtils.h | 170 BimageInfo U; variable
|
/packages/services/Car/cpp/evs/sampleDriver/ |
D | bufferCopy.cpp | 72 uint8_t U; in fillNV21FromYUYV() member 104 const uint8_t uValue = (pTopMacroPixel->U + pBotMacroPixel->U) >> 1; in fillNV21FromYUYV() 187 uint8_t U = (srcPixel >> 8) & 0xFF; in fillYUYVFromUYVY() local 192 *dst++ = (U) | in fillYUYVFromUYVY()
|
/packages/modules/NeuralNetworks/common/operations/ |
D | SimpleMath.cpp | 47 template <typename T, typename U> 59 U* tempSumBuffer = new (std::nothrow) U[getNumberOfElements(outputShape)]; in meanGeneric() 65 tflite::reference_ops::Mean<T, U>( in meanGeneric()
|
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/ |
D | Utils.java | 28 static class SparseArrayEntry<U> { 30 public final U value; 32 SparseArrayEntry(SparseArray<U> array, int index) { in SparseArrayEntry()
|
/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/loader/ |
D | TmaLoaderUtils.java | 89 static <T extends Enum, U extends Enum> List<U> getEnumArray(JSONObject json, T key, in getEnumArray() 90 Map<String, U> enumMap) { in getEnumArray() 94 List<U> result = new ArrayList<>(count); in getEnumArray()
|
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/utils/ |
D | CarUiUtils.java | 291 public static <T, U> List<U> convertList(List<T> list, Function<T, U> f) { in convertList() 296 List<U> result = new ArrayList<>(); in convertList()
|
/packages/services/Car/cpp/evs/manager/1.1/emul/ |
D | EvsEmulatedCamera.cpp | 36 const float U = Uin - 128.0f; in yuvToRgbx() local 40 const float Gf = Y - 0.395f*U - 0.581f*V; in yuvToRgbx() 41 const float Bf = Y + 2.032f*U; in yuvToRgbx() 78 uint8_t U = (srcPixel >> 8) & 0xFF; in fillRGBAFromYUYV() local 83 *(dst+0) = yuvToRgbx(Y1, U, V); in fillRGBAFromYUYV() 84 *(dst+1) = yuvToRgbx(Y2, U, V); in fillRGBAFromYUYV()
|
/packages/apps/Dialer/java/com/android/dialer/function/ |
D | BiConsumer.java | 20 public interface BiConsumer<T, U> { 23 void accept(T t, U u); in accept()
|
/packages/modules/Connectivity/service/ServiceConnectivityResources/resources-certs/ |
D | key.pem | 40 U/VeRQblq9wNkgR4pVOOV++23MK/2+DMimjb6Ez3AoIBABIXK7wKlgmU32ONjKKM 41 capJ9asq6WJuE5Q6dCL/U/bQi64V9KiPY6ur2OailW/UrBhB30a+64I6AxrzESM/
|
/packages/services/Telephony/src/com/android/services/telephony/rcs/ |
D | RcsFeatureController.java | 91 public interface FeatureConnectorFactory<U extends FeatureUpdates> { 96 FeatureConnector<U> create(Context context, int slotIndex, in create() 97 FeatureConnector.Listener<U> listener, Executor executor, String logPrefix); in create()
|
/packages/modules/IPsec/tests/iketests/assets/pem/ |
D | intermediate-ca-b-one.pem | 8 meMV6nabY4HjQXNMq22POiJBZj+U+rw34br6waljBttxCmmJac1VvgqNsSspXjRy
|
/packages/modules/IPsec/tests/cts/assets/pem/ |
D | client-a-intermediate-ca-one.pem | 8 meMV6nabY4HjQXNMq22POiJBZj+U+rw34br6waljBttxCmmJac1VvgqNsSspXjRy
|
/packages/services/Telephony/src/com/android/phone/ |
D | RcsProvisioningMonitor.java | 387 public interface FeatureConnectorFactory<U extends FeatureUpdates> { 392 FeatureConnector<U> create(Context context, int slotIndex, in create() 393 FeatureConnector.Listener<U> listener, Executor executor, String logPrefix); in create()
|
/packages/modules/Virtualization/microdroid/ |
D | uboot-env-x86_64.txt | 8 # U-Boot in x86_64 by defaults loads kernel at 0x20000000 (512MB), which is
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | internals.md | 171 1. Space (`U+0020`) 172 2. Character Tabulation (`U+000B`) 173 3. Line Feed (`U+000A`) 174 4. Carriage Return (`U+000D`)
|
/packages/providers/MediaProvider/apex/ |
D | com.android.mediaprovider.pem | 47 GwVg49Y5atrLn4cJ0kQB4Aylf/U/Oy9pt2189ihLMNt3uX3PtxRKXteG6tmzHJIn
|