Home
last modified time | relevance | path

Searched refs:Engine (Results 1 – 25 of 167) sorted by relevance

1234567

/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Dbenchmarks.cc102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
115 return Engine(); in make_engine()
118 template <typename Engine, typename SSeq>
121 auto rng = make_engine<Engine, SSeq>(); in BM_Construct()
126 template <typename Engine>
128 using value_type = typename Engine::result_type; in BM_Direct()
[all …]
/third_party/abseil-cpp/absl/random/
Dbenchmarks.cc102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
115 return Engine(); in make_engine()
118 template <typename Engine, typename SSeq>
121 auto rng = make_engine<Engine, SSeq>(); in BM_Construct()
126 template <typename Engine>
128 using value_type = typename Engine::result_type; in BM_Direct()
[all …]
/third_party/flutter/engine/flutter/shell/common/
Dace_engine.cc37 Engine::Engine(Delegate& delegate, in Engine() function in flutter::Engine
60 Engine::~Engine() = default;
62 float Engine::GetDisplayRefreshRate() const { in GetDisplayRefreshRate()
66 fml::WeakPtr<Engine> Engine::GetWeakPtr() const { in GetWeakPtr()
70 bool Engine::UpdateAssetManager( in UpdateAssetManager()
93 bool Engine::Restart(RunConfiguration configuration) { in Restart()
101 return Run(std::move(configuration)) == Engine::RunStatus::Success; in Restart()
104 Engine::RunStatus Engine::Run(RunConfiguration configuration) { in Run()
112 Engine::RunStatus Engine::PrepareAndLaunchIsolate( in PrepareAndLaunchIsolate()
119 void Engine::BeginFrame(fml::TimePoint frame_time) { in BeginFrame()
[all …]
Dengine.cc37 Engine::Engine(Delegate& delegate, in Engine() function in flutter::Engine
73 Engine::~Engine() = default;
75 float Engine::GetDisplayRefreshRate() const { in GetDisplayRefreshRate()
79 fml::WeakPtr<Engine> Engine::GetWeakPtr() const { in GetWeakPtr()
83 bool Engine::UpdateAssetManager( in UpdateAssetManager()
105 bool Engine::Restart(RunConfiguration configuration) { in Restart()
114 return Run(std::move(configuration)) == Engine::RunStatus::Success; in Restart()
117 Engine::RunStatus Engine::Run(RunConfiguration configuration) { in Run()
125 if (isolate_launch_status == Engine::RunStatus::Failure) { in Run()
129 Engine::RunStatus::FailureAlreadyRunning) { in Run()
[all …]
Dengine.h65 class Engine final : public RuntimeDelegate {
223 Engine(Delegate& delegate,
236 ~Engine() override;
266 fml::WeakPtr<Engine> GetWeakPtr() const;
503 Engine::Delegate& delegate_;
514 fml::WeakPtrFactory<Engine> weak_factory_;
546 FML_DISALLOW_COPY_AND_ASSIGN(Engine);
Dshell.h37 public Engine::Delegate,
68 std::function<void(Engine::RunStatus)> result_callback);
106 fml::WeakPtr<Engine> GetEngine();
168 std::unique_ptr<Engine> engine_; // on UI task runner
172 fml::WeakPtr<Engine> weak_engine_; // to be shared across threads
210 std::unique_ptr<Engine> engine,
224 const Engine::IdleCallback& idleCallback) override;
/third_party/boost/libs/random/test/
Dtest_qrng_functions.hpp18 template<typename Engine>
19 inline void trivial_discard(Engine& eng, boost::uintmax_t n) in trivial_discard()
25 template<typename Engine, typename T, std::size_t Dimension>
26 inline void match_vector(Engine& eng, T (&pt)[Dimension]) in match_vector()
42 template<typename Engine, typename T, std::size_t Dimension, std::size_t N>
45 Engine eng(Dimension); in expected_values()
53 template<typename Engine, typename T>
56 Engine eng(dimension); in test_zero_seed()
58 Engine other(dimension); in test_zero_seed()
72 template<typename Engine, typename T, std::size_t Dimension, std::size_t N>
[all …]
Dtest_generate_canonical.cpp29 BOOST_AUTO_TEST_CASE_TEMPLATE(test_float, Engine, engines) in BOOST_AUTO_TEST_CASE_TEMPLATE() argument
31 Engine eng; in BOOST_AUTO_TEST_CASE_TEMPLATE()
32 Engine expected; in BOOST_AUTO_TEST_CASE_TEMPLATE()
49 BOOST_AUTO_TEST_CASE_TEMPLATE(test_double, Engine, engines) in BOOST_AUTO_TEST_CASE_TEMPLATE() argument
51 Engine eng; in BOOST_AUTO_TEST_CASE_TEMPLATE()
52 Engine expected; in BOOST_AUTO_TEST_CASE_TEMPLATE()
69 BOOST_AUTO_TEST_CASE_TEMPLATE(test_long_double, Engine, engines) in BOOST_AUTO_TEST_CASE_TEMPLATE() argument
71 Engine eng; in BOOST_AUTO_TEST_CASE_TEMPLATE()
72 Engine expected; in BOOST_AUTO_TEST_CASE_TEMPLATE()
/third_party/boost/boost/random/detail/
Dint_float_pair.hpp33 template<class Engine>
34 inline typename boost::make_unsigned<typename Engine::result_type>::type
35 generate_one_digit(Engine& eng, std::size_t bits) in generate_one_digit()
37 typedef typename Engine::result_type base_result; in generate_one_digit()
51 template<class RealType, std::size_t w, class Engine>
52 std::pair<RealType, int> generate_int_float_pair(Engine& eng, boost::mpl::true_) in generate_int_float_pair()
54 typedef typename Engine::result_type base_result; in generate_int_float_pair()
101 template<class RealType, std::size_t w, class Engine>
102 inline std::pair<RealType, int> generate_int_float_pair(Engine& eng, boost::mpl::false_) in generate_int_float_pair()
109 template<class RealType, std::size_t w, class Engine>
[all …]
Dseed_impl.hpp85 template<class Engine, class Iter>
86 void generate_from_real(Engine& eng, Iter begin, Iter end) in generate_from_real()
89 typedef typename Engine::result_type RealType; in generate_from_real()
90 const int Bits = detail::generator_bits<Engine>::value(); in generate_from_real()
132 template<class Engine, class Iter>
133 void generate_from_int(Engine& eng, Iter begin, Iter end) in generate_from_int()
135 typedef typename Engine::result_type IntType; in generate_from_int()
205 template<class Engine, class Iter>
206 void generate_impl(Engine& eng, Iter first, Iter last, boost::mpl::true_) in generate_impl()
211 template<class Engine, class Iter>
[all …]
/third_party/boost/boost/random/
Duniform_real_distribution.hpp33 template<class Engine, class T>
35 Engine& eng, T min_value, T max_value, in generate_uniform_real()
49 template<class Engine, class T>
51 Engine& eng, T min_value, T max_value, in generate_uniform_real()
56 typedef typename Engine::result_type base_result; in generate_uniform_real()
66 template<class Engine, class T>
67 inline T generate_uniform_real(Engine& eng, T min_value, T max_value) in generate_uniform_real()
71 typedef typename Engine::result_type base_result; in generate_uniform_real()
191 template<class Engine>
192 result_type operator()(Engine& eng) const in operator ()()
[all …]
Duniform_smallint.hpp197 template<class Engine>
198 result_type operator()(Engine& eng) const in operator ()()
200 typedef typename Engine::result_type base_result; in operator ()()
205 template<class Engine>
206 result_type operator()(Engine& eng, const param_type& parm) const in operator ()()
239 template<class Engine>
240 result_type generate(Engine& eng, boost::mpl::true_) const in generate()
244 typedef typename Engine::result_type base_result; in generate()
276 template<class Engine>
277 result_type generate(Engine& eng, boost::mpl::false_) const in generate()
[all …]
Duniform_int.hpp77 template<class Engine>
78 IntType operator()(Engine& eng) const in operator ()()
83 template<class Engine>
84 IntType operator()(Engine& eng, const param_type& parm) const in operator ()()
89 template<class Engine>
90 IntType operator()(Engine& eng, IntType n) const in operator ()()
Duniform_int_distribution.hpp49 template<class Engine, class T>
51 Engine& eng, T min_value, T max_value, in generate_uniform_int()
56 typedef typename Engine::result_type base_result; in generate_uniform_int()
234 template<class Engine, class T>
236 Engine& eng, T min_value, T max_value, in generate_uniform_int()
239 uniform_int_float<Engine> wrapper(eng); in generate_uniform_int()
243 template<class Engine, class T>
244 inline T generate_uniform_int(Engine& eng, T min_value, T max_value) in generate_uniform_int()
246 typedef typename Engine::result_type base_result; in generate_uniform_int()
369 template<class Engine>
[all …]
Dvariate_generator.hpp50 template<class Engine, class Distribution>
54 typedef boost::random::detail::ptr_helper<Engine> helper_type;
57 typedef Engine engine_type;
69 variate_generator(Engine e, Distribution d) in variate_generator()
110 Engine _eng;
Dgeometric_distribution.hpp153 template<class Engine>
154 result_type operator()(Engine& eng) const in operator ()()
166 template<class Engine>
167 result_type operator()(Engine& eng, const param_type& parm) const in operator ()()
239 template<class Engine>
240 IntType operator()(Engine& eng) const { return _impl(eng) + IntType(1); } in operator ()()
Dexponential_distribution.hpp183 template<class Engine>
184 RealType operator()(Engine& eng) { in operator ()()
332 template<class Engine>
333 result_type operator()(Engine& eng) const in operator ()()
343 template<class Engine>
344 result_type operator()(Engine& eng, const param_type& parm) const in operator ()()
Dlognormal_distribution.hpp143 template<class Engine>
144 result_type operator()(Engine& eng) in operator ()()
154 template<class Engine>
155 result_type operator()(Engine& eng, const param_type& parm) in operator ()()
216 template<class Engine>
217 RealType operator()(Engine& eng) in operator ()()
Dbernoulli_distribution.hpp137 template<class Engine>
138 bool operator()(Engine& eng) const in operator ()()
150 template<class Engine>
151 bool operator()(Engine& eng, const param_type& parm) const in operator ()()
Dindependent_bits.hpp43 template<class Engine, std::size_t w, class UIntType>
47 typedef Engine base_type;
49 typedef typename Engine::result_type base_result_type;
272 Engine _base;
276 template<class Engine, std::size_t w, class UIntType>
277 const bool independent_bits_engine<Engine, w, UIntType>::has_fixed_range;
Dnormal_distribution.hpp122 template<class Engine>
123 RealType operator()(Engine& eng) { in operator ()()
188 template<class Engine>
189 RealType generate_tail(Engine& eng) { in generate_tail()
320 template<class Engine>
321 result_type operator()(Engine& eng) in operator ()()
/third_party/re2/re2/testing/
Dtester.h22 enum Engine { enum
39 static inline void operator++(Engine& e, int unused) {
40 e = static_cast<Engine>(e+1);
43 static inline Engine operator+(Engine e, int i) {
44 return static_cast<Engine>(static_cast<int>(e)+i);
67 void RunSearch(Engine type,
72 void LogMatch(const char* prefix, Engine e, const StringPiece& text,
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dengine.h24 class Engine final {
28 virtual void OnEngineTerminate(const Engine* holder) = 0;
31 Engine(Delegate& delegate,
40 ~Engine();
58 fml::WeakPtrFactory<Engine> weak_factory_;
70 FML_DISALLOW_COPY_AND_ASSIGN(Engine);
Dengine.cc42 Engine::Engine(Delegate& delegate, in Engine() function in flutter_runner::Engine
84 &Engine::OnSessionMetricsDidChange, this, std::placeholders::_1); in Engine()
87 std::bind(&Engine::OnSessionSizeChangeHint, this, std::placeholders::_1, in Engine()
192 std::bind(&Engine::OnMainIsolateStart, this); in Engine()
280 flutter::Engine::RunStatus::Failure) { in Engine()
286 Engine::~Engine() { in ~Engine()
296 std::pair<bool, uint32_t> Engine::GetEngineReturnCode() const { in GetEngineReturnCode()
361 void Engine::OnMainIsolateStart() { in OnMainIsolateStart()
385 void Engine::OnMainIsolateShutdown() { in OnMainIsolateShutdown()
391 void Engine::Terminate() { in Terminate()
[all …]
/third_party/libphonenumber/
Drun-java-demo.md7 App Engine. By following the instructions here, you can build a demo running
14 ### Install Google App Engine
18 SDK of Google App Engine. This document assumes it is named as
63 If you get a warning from App Engine asking you to upgrade your JRE to Java 1.6
73 ## Uploading your own demo App Engine application
75 If you want to upload the demo to your own App Engine application, follow the
77 Engine](http://cloud.google.com/appengine/docs/standard/java/gettingstarted/deploying-the-applicati…

1234567