Searched refs:strategy (Results 1 - 25 of 155) sorted by path

1234567

/external/bison/build-aux/
H A Dtexinfo.tex732 % document, then we can reconsider our strategy.
/external/ceres-solver/internal/ceres/
H A Ddogleg_strategy_test.cc139 DoglegStrategy strategy(options_);
142 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso,
159 DoglegStrategy strategy(options_);
162 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso,
179 DoglegStrategy strategy(options_);
182 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso,
206 DoglegStrategy strategy(options_);
209 strategy.ComputeStep(pso, jacobian_.get(), residual_.data(), x_.data());
212 const Matrix basis = strategy.subspace_basis();
218 const Vector gradient = strategy
[all...]
H A Dsolver_impl.cc116 scoped_ptr<TrustRegionStrategy> strategy(
118 minimizer_options.trust_region_strategy = strategy.get();
H A Dtrust_region_minimizer.cc133 TrustRegionStrategy* strategy = CHECK_NOTNULL(options_.trust_region_strategy); local
173 iteration_summary.trust_region_radius = strategy->Radius();
299 strategy->ComputeStep(per_solve_options,
568 strategy->StepAccepted(iteration_summary.relative_decrease);
660 strategy->StepRejected(iteration_summary.relative_decrease);
662 strategy->StepIsInvalid();
667 iteration_summary.trust_region_radius = strategy->Radius();
H A Dtrust_region_minimizer_test.cc243 scoped_ptr<TrustRegionStrategy> strategy(
245 minimizer_options.trust_region_strategy = strategy.get();
/external/chromium_org/chrome/browser/chromeos/net/
H A Dnetwork_portal_detector_impl_browsertest.cc138 PortalDetectorStrategy* strategy() { function in class:chromeos::NetworkPortalDetectorImplBrowserTest
154 ASSERT_EQ(PortalDetectorStrategy::STRATEGY_ID_LOGIN_SCREEN, strategy()->Id());
174 ASSERT_EQ(PortalDetectorStrategy::STRATEGY_ID_SESSION, strategy()->Id());
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_contents_resizing_strategy.cc22 const DevToolsContentsResizingStrategy& strategy) {
23 bounds_ = strategy.bounds();
24 hide_inspected_contents_ = strategy.hide_inspected_contents();
28 const DevToolsContentsResizingStrategy& strategy) {
29 return bounds_ == strategy.bounds() &&
30 hide_inspected_contents_ == strategy.hide_inspected_contents();
34 const DevToolsContentsResizingStrategy& strategy,
41 const gfx::Rect& bounds = strategy.bounds();
42 if (bounds.size().IsEmpty() && !strategy.hide_inspected_contents()) {
21 CopyFrom( const DevToolsContentsResizingStrategy& strategy) argument
27 Equals( const DevToolsContentsResizingStrategy& strategy) argument
33 ApplyDevToolsContentsResizingStrategy( const DevToolsContentsResizingStrategy& strategy, const gfx::Size& container_size, gfx::Rect* new_devtools_bounds, gfx::Rect* new_contents_bounds) argument
H A Ddevtools_contents_resizing_strategy.h21 void CopyFrom(const DevToolsContentsResizingStrategy& strategy);
22 bool Equals(const DevToolsContentsResizingStrategy& strategy);
37 // Applies contents resizing strategy, producing bounds for devtools and
43 const DevToolsContentsResizingStrategy& strategy,
H A Ddevtools_window.cc984 DevToolsContentsResizingStrategy strategy(rect);
985 if (contents_resizing_strategy_.Equals(strategy))
988 contents_resizing_strategy_.CopyFrom(strategy);
/external/chromium_org/chrome/browser/extensions/api/copresence/
H A Dcopresence_translations.cc36 BroadcastScanConfiguration TranslateStrategy(const Strategy& strategy) { argument
37 bool only_broadcast = strategy.only_broadcast && *strategy.only_broadcast;
38 bool only_scan = strategy.only_scan && *strategy.only_scan;
50 // The strategy may be null (unspecified), so we pass it as a pointer.
51 void SetTokenExchangeStrategy(const Strategy* strategy, argument
54 if (strategy) {
55 BroadcastScanConfiguration config = TranslateStrategy(*strategy);
60 strategy
[all...]
/external/chromium_org/chrome/browser/prefs/
H A Dmock_validation_delegate.cc59 PrefHashFilter::PrefTrackingStrategy strategy) {
61 ValidationEvent(pref_path, value_state, reset_action, strategy));
55 RecordValidation( const std::string& pref_path, PrefHashStoreTransaction::ValueState value_state, TrackedPreferenceHelper::ResetAction reset_action, PrefHashFilter::PrefTrackingStrategy strategy) argument
H A Dmock_validation_delegate.h29 strategy(tracking_strategy) {}
34 PrefHashFilter::PrefTrackingStrategy strategy; member in struct:MockValidationDelegate::ValidationEvent
68 PrefHashFilter::PrefTrackingStrategy strategy);
H A Dpref_hash_filter.cc62 switch (metadata.strategy) {
H A Dpref_hash_filter.h49 // tracked independently. Note: preferences using this strategy must be kept
58 PrefTrackingStrategy strategy; member in struct:PrefHashFilter::TrackedPreferenceMetadata
H A Dpref_hash_filter_unittest.cc129 // Returns the pointer value and strategy that was passed to
203 PrefHashFilter::PrefTrackingStrategy strategy);
208 PrefHashFilter::PrefTrackingStrategy strategy);
263 PrefHashFilter::PrefTrackingStrategy strategy) {
267 std::make_pair(path, std::make_pair(value, strategy))).second);
279 PrefHashFilter::PrefTrackingStrategy strategy) {
281 std::make_pair(path, std::make_pair(new_value, strategy))).second);
668 validated_split_pref->strategy);
674 validated_atomic_pref->strategy);
260 RecordCheckValue( const std::string& path, const base::Value* value, PrefHashFilter::PrefTrackingStrategy strategy) argument
276 RecordStoreHash( const std::string& path, const base::Value* new_value, PrefHashFilter::PrefTrackingStrategy strategy) argument
H A Dprofile_pref_store_manager_unittest.cc104 if (it->strategy == PrefHashFilter::TRACKING_STRATEGY_ATOMIC) {
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
H A Dtester.js94 * @type {Object.<string, number>} Map from a navigation strategy name
95 * to the Navigation Manager strategy enum.
104 * Switches to a different navigation strategy.
105 * @param {string} strategy The desired navigation strategy.
107 cvox.ChromeVoxTester.setStrategy = function(strategy) {
110 cvox.ChromeVoxTester.STRATEGY_MAP[strategy]);
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_view.cc2110 DevToolsContentsResizingStrategy strategy; local
2112 web_contents, &strategy);
2138 GetContentsLayoutManager()->SetContentsResizingStrategy(strategy);
2147 // When strategy.hide_inspected_contents() returns true, we are hiding
2153 if (strategy.hide_inspected_contents() != devtools_is_on_top)
H A Dcontents_layout_manager.cc22 const DevToolsContentsResizingStrategy& strategy) {
23 if (strategy_.Equals(strategy))
26 strategy_.CopyFrom(strategy);
21 SetContentsResizingStrategy( const DevToolsContentsResizingStrategy& strategy) argument
H A Dcontents_layout_manager.h23 // Sets the contents resizing strategy.
25 const DevToolsContentsResizingStrategy& strategy);
/external/chromium_org/chrome/test/chromedriver/client/
H A Dchromedriver.py218 def FindElement(self, strategy, target):
220 Command.FIND_ELEMENT, {'using': strategy, 'value': target})
222 def FindElements(self, strategy, target):
224 Command.FIND_ELEMENTS, {'using': strategy, 'value': target})
H A Dwebelement.py20 def FindElement(self, strategy, target):
22 Command.FIND_CHILD_ELEMENT, {'using': strategy, 'value': target})
24 def FindElements(self, strategy, target):
26 Command.FIND_CHILD_ELEMENTS, {'using': strategy, 'value': target})
/external/chromium_org/chrome/test/chromedriver/
H A Delement_util.cc231 std::string strategy; local
232 if (!params.GetString("using", &strategy))
244 locator->SetString(strategy, target);
/external/chromium_org/components/policy/core/browser/
H A Dconfiguration_policy_handler.cc330 SchemaOnErrorStrategy strategy)
331 : policy_name_(policy_name), schema_(schema), strategy_(strategy) {
391 SchemaOnErrorStrategy strategy,
396 strategy),
327 SchemaValidatingPolicyHandler( const char* policy_name, Schema schema, SchemaOnErrorStrategy strategy) argument
387 SimpleSchemaValidatingPolicyHandler( const char* policy_name, const char* pref_path, Schema schema, SchemaOnErrorStrategy strategy, RecommendedPermission recommended_permission, MandatoryPermission mandatory_permission) argument
H A Dconfiguration_policy_handler.h263 // single type. |schema| is the schema used for this policy, and |strategy| is
264 // the strategy used for schema validation errors.
270 SchemaOnErrorStrategy strategy);
295 // |strategy| is the strategy used for schema validation errors. The
309 SchemaOnErrorStrategy strategy,

Completed in 681 milliseconds

1234567