/frameworks/base/libs/hwui/utils/ |
D | Pair.h | 25 template <typename F, typename S> 27 F first; 32 Pair(const F& f, const S& s) : first(f), second(s) {} in Pair() 34 inline const F& getFirst() const { return first; } in getFirst() 41 template <typename F, typename S> 42 struct trait_trivial_ctor<uirenderer::Pair<F, S> > { 43 enum { value = aggregate_traits<F, S>::has_trivial_ctor }; 45 template <typename F, typename S> 46 struct trait_trivial_dtor<uirenderer::Pair<F, S> > { 47 enum { value = aggregate_traits<F, S>::has_trivial_dtor }; [all …]
|
/frameworks/base/services/core/java/com/android/server/ |
D | IntentResolver.java | 48 public abstract class IntentResolver<F, R extends Object> { 54 public void addFilter(F f) { in addFilter() 150 private ArrayList<F> collectFilters(F[] array, IntentFilter matching) { in collectFilters() 151 ArrayList<F> res = null; in collectFilters() 154 F cur = array[i]; in collectFilters() 169 public ArrayList<F> findFilters(IntentFilter matching) { in findFilters() 181 ArrayList<F> res = null; in findFilters() 182 for (F cur : mFilters) { in findFilters() 194 public void removeFilter(F f) { in removeFilter() 199 protected void removeFilterInternal(F f) { in removeFilterInternal() [all …]
|
/frameworks/base/libs/hwui/thread/ |
D | WorkQueue.h | 82 template <class F> 83 void postAt(nsecs_t time, F&& func) { in postAt() 84 enqueue(WorkItem{time, std::function<void()>(std::forward<F>(func))}); in postAt() 87 template <class F> 88 void postDelayed(nsecs_t delay, F&& func) { in postDelayed() 89 enqueue(WorkItem{clock::now() + delay, std::function<void()>(std::forward<F>(func))}); in postDelayed() 92 template <class F> 93 void post(F&& func) { in post() 94 postAt(0, std::forward<F>(func)); in post() 97 template <class F> [all …]
|
D | CommonPool.h | 85 template <class F> 86 static auto async(F&& func) -> std::future<decltype(func())> { 88 auto task = std::make_shared<task_t>(std::forward<F>(func)); 93 template <class F> 94 static auto runSync(F&& func) -> decltype(func()) { 95 std::packaged_task<decltype(func())()> task{std::forward<F>(func)};
|
/frameworks/compile/slang/ |
D | slang_rs_export_func.cpp | 53 RSExportFunc *F; in Create() local 61 F = new RSExportFunc(Context, Name, FD); in Create() 65 F->mParamPacketType = nullptr; in Create() 69 std::string Id = CreateDummyName("helper_func_param", F->getName()); in Create() 86 F->getName().c_str()); in Create() 113 "reflection\n", F->getName().c_str()); in Create() 120 F->mParamPacketType = static_cast<RSExportRecordType *>(ET); in Create() 123 return F; in Create() 146 const RSExportRecordType::Field *F = *FI; in checkParameterPacketType() local 148 llvm::Type *T1 = F->getType()->getLLVMType(); in checkParameterPacketType() [all …]
|
/frameworks/base/core/java/com/android/internal/util/function/pooled/ |
D | OmniFunction.java | 53 abstract class OmniFunction<A, B, C, D, E, F, G, H, I, J, K, R> implements 56 HexFunction<A, B, C, D, E, F, R>, HeptFunction<A, B, C, D, E, F, G, R>, 57 OctFunction<A, B, C, D, E, F, G, H, R>, NonaFunction<A, B, C, D, E, F, G, H, I, R>, 58 DecFunction<A, B, C, D, E, F, G, H, I, J, R>, 59 UndecFunction<A, B, C, D, E, F, G, H, I, J, K, R>, 61 QuintConsumer<A, B, C, D, E>, HexConsumer<A, B, C, D, E, F>, 62 HeptConsumer<A, B, C, D, E, F, G>, OctConsumer<A, B, C, D, E, F, G, H>, 63 NonaConsumer<A, B, C, D, E, F, G, H, I>, DecConsumer<A, B, C, D, E, F, G, H, I, J>, 64 UndecConsumer<A, B, C, D, E, F, G, H, I, J, K>, 69 abstract R invoke(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j, K k); in invoke() [all …]
|
D | PooledLambda.java | 1034 static <A, B, C, D, E, F> PooledRunnable obtainRunnable( in obtainRunnable() 1035 HexConsumer<? super A, ? super B, ? super C, ? super D, ? super E, ? super F> function, in obtainRunnable() 1036 A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) { in obtainRunnable() 1056 static <A, B, C, D, E, F, R> PooledSupplier<R> obtainSupplier( in obtainSupplier() 1057 HexFunction<? super A, ? super B, ? super C, ? super D, ? super E, ? super F, in obtainSupplier() argument 1058 ? extends R> function, A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) { in obtainSupplier() 1092 static <A, B, C, D, E, F> Message obtainMessage( in obtainMessage() 1093 HexConsumer<? super A, ? super B, ? super C, ? super D, ? super E, ? super F> function, in obtainMessage() 1094 A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) { in obtainMessage() 1118 static <A, B, C, D, E, F, G> PooledRunnable obtainRunnable( in obtainRunnable() [all …]
|
/frameworks/compile/libbcc/lib/ |
D | RSScreenFunctionsPass.cpp | 47 bool isLegal(llvm::Function &F) { in isLegal() argument 53 if (!F.empty()) in isLegal() 56 llvm::StringRef FName = F.getName(); in isLegal() 80 for(auto &F: FunctionList) { in runOnModule() local 81 if (!isLegal(F)) { in runOnModule() 83 F.getName().str().c_str()); in runOnModule()
|
D | RSX86CallConvPass.cpp | 44 bool IsRSFunctionOfInterest(llvm::Function &F) { in IsRSFunctionOfInterest() argument 46 if (!F.empty()) // defined locally in IsRSFunctionOfInterest() 50 llvm::StringRef FName = F.getName(); in IsRSFunctionOfInterest() 60 bool IsDerefNeeded(llvm::Function *F, llvm::Argument &Arg) { in IsDerefNeeded() argument 79 llvm::StringRef FName = F->getName(); in IsDerefNeeded() 94 bool FillArgsToDeref(llvm::Function *F, std::vector<unsigned> &ArgNums) { in FillArgsToDeref() argument 97 for (auto &Arg: F->getArgumentList()) { in FillArgsToDeref() 98 if (IsDerefNeeded(F, Arg)) { in FillArgsToDeref() 103 F->getName().str().c_str()); in FillArgsToDeref()
|
/frameworks/compile/slang/StripUnkAttr/ |
D | strip_unknown_attributes.cpp | 23 bool stripUnknownAttributes(llvm::Function &F) { in stripUnknownAttributes() argument 25 for (llvm::Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); in stripUnknownAttributes() 33 llvm::AttributeSet ToStrip = llvm::AttributeSet::get(F.getContext(), in stripUnknownAttributes() 39 F.removeFnAttr(llvm::Attribute::ArgMemOnly); in stripUnknownAttributes()
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | MessageQueue.h | 37 template <typename F> 42 explicit Task(F&& f) : mTask(std::move(f)) {} in Task() 46 using T = std::invoke_result_t<F>; 50 template <typename F> 51 inline auto makeTask(F&& f) { in makeTask() 52 sp<Task<F>> task = new Task<F>(std::move(f)); in makeTask()
|
/frameworks/native/services/surfaceflinger/ |
D | Promise.h | 58 template <typename F, typename R = std::invoke_result_t<F, T>> 59 auto then(F&& op) && -> Chain<FutureResult<R>> { 61 [](auto&& f, F&& op) { 69 std::move(future), std::forward<F>(op));
|
/frameworks/base/tests/LegacyRestoreTest/ |
D | kk-fixed-encrypted-settings-abcd.ab | 12 �����������wz7-L-���|lt���=Ź��d�@Ɨ5�4$�s�+89��t�Fʹ�P{�r�������AE�l�]p�g��<>��6�����w�p�;�i… 13 &�R���o�!�D�ɁF v�,�]�"��\(��g�z�� �ߙ5G�n��{2� 14 Y?^[��S�|�+����u��H!�D���F�o�7�_-�p� 21 …`��$�|��3��[c�g�lK7��Q~��3�.;ݒ�����aX������ĈL*�Č�F��[u(��+ڛ���x��f�i����b-nYkܷ���(j��B���… 22 +� �-��i���F��u휴�%����mc�tke�}{�#4�;3H�{�;3�n�v�h��0�281d\�,�ڑ�2�; 23 …��8��ӑa�і��|W��x��?�RE�W���.�t0:�� Gw�M3}p�9��Q褢|�6�U.Z(�����w�]-�%ʅ��F�>z)��3�u-G
|
/frameworks/base/services/tests/servicestests/res/raw/ |
D | backup_telephony_with_password | 13 …�'O��MFa��������A���vI�>O�a��������R!�h$1œ*1�<zI�|��>��ű�K-� EO�F����17p�0QlB�����… 16 �i�8H���-M"�n�Df�*�}`Jo(�9�)�i��^[�E4��]Ѽ�Ҳ7Џ�Ӹ���F���*�m��K�w�C$ïJ���7�7R��i���fK����\�/… 24 …@Ɉ�ɌT I��'�ɽ��o�c�m��3;,�I���?/�i�s��X��i�3Y��U?�k�g��x�0��k��}E⣛,��F���R)̌1?��m>gof�X�q�… 26 ��#�$�A���Sd5�S��^���{���F�L��d`�VQ̗hC���mwT GB¥�8p�p,��)�⊯L�L!/3Xv�Иf=�b<�m?��g�X�@�ф��… 27 B0"�eE'S���5�� P����S�f/�-B�A�3��"�]Ht��Ax@�����,x�^HS�D#�<%+��S��F�D���b���ڇ�B�?��_:�cpi>/… 29 d�Wĥb$b�9Qt[,�F|˩g��hY��)K���Jz�yj�T�p4��f�QMR��;o�_b�{n�Xc�t)^v?�� >Ze��̈́��Yq[��Al=W��s… 37 …F(C�y�p���Lm~d����&�%h��b�1;�L�����g��A%���!�W?b`?tnYg�����u8�WͲ�k8��z�^�o���F�z^�Q��EMGI… 38 …2N��P�x�$���K�qV��lg���vu���El����$~N�*n�`�T�β�ѹ��j:��6�'庤�ĝB�AK�F��M_�+�D���a[�[�V… 41 hRU�`��T<�Vyv[��b26N,5��~G���SAP�gx7��ڎK��l�F�F=U0���E)`���Kƺ'��ڌ/����n�>ނ���g�cT�M����.33… 53 n�#��Jc.f(�;��H�n�w/�F�< X��~�^,2p˪(剃%������Ӝ��L��o�G��B���j�7I�%9�|ͬn [all …]
|
D | backup_telephony_no_password | 6 …�����-P�����z���*��p(�o�_��,F���@('��o(��>(/�*��,@���S���T* � (�?�`$… 14 /�� �h;$��v��ZAaH�F A�_��P��"�<<��E"1�F��PG��p4 18 … �����G8��Y�@ ����a�;,�D��1 ��� ��vxl�(<7|"�Aȿ`F���o@P��c�l��j���QQ �F��p�@, 19 B v��F������������?;��?��˅`pp<z�c��i���k ��- 21 e��������e����?������;A�h����NBA�����Qr%u��.��!��+Z}��d���1J����S��~�'�5�����e�/�Fܐ�Xn… 23 …�'?��Nx�sD��/3�ө�$����p��q�6L�?���Ұ�lv��S�q�BU�=��ئ�������u�7��o�Ŋ�>�F%ߛ�n��[߿j��?o�B���… 24 y��ط��IZrzp�ۂ}m��������t�|�(m�7�miQfm7B_��9k���`��Eo'=&���Oo�u�&�Eoz��h�����F��y� 26 …�UFx�n� Иx�L+<��F�'�|:x�BSâwW��2������K���h^�����)|����jV���d&�l^�d|��<�)!(¢3jk�9��K4U��… 35 …�%�{{�4G����>}��а~oLH�>�w� ��?lA<Qb�ݛRZ.��T��_nĹ��k4���78�z��g��C���F#�r3���~�}>V�o���+K… 38 …���6������i�ޘ�[ɏr;��HI���~�k�#�����i�6n ����d�jTn3��8Ӆ>�I*���aӼA�*�F�g)��.��J�d��&��TmЅ
|
/frameworks/native/services/sensorservice/ |
D | Fusion.cpp | 417 mat34_t F; in getF() local 423 F[0].x = q.w; F[1].x =-q.z; F[2].x = q.y; in getF() 424 F[0].y = q.z; F[1].y = q.w; F[2].y =-q.x; in getF() 425 F[0].z =-q.y; F[1].z = q.x; F[2].z = q.w; in getF() 426 F[0].w =-q.x; F[1].w =-q.y; F[2].w =-q.z; in getF() 427 return F; in getF()
|
/frameworks/av/media/img_utils/include/img_utils/ |
D | Pair.h | 28 template<typename F, typename S> 31 F first; 38 Pair(const F& f, const S& s) : first(f), second(s) {} in Pair()
|
/frameworks/compile/libbcc/tools/bcc_strip_attr/ |
D | bcc_strip_attr.cpp | 58 bool runOnFunction(Function &F) { in runOnFunction() argument 61 if (F.hasFnAttribute("target-cpu") || in runOnFunction() 62 F.hasFnAttribute("target-features")) { in runOnFunction() 66 AttributeSet ToStrip = AttributeSet::get(F.getContext(), in runOnFunction() 68 F.removeAttributes(AttributeSet::FunctionIndex, ToStrip); in runOnFunction()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | ValueEnumerator.cpp | 81 for (const Function &F : M) { in ValueEnumerator() local 82 for (const Argument &A : F.args()) in ValueEnumerator() 85 for (const BasicBlock &BB : F) in ValueEnumerator() 456 void ValueEnumerator::incorporateFunction(const Function &F) { in incorporateFunction() argument 462 for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end(); in incorporateFunction() 469 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { in incorporateFunction() 486 EnumerateAttributes(F.getAttributes()); in incorporateFunction() 492 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { in incorporateFunction() 527 static void IncorporateFunctionInfoGlobalBBIDs(const Function *F, in IncorporateFunctionInfoGlobalBBIDs() argument 530 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) in IncorporateFunctionInfoGlobalBBIDs()
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | ValueEnumerator.cpp | 81 for (const Function &F : M) { in ValueEnumerator() local 82 for (const Argument &A : F.args()) in ValueEnumerator() 85 for (const BasicBlock &BB : F) in ValueEnumerator() 456 void ValueEnumerator::incorporateFunction(const Function &F) { in incorporateFunction() argument 462 for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end(); in incorporateFunction() 469 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { in incorporateFunction() 486 EnumerateAttributes(F.getAttributes()); in incorporateFunction() 492 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { in incorporateFunction() 527 static void IncorporateFunctionInfoGlobalBBIDs(const Function *F, in IncorporateFunctionInfoGlobalBBIDs() argument 530 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) in IncorporateFunctionInfoGlobalBBIDs()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | ValueEnumerator.cpp | 81 for (const Function &F : M) { in ValueEnumerator() local 82 for (const Argument &A : F.args()) in ValueEnumerator() 85 for (const BasicBlock &BB : F) in ValueEnumerator() 456 void ValueEnumerator::incorporateFunction(const Function &F) { in incorporateFunction() argument 462 for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end(); in incorporateFunction() 469 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { in incorporateFunction() 486 EnumerateAttributes(F.getAttributes()); in incorporateFunction() 492 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { in incorporateFunction() 527 static void IncorporateFunctionInfoGlobalBBIDs(const Function *F, in IncorporateFunctionInfoGlobalBBIDs() argument 530 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) in IncorporateFunctionInfoGlobalBBIDs()
|
/frameworks/base/core/java/android/util/ |
D | Pair.java | 26 public class Pair<F, S> { 27 public final F first; 36 public Pair(F first, S second) { in Pair()
|
/frameworks/base/media/tests/contents/media_api/music/ |
D | test_amr_ietf.amr | 4 a�����0�@<@P7��h�T����~�2)J�Ű΄УE?���<jT<��h�w���J1nj�$� �pX�av���<0F=�{�KT�:���c*��e���V� 43 …���E�M�������<�y:��!�R�.UCR�p��.�2}`����<�)��)�l��T�h���~\�(�_��<������K������%��F 54 …Z��D}��c���r�K`<zXA�5�a��J�ڢ����C��0*h��j@<"/q�ץ�w��[���W�ڼ�U�qԖ?�<F{t��y���ԛS��]�����… 90 �����F���j�/8�`; 95 Ǣ�w��.g^�e����8���<(7�1��l#�,��m`G�vYrL�~��$�1��<F_�Y�K�6�)��M|R2E/y�"��-R`<F�W)��ֈ\����D0�… 108 V��Id?�%%'�b���&����qF`<�p,���0�*�������"��;���3^�:�<Rdr����D�J�k(���wx�|��W��u�g<E{��… 125 j78L�<RRp`_:M:���|3-�Ɩ9~+I[go���<�Zm/���s������a�dD[ ^S\˶߰<�b�FV�N�S�hN�ּ�CB^�6�L0<�ɖ… 150 …{"=E��o���'��N�c�iɤ� <Dl��^��U�ڊ�V�W�j�밬L\Oo&2i�<m{��lKU�Js6�a�x�Uu�F\[�-��<�3�'��<�+7W�… 160 F�+5�)L���0<RU��6��ل�5��H������F����HQ<R�'�o�+E�<(%�F���o�����#�z60<DL��S�g�5�.�� �����f… 161 …/�m`< t�VȊT���<0K�G��jr���ߐ�IzS�b�H,d0<x:��%�c��|���6/e�:�7@8���p<D6w�F���gZ��rB��Γ [all …]
|
/frameworks/av/media/libaudioprocessing/ |
D | AudioResamplerFirGen.h | 229 inline double Poly7(double A, double B, double C, double D, double E, double F, double G, 231 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G)))))); 234 inline double Poly9(double A, double B, double C, double D, double E, double F, double G, 236 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G + x * (H + x * (I)))))))); 267 inline double Poly7(double A, double B, double C, double D, double E, double F, double G, 270 return Poly4(A, B, C, D, x, x2) + Poly3(E, F, G, x, x2) * (x2 * x2); 273 inline double Poly8(double A, double B, double C, double D, double E, double F, double G, 275 return Poly4(A, B, C, D, x, x2) + Poly4(E, F, G, H, x, x2) * x4; 278 inline double Poly9(double A, double B, double C, double D, double E, double F, double G, 285 return Poly8(A, B, C, D, E, F, G, H, x, x2, x4) + I * (x4 * x4); [all …]
|
/frameworks/base/libs/hwui/renderthread/ |
D | VulkanManager.cpp | 56 #define GET_PROC(F) m##F = (PFN_vk##F)vkGetInstanceProcAddr(VK_NULL_HANDLE, "vk" #F) argument 57 #define GET_INST_PROC(F) m##F = (PFN_vk##F)vkGetInstanceProcAddr(mInstance, "vk" #F) argument 58 #define GET_DEV_PROC(F) m##F = (PFN_vk##F)vkGetDeviceProcAddr(mDevice, "vk" #F) argument
|