Home
last modified time | relevance | path

Searched refs:F (Results 1 – 25 of 173) sorted by relevance

1234567

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dmap_test_util.cc332 const FieldDescriptor* MapReflectionTester::F(const string& name) { in F() function in google::protobuf::MapReflectionTester
346 sub_message = reflection->AddMessage(message, F("map_int32_int32")); in SetMapFieldsViaReflection()
352 sub_message = reflection->AddMessage(message, F("map_int64_int64")); in SetMapFieldsViaReflection()
358 sub_message = reflection->AddMessage(message, F("map_uint32_uint32")); in SetMapFieldsViaReflection()
364 sub_message = reflection->AddMessage(message, F("map_uint64_uint64")); in SetMapFieldsViaReflection()
370 sub_message = reflection->AddMessage(message, F("map_sint32_sint32")); in SetMapFieldsViaReflection()
376 sub_message = reflection->AddMessage(message, F("map_sint64_sint64")); in SetMapFieldsViaReflection()
382 sub_message = reflection->AddMessage(message, F("map_fixed32_fixed32")); in SetMapFieldsViaReflection()
388 sub_message = reflection->AddMessage(message, F("map_fixed64_fixed64")); in SetMapFieldsViaReflection()
394 sub_message = reflection->AddMessage(message, F("map_sfixed32_sfixed32")); in SetMapFieldsViaReflection()
[all …]
Dtest_util.cc2370 const FieldDescriptor* TestUtil::ReflectionTester::F(const string& name) { in F() function in google::protobuf::TestUtil::ReflectionTester
2388 reflection->SetInt32 (message, F("optional_int32" ), 101); in SetAllFieldsViaReflection()
2389 reflection->SetInt64 (message, F("optional_int64" ), 102); in SetAllFieldsViaReflection()
2390 reflection->SetUInt32(message, F("optional_uint32" ), 103); in SetAllFieldsViaReflection()
2391 reflection->SetUInt64(message, F("optional_uint64" ), 104); in SetAllFieldsViaReflection()
2392 reflection->SetInt32 (message, F("optional_sint32" ), 105); in SetAllFieldsViaReflection()
2393 reflection->SetInt64 (message, F("optional_sint64" ), 106); in SetAllFieldsViaReflection()
2394 reflection->SetUInt32(message, F("optional_fixed32" ), 107); in SetAllFieldsViaReflection()
2395 reflection->SetUInt64(message, F("optional_fixed64" ), 108); in SetAllFieldsViaReflection()
2396 reflection->SetInt32 (message, F("optional_sfixed32"), 109); in SetAllFieldsViaReflection()
[all …]
/frameworks/base/libs/hwui/utils/
DPair.h25 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/
DIntentResolver.java47 public abstract class IntentResolver<F extends IntentFilter, R extends Object> {
53 public void addFilter(F f) { in addFilter()
148 private ArrayList<F> collectFilters(F[] array, IntentFilter matching) { in collectFilters()
149 ArrayList<F> res = null; in collectFilters()
152 F cur = array[i]; in collectFilters()
167 public ArrayList<F> findFilters(IntentFilter matching) { in findFilters()
179 ArrayList<F> res = null; in findFilters()
180 for (F cur : mFilters) { in findFilters()
192 public void removeFilter(F f) { in removeFilter()
197 void removeFilterInternal(F f) { in removeFilterInternal()
[all …]
/frameworks/base/libs/hwui/thread/
DWorkQueue.h82 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 …]
DCommonPool.h85 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/rs/rsov/compiler/
DRemoveNonkernelsPass.cpp82 for (auto &F : M.functions()) { in runOnModule() local
83 Functions.push_back(&F); in runOnModule()
86 for (auto &F : Functions) { in runOnModule() local
87 if (F->isDeclaration()) in runOnModule()
90 if (Ctxt.isForEachKernel(F->getName())) { in runOnModule()
94 F->replaceAllUsesWith(UndefValue::get((Type *)F->getType())); in runOnModule()
95 F->eraseFromParent(); in runOnModule()
97 DEBUG(dbgs() << "Removed:\t" << F->getName() << '\n'); in runOnModule()
DInlinePreparationPass.cpp46 for (auto &F : M.functions()) { in runOnModule() local
47 if (F.isDeclaration()) { in runOnModule()
51 if (Ctxt.isForEachKernel(F.getName())) { in runOnModule()
55 F.addFnAttr(Attribute::AlwaysInline); in runOnModule()
56 F.setLinkage(GlobalValue::InternalLinkage); in runOnModule()
58 DEBUG(dbgs() << "Marked as alwaysinline:\t" << F.getName() << '\n'); in runOnModule()
/frameworks/compile/slang/
Dslang_rs_export_func.cpp53 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/compile/libbcc/lib/
DRSScreenFunctionsPass.cpp49 bool isLegal(llvm::Function &F) { in isLegal() argument
55 if (!F.empty()) in isLegal()
58 llvm::StringRef FName = F.getName(); in isLegal()
82 for(auto &F: FunctionList) { in runOnModule() local
83 if (!isLegal(F)) { in runOnModule()
85 F.getName().str().c_str()); in runOnModule()
DRSX86CallConvPass.cpp44 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/base/core/java/com/android/internal/util/function/pooled/
DOmniFunction.java46 abstract class OmniFunction<A, B, C, D, E, F, G, H, I, R> implements
49 HexFunction<A, B, C, D, E, F, R>, HeptFunction<A, B, C, D, E, F, G, R>,
50 OctFunction<A, B, C, D, E, F, G, H, R>, NonaFunction<A, B, C, D, E, F, G, H, I, R>,
52 QuintConsumer<A, B, C, D, E>, HexConsumer<A, B, C, D, E, F>,
53 HeptConsumer<A, B, C, D, E, F, G>, OctConsumer<A, B, C, D, E, F, G, H>,
54 NonaConsumer<A, B, C, D, E, F, G, H, I>, PooledPredicate<A>, BiPredicate<A, B>,
58 abstract R invoke(A a, B b, C c, D d, E e, F f, G g, H h, I i); in invoke()
70 public abstract <V> OmniFunction<A, B, C, D, E, F, G, H, I, V> andThen( in andThen()
72 public abstract OmniFunction<A, B, C, D, E, F, G, H, I, R> negate(); in negate()
135 public R apply(A a, B b, C c, D d, E e, F f) { in apply()
[all …]
DPooledLambda.java967 static <A, B, C, D, E, F> PooledRunnable obtainRunnable( in obtainRunnable()
968 HexConsumer<? super A, ? super B, ? super C, ? super D, ? super E, ? super F> function, in obtainRunnable()
969 A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) { in obtainRunnable()
989 static <A, B, C, D, E, F, R> PooledSupplier<R> obtainSupplier( in obtainSupplier()
990 HexFunction<? super A, ? super B, ? super C, ? super D, ? super E, ? super F, in obtainSupplier() argument
991 ? extends R> function, A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) { in obtainSupplier()
1025 static <A, B, C, D, E, F> Message obtainMessage( in obtainMessage()
1026 HexConsumer<? super A, ? super B, ? super C, ? super D, ? super E, ? super F> function, in obtainMessage()
1027 A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) { in obtainMessage()
1051 static <A, B, C, D, E, F, G> PooledRunnable obtainRunnable( in obtainRunnable()
[all …]
/frameworks/compile/slang/StripUnkAttr/
Dstrip_unknown_attributes.cpp23 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/base/tests/LegacyRestoreTest/
Dkk-fixed-encrypted-settings-abcd.ab12 �������� ���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�28 1d\�,�ڑ�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/
Dbackup_telephony_with_password13 …�'O��MFa��������A���vI�>O�a��������R!�h$1œ*1�<zI�|��>��ű�K-� EO�F����17�p�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…
37F(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�FF=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 …]
Dbackup_telephony_no_password6 …� ����-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�B�U�=��ئ�������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/
DFusion.cpp417 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/
DPair.h28 template<typename F, typename S>
31 F first;
38 Pair(const F& f, const S& s) : first(f), second(s) {} in Pair()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/
Dupb.h302 template <class T, class F> inline T* upcast_to(F *f) { in upcast_to()
3769 template <class F> Handler(F func);
4162 template <class R, class P1, R F(P1), class I>
4166 static R Call(P1 p1) { return F(p1); }
4169 template <class R, class P1, class P2, R F(P1, P2), class I>
4173 static R Call(P1 p1, P2 p2) { return F(p1, p2); }
4176 template <class R, class P1, class P2, class P3, R F(P1, P2, P3), class I>
4180 static R Call(P1 p1, P2 p2, P3 p3) { return F(p1, p2, p3); }
4183 template <class R, class P1, class P2, class P3, class P4, R F(P1, P2, P3, P4),
4188 static R Call(P1 p1, P2 p2, P3 p3, P4 p4) { return F(p1, p2, p3, p4); }
[all …]
/frameworks/compile/libbcc/tools/bcc_strip_attr/
Dbcc_strip_attr.cpp58 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/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/
Dupb.h322 template <class T, class F> inline T* upcast_to(F *f) { in upcast_to()
4465 template <class F> Handler(F func);
4858 template <class R, class P1, R F(P1), class I>
4862 static R Call(P1 p1) { return F(p1); }
4865 template <class R, class P1, class P2, R F(P1, P2), class I>
4869 static R Call(P1 p1, P2 p2) { return F(p1, p2); }
4872 template <class R, class P1, class P2, class P3, R F(P1, P2, P3), class I>
4876 static R Call(P1 p1, P2 p2, P3 p3) { return F(p1, p2, p3); }
4879 template <class R, class P1, class P2, class P3, class P4, R F(P1, P2, P3, P4),
4884 static R Call(P1 p1, P2 p2, P3 p3, P4 p4) { return F(p1, p2, p3, p4); }
[all …]
/frameworks/compile/slang/BitWriter_2_9_func/
DValueEnumerator.cpp81 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/
DValueEnumerator.cpp81 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/
DValueEnumerator.cpp81 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()

1234567