/frameworks/compile/mclinker/include/mcld/Support/ |
D | TargetRegistry.h | 63 mcld::Target::EmulationFnTy Fn) { in RegisterEmulation() argument 65 T.EmulationFn = Fn; in RegisterEmulation() 74 mcld::Target::TargetLDBackendCtorTy Fn) { in RegisterTargetLDBackend() argument 76 T.TargetLDBackendCtorFn = Fn; in RegisterTargetLDBackend() 86 mcld::Target::DiagnosticLineInfoCtorTy Fn) { in RegisterDiagnosticLineInfo() argument 88 T.DiagnosticLineInfoCtorFn = Fn; in RegisterDiagnosticLineInfo()
|
/frameworks/compile/slang/tests/F_reduce_general_bad_accumulator/ |
D | reduce_general_bad_accumulator.rscript | 40 typedef void Fn(void); 43 static void AccumFn(Fn *accum, int val) { } 44 static void CombineFn(Fn *accum, const Fn *other) { } 48 static void OutFn(int *out, const Fn *val) { }
|
D | stderr.txt.expect | 1 reduce_general_bad_accumulator.rscript:44:34: warning: 'const' qualifier on function type 'Fn' (aka… 2 reduce_general_bad_accumulator.rscript:48:29: warning: 'const' qualifier on function type 'Fn' (aka… 8 …)' (reduce_general_bad_accumulator.rscript:42:12) parameter 'other' (type 'Fn *') must point to co… 10 …)' (reduce_general_bad_accumulator.rscript:47:12) parameter 'other' (type 'Fn *') must point to co… 11 …ut)' (reduce_general_bad_accumulator.rscript:47:12) parameter 'val' (type 'Fn *') must point to co…
|
/frameworks/native/libs/binder/ |
D | RpcTransportTls.cpp | 228 template <typename Fn, typename... Args> 231 static constexpr bool sIsVoid = std::is_void_v<std::invoke_result_t<Fn, Args...>>; 232 using Result = std::conditional_t<sIsVoid, Monostate, std::invoke_result_t<Fn, Args...>>; 233 static inline Result call(Fn fn, Args&&... args) { in call() 234 if constexpr (std::is_void_v<std::invoke_result_t<Fn, Args...>>) { in call() 244 template <typename Fn, typename... Args> 246 using RawCaller = FuncCaller<Fn, SSL*, Args...>; 251 static inline ResultAndErrorQueue call(Fn fn, SSL* ssl, Args&&... args) { in call() 271 template <typename Fn, typename... Args> 272 inline typename SslCaller<Fn, Args...>::ResultAndErrorQueue call(Fn fn, Args&&... args) { in call() [all …]
|
/frameworks/native/libs/binder/rust/rpcbinder/src/server/ |
D | trusty.rs | 23 pub trait PerSessionCallback: Fn(Uuid) -> Option<SpIBinder> + Send + Sync + 'static {} 24 impl<T> PerSessionCallback for T where T: Fn(Uuid) -> Option<SpIBinder> + Send + Sync + 'static {}
|
/frameworks/native/libs/binder/rust/src/ |
D | proxy.rs | 572 F: Fn() + Send + Sync + 'static, in new() 635 F: Fn() + Send + Sync + 'static, in binder_died() 651 F: Fn() + Send + Sync + 'static, in cookie_decr_refcount() 665 F: Fn() + Send + Sync + 'static, in cookie_incr_refcount()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
D | TokenBucketTest.java | 187 void assertThrow(Fn fn) { in assertThrow() 193 interface Fn { void call(); } in call() interface in TokenBucketTest
|
/frameworks/compile/slang/ |
D | slang_rs_export_reduce.cpp | 221 FnIdent Kind, clang::FunctionDecl *Fn) { in checkVoidReturn() argument 222 slangAssert(Fn); in checkVoidReturn() 223 const clang::QualType ReturnTy = Fn->getReturnType().getCanonicalType(); in checkVoidReturn() 225 S.RSC.ReportError(Fn->getLocation(), in checkVoidReturn() 227 << S.DiagnosticDescription(getKey(Kind), Fn->getName()) << ReturnTy.getAsString(); in checkVoidReturn()
|
D | slang_rs_export_reduce.h | 112 …atic void checkVoidReturn(StateOfAnalyzeTranslationUnit &S, FnIdent Kind, clang::FunctionDecl *Fn);
|
/frameworks/base/libs/hwui/ |
D | RecordingCanvas.h | 178 template <typename Fn, typename... Args> 179 void map(const Fn[], Args...) const;
|
D | RecordingCanvas.cpp | 778 template <typename Fn, typename... Args> 779 inline void DisplayListData::map(const Fn fns[], Args... args) const { in map()
|
/frameworks/base/tests/LegacyRestoreTest/ |
D | jbmr2-encrypted-settings-abcd.ab | 14 …���3����{n{��Sn$��� ��fcʲ1i�Bu�z�1z��XG��E�K�AO"��8-���LX����-r�0=Fn�<���DNsaꭥ\6�s�#…
|
/frameworks/compile/libbcc/lib/ |
D | RSKernelExpand.cpp | 1111 llvm::Function *Fn = Module->getFunction(Name); in PromoteReduceFunction() local 1112 bccAssert(Fn != nullptr); in PromoteReduceFunction() 1113 if (PromotedFunctions.insert(Fn).second) { in PromoteReduceFunction() 1114 bccAssert(Fn->getLinkage() == llvm::GlobalValue::InternalLinkage); in PromoteReduceFunction() 1115 Fn->setLinkage(llvm::GlobalValue::ExternalLinkage); in PromoteReduceFunction()
|
/frameworks/compile/slang/tests/F_reduce_general_bad_result/ |
D | reduce_general_bad_result.rscript | 366 typedef void Fn(void); 373 static void OutFn(Fn *out, const int *val) { }
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 1939 Function *Fn = in ParseConstants() local 1941 if (!Fn) in ParseConstants() 1944 GlobalVariable *FwdRef = new GlobalVariable(*Fn->getParent(), in ParseConstants() 1948 BlockAddrFwdRefs[Fn].push_back(std::make_pair(Record[2], FwdRef)); in ParseConstants() 1984 Function *Fn = FunctionsWithBodies.back(); in RememberAndSkipFunctionBody() local 1989 DeferredFunctionInfo[Fn] = CurBit; in RememberAndSkipFunctionBody()
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 2232 Function *Fn = in ParseConstants() local 2234 if (!Fn) in ParseConstants() 2237 GlobalVariable *FwdRef = new GlobalVariable(*Fn->getParent(), in ParseConstants() 2241 BlockAddrFwdRefs[Fn].push_back(std::make_pair(Record[2], FwdRef)); in ParseConstants() 2277 Function *Fn = FunctionsWithBodies.back(); in RememberAndSkipFunctionBody() local 2282 DeferredFunctionInfo[Fn] = CurBit; in RememberAndSkipFunctionBody()
|
/frameworks/base/core/res/geoid_map_assets/ |
D | geoid-height-disk-tile-3.textpb | 2 …5j\273\234\032D4\247\2554\2654\232\211\232\241\224\345~\225NST\2465JcT\2455Fn\246\251Lz\3259\217\0…
|
/frameworks/base/services/tests/mockingservicestests/res/raw/ |
D | backup_telephony_no_password | 88 �za��(�1?5*-� Ε�����iaqDl��Xuְ��;Da���=�7�Ϻ��+�hkNa��q�#�] �w�b��CՓ6������Fn-��˫X�é��ӍJ�…
|
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/ |
D | index17 | 486 �zb&O�M�_4�/����a�Y%m�9�{��Fn�����'3�b(v%��y.E��G��A��'U+�K}D�5�����i��l)D��U�7$,�4y�…
|
D | master_playlist | 163 …|���h�m���k��e~�}E���#�a���t��zHo��38N}��2�*C�$����.D�3&uZ�@�oiU�j�Fn#H) ���G�^���k�… 1282 �zb&O�M�_4�/����a�Y%m�9�{��Fn�����'3�b(v%��y.E��G��A��'U+�K}D�5�����i��l)D��U�7$,�4y�… 1575 cX�2��J�8��2EYp�ƽ4^n��kz=Ia���\�@�h�I�h��G����~��t�z�=�H��jD�_��(Fn�bw]#�,�xIk1M�������zK…
|
D | index9 | 486 �zb&O�M�_4�/����a�Y%m�9�{��Fn�����'3�b(v%��y.E��G��A��'U+�K}D�5�����i��l)D��U�7$,�4y�… 779 cX�2��J�8��2EYp�ƽ4^n��kz=Ia���\�@�h�I�h��G����~��t�z�=�H��jD�_��(Fn�bw]#�,�xIk1M�������zK…
|
D | index13 | 485 �zb&O�M�_4�/����a�Y%m�9�{��Fn�����'3�b(v%��y.E��G��A��'U+�K}D�5�����i��l)D��U�7$,�4y�… 778 cX�2��J�8��2EYp�ƽ4^n��kz=Ia���\�@�h�I�h��G����~��t�z�=�H��jD�_��(Fn�bw]#�,�xIk1M�������zK…
|
D | index11 | 486 �zb&O�M�_4�/����a�Y%m�9�{��Fn�����'3�b(v%��y.E��G��A��'U+�K}D�5�����i��l)D��U�7$,�4y�… 779 cX�2��J�8��2EYp�ƽ4^n��kz=Ia���\�@�h�I�h��G����~��t�z�=�H��jD�_��(Fn�bw]#�,�xIk1M�������zK…
|
D | index10 | 490 �zb&O�M�_4�/����a�Y%m�9�{��Fn�����'3�b(v%��y.E��G��A��'U+�K}D�5�����i��l)D��U�7$,�4y�… 783 cX�2��J�8��2EYp�ƽ4^n��kz=Ia���\�@�h�I�h��G����~��t�z�=�H��jD�_��(Fn�bw]#�,�xIk1M�������zK…
|
D | index12 | 489 �zb&O�M�_4�/����a�Y%m�9�{��Fn�����'3�b(v%��y.E��G��A��'U+�K}D�5�����i��l)D��U�7$,�4y�… 782 cX�2��J�8��2EYp�ƽ4^n��kz=Ia���\�@�h�I�h��G����~��t�z�=�H��jD�_��(Fn�bw]#�,�xIk1M�������zK…
|