/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | benchmarks.cc | 102 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/ |
D | benchmarks.cc | 102 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/ |
D | ace_engine.cc | 37 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 …]
|
D | engine.cc | 37 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 …]
|
D | engine.h | 65 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);
|
D | shell.h | 37 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/ |
D | test_qrng_functions.hpp | 18 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 …]
|
D | test_generate_canonical.cpp | 29 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/ |
D | int_float_pair.hpp | 33 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 …]
|
D | seed_impl.hpp | 85 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/ |
D | uniform_real_distribution.hpp | 33 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 …]
|
D | uniform_smallint.hpp | 197 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 …]
|
D | uniform_int.hpp | 77 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 ()()
|
D | uniform_int_distribution.hpp | 49 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 …]
|
D | variate_generator.hpp | 50 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;
|
D | geometric_distribution.hpp | 153 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 ()()
|
D | exponential_distribution.hpp | 183 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 ()()
|
D | lognormal_distribution.hpp | 143 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 ()()
|
D | bernoulli_distribution.hpp | 137 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 ()()
|
D | independent_bits.hpp | 43 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;
|
D | normal_distribution.hpp | 122 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/ |
D | tester.h | 22 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/ |
D | engine.h | 24 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);
|
D | engine.cc | 42 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/ |
D | run-java-demo.md | 7 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…
|