Home
last modified time | relevance | path

Searched refs:Fn (Results 1 – 8 of 8) sorted by relevance

/art/libartbase/base/
Dsystrace.h55 template <typename Fn>
56 explicit ScopedTrace(Fn fn) { in ScopedTrace()
Dhash_map.h26 template <typename Fn>
48 Fn fn_;
/art/tools/hiddenapi/
Dhiddenapi.cc238 template<typename Fn>
239 void ForEachDexClass(Fn fn) { in ForEachDexClass()
247 template<typename Fn>
248 void ForEachDexMember(Fn fn) { in ForEachDexMember()
339 template<typename Fn>
340 bool ForEachResolvableMember(const DexMember& other, Fn fn) { in ForEachResolvableMember()
353 template<typename Fn>
354 void ForEachSubClass(Fn fn) { in ForEachSubClass()
363 template<typename Fn>
365 Fn fn, in ForEachResolvableMember_Impl()
[all …]
/art/compiler/dex/
Dinline_method_analyser.cc53 template <bool (Matcher::*Fn)()>
56 template <bool (Matcher::*Fn)()>
89 template <bool (Matcher::*Fn)()>
91 if (!(matcher->*Fn)()) { in Required()
99 template <bool (Matcher::*Fn)()>
101 if (!(matcher->*Fn)()) { in Repeated()
/art/openjdkjvmti/
Dti_stack.cc898 template<typename Fn>
901 explicit MonitorInfoClosure(Fn handle_results) in MonitorInfoClosure()
921 Fn handle_results_;
925 template <typename Fn>
928 Fn handle_results) in GetOwnedMonitorInfoCommon()
931 MonitorInfoClosure<Fn> closure(handle_results); in GetOwnedMonitorInfoCommon()
/art/test/004-JniTest/
Djni_test.cc65 using Fn = void(*)(JNIEnv*); in AttachHelper() typedef
66 Fn fn = reinterpret_cast<Fn>(arg); in AttachHelper()
/art/dex2oat/driver/
Dcompiler_driver.cc1494 template <typename Fn>
1495 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units) in ForAllLambda()
1503 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn)); in ForAllLambda()
1523 template <typename Fn>
1526 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn) in ForAllClosureLambda()
1549 Fn fn_;
/art/dex2oat/
Dverifier_deps_test.cc474 template<typename Fn>
475 bool RunValidation(Fn fn, const std::vector<uint8_t>& buffer, std::string* error_msg) { in RunValidation()