Searched defs:Apply (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_store_interface.cc24 void ObservingPolicyStoreInterface::Apply(ConfigurationPolicyType policy, function in class:policy::ObservingPolicyStoreInterface
26 next_->Apply(policy, value);
32 void FilteringPolicyStoreInterface::Apply(ConfigurationPolicyType policy, function in class:policy::FilteringPolicyStoreInterface
34 // Apply() takes ownership of |value|.
36 next_->Apply(policy, value);
H A Duser_policy_cache.cc171 virtual void Apply(ConfigurationPolicyType policy, Value* value) { function in class:policy::PolicyMapProxy
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpatcher.py18 def Apply(self, paths, file_system, version=None): member in class:Patcher
19 '''Apply the patch to added/modified files. Returns Future with patched
H A Dtest_patcher.py26 def Apply(self, paths, file_system, version=None): member in class:TestPatcher
H A Drietveld_patcher.py146 def Apply(self, paths, file_system, version=None): member in class:RietveldPatcher
H A Dcaching_rietveld_patcher.py96 def Apply(self, paths, file_system, version=None): member in class:CachingRietveldPatcher
110 self._patcher.Apply(set(added) | set(modified),
/external/chromium/webkit/glue/
H A Dwebpreferences.cc86 void WebPreferences::Apply(WebView* web_view) const { function in class:WebPreferences
/external/chromium_org/ppapi/
H A Dgenerate_ppapi_size_checks.py91 None of the changes are applied until Apply is called. All line numbers are
115 def Apply(self): member in class:FilePatch
116 """Apply the patch by writing it to self.filename."""
404 # Apply our patches. This actually edits the files containing the definitions
407 patch.Apply()
/external/chromium/chrome/browser/extensions/
H A Dextensions_quota_service.cc51 // Apply heuristic to each item (bucket).
100 if (!Apply(*i, event_time))
114 bool ExtensionsQuotaService::TimedLimit::Apply(Bucket* bucket, function in class:ExtensionsQuotaService::TimedLimit
122 bool ExtensionsQuotaService::SustainedLimit::Apply(Bucket* bucket, function in class:ExtensionsQuotaService::SustainedLimit
/external/openfst/src/include/fst/script/
H A Dscript-impl.h70 // Apply<Operation<FooArgs> >("Foo", ifst->ArcType(), &args);
73 // The Apply<> function template takes care of the link between 2 and 3,
86 // it dispatches (in #3) via the Apply<> function to the correct
182 void Apply(const string &op_name, const string &arc_type, function in namespace:fst::script
/external/chromium/net/proxy/
H A Dproxy_config.cc35 void ProxyConfig::ProxyRules::Apply(const GURL& url, ProxyInfo* result) { function in class:net::ProxyConfig::ProxyRules
/external/chromium_org/chrome/renderer/extensions/
H A Dsafe_builtins.cc32 "native function Apply();\n"
48 " return Apply(\n"
148 if (name->Equals(v8::String::NewFromUtf8(isolate, "Apply")))
149 return v8::FunctionTemplate::New(isolate, Apply);
156 static void Apply(const v8::FunctionCallbackInfo<v8::Value>& info) { function in class:extensions::__anon7158::ExtensionImpl
/external/chromium_org/content/common/input/
H A Dweb_input_event_traits.cc182 bool Apply(Operator op, function in namespace:content::__anon8376
252 Apply(WebInputEventSize(), type, type, &size);
258 Apply(WebInputEventClone(), event.type, event, &scoped_event);
266 Apply(WebInputEventDelete(), event->type, event, &dummy_var);
274 return Apply(WebInputEventCanCoalesce(),
283 Apply(WebInputEventCoalesce(), event->type, event_to_coalesce, event);
/external/chromium_org/extensions/browser/
H A Dquota_service.cc69 // Apply heuristic to each item (bucket).
130 if (!Apply(*i, event_time))
149 bool QuotaService::TimedLimit::Apply(Bucket* bucket, function in class:extensions::QuotaService::TimedLimit
157 bool QuotaService::SustainedLimit::Apply(Bucket* bucket, function in class:extensions::QuotaService::SustainedLimit
/external/chromium_org/net/proxy/
H A Dproxy_config.cc46 void ProxyConfig::ProxyRules::Apply(const GURL& url, ProxyInfo* result) const { function in class:net::ProxyConfig::ProxyRules
/external/chromium_org/remoting/host/
H A Dsas_injector_win.cc46 bool Apply();
74 bool ScopedSoftwareSasPolicy::Apply() { function in class:remoting::__anon10498::ScopedSoftwareSasPolicy
175 if (!enable_sas.Apply())
/external/chromium_org/tools/cr/cr/
H A Dconfig.py87 return Config('??').Apply(args, kwargs)
205 def Apply(self, args, kwargs): member in class:Config
227 return self.Apply(args, kwargs)
/external/chromium_org/tools/gn/
H A Dfile_template.cc111 void FileTemplate::Apply(const Value& sources, function in class:FileTemplate
/external/chromium_org/v8/src/
H A Dhydrogen-flow-engine.h47 inline void Apply(State* state) { function in class:v8::internal::NoEffects
128 // Apply loop effects before analyzing loop body.
129 ComputeLoopEffects(block)->Apply(state);
H A Dhydrogen-load-elimination.cc451 // Apply these effects to the given load elimination table.
452 void Apply(HLoadEliminationTable* table) { function in class:v8::internal::HLoadEliminationEffects
/external/chromium_org/cc/animation/
H A Dtransform_operations.cc31 gfx::Transform TransformOperations::Apply() const { function in class:cc::TransformOperations
226 gfx::Transform transform = Apply();
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_processor.cc91 FileError ChangeListProcessor::Apply( function in class:drive::internal::ChangeListProcessor
208 // Apply all entries except deleted ones to the metadata.
268 // Apply the parent first.
285 // Apply deleted entries.
/external/chromium_org/chrome/browser/extensions/api/declarative/
H A Ddeclarative_rule.h122 // void Apply(const std::string& extension_id,
155 void Apply(const std::string& extension_id,
233 // Calls actions().Apply(extension_id(), extension_installation_time_,
237 void Apply(typename ActionT::ApplyInfo* apply_info) const;
377 void DeclarativeActionSet<ActionT>::Apply( function in class:extensions::DeclarativeActionSet
383 (*i)->Apply(extension_id, extension_install_time, apply_info);
477 void DeclarativeRule<ConditionT, ActionT>::Apply( function in class:extensions::DeclarativeRule
479 return actions_->Apply(extension_id(),
H A Ddeclarative_rule_unittest.cc243 void Apply(const std::string& extension_id, function in class:extensions::SummingAction
303 result->Apply("ext_id", base::Time(), &sum);
364 rule->Apply(&sum);
/external/chromium_org/chrome/browser/extensions/api/declarative_content/
H A Dcontent_rules_registry.cc65 void ContentRulesRegistry::Apply( function in class:extensions::ContentRulesRegistry
84 (*it)->actions().Apply((*it)->extension_id(), base::Time(), &apply_info);
114 Apply(contents, no_css_selectors);

Completed in 1065 milliseconds

12