HomeSort by relevance Sort by last modified time
    Searched defs:Apply (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/chrome/common/extensions/docs/server2/
patcher.py 18 def Apply(self, paths, file_system, version=None):
19 '''Apply the patch to added/modified files. Returns Future with patched
test_patcher.py 26 def Apply(self, paths, file_system, version=None):
rietveld_patcher.py 141 def Apply(self, paths, file_system, version=None):
caching_rietveld_patcher.py 96 def Apply(self, paths, file_system, version=None):
110 self._patcher.Apply(set(added) | set(modified),
  /external/chromium_org/third_party/webrtc/modules/video_coding/utility/
exp_filter.cc 25 VCMExpFilter::Apply(float exp, float sample)
  /external/chromium_org/ppapi/
generate_ppapi_size_checks.py 91 None of the changes are applied until Apply is called. All line numbers are
115 def Apply(self):
116 """Apply the patch by writing it to self.filename."""
121 # Now apply the patch. Our strategy is to keep the array at the same size,
404 # Apply our patches. This actually edits the files containing the definitions
407 patch.Apply()
  /external/chromium_org/extensions/browser/
quota_service.cc 69 // Apply heuristic to each item (bucket).
130 if (!Apply(*i, event_time))
149 bool QuotaService::TimedLimit::Apply(Bucket* bucket,
157 bool QuotaService::SustainedLimit::Apply(Bucket* bucket,
  /external/chromium_org/extensions/renderer/
safe_builtins.cc 32 "native function Apply();\n"
48 " return Apply(\n"
72 " ['apply', 'bind', 'call']);\n"
149 if (name->Equals(v8::String::NewFromUtf8(isolate, "Apply")))
150 return v8::FunctionTemplate::New(isolate, Apply);
157 static void Apply(const v8::FunctionCallbackInfo<v8::Value>& info) {
  /external/chromium_org/net/proxy/
proxy_config.cc 46 void ProxyConfig::ProxyRules::Apply(const GURL& url, ProxyInfo* result) const {
  /external/chromium_org/v8/src/
hydrogen-removable-simulates.cc 169 void Apply(State* state) { }
hydrogen-flow-engine.h 24 inline void Apply(State* state) {
107 // Apply loop effects before analyzing loop body.
108 ComputeLoopEffects(block)->Apply(state);
hydrogen-load-elimination.cc 454 // Apply these effects to the given load elimination table.
455 void Apply(HLoadEliminationTable* table) {
hydrogen-check-elimination.cc 830 // Apply these effects to the given check elimination table.
831 void Apply(HCheckTable* table) {
  /external/chromium_org/cc/animation/
transform_operations.cc 32 gfx::Transform TransformOperations::Apply() const {
66 // them to the animation, we must apply them in reverse order when
325 gfx::Transform transform = Apply();
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_rules_registry.cc 65 void ContentRulesRegistry::Apply(
84 (*it)->actions().Apply((*it)->extension_id(), base::Time(), &apply_info);
114 Apply(contents, no_css_selectors);
  /external/chromium_org/content/common/input/
web_input_event_traits.cc 241 bool Apply(Operator op,
311 Apply(WebInputEventSize(), type, type, &size);
317 Apply(WebInputEventClone(), event.type, event, &scoped_event);
325 Apply(WebInputEventDelete(), event->type, event, &dummy_var);
333 return Apply(WebInputEventCanCoalesce(),
342 Apply(WebInputEventCoalesce(), event->type, event_to_coalesce, event);
  /external/chromium_org/remoting/host/
sas_injector_win.cc 46 bool Apply();
73 bool ScopedSoftwareSasPolicy::Apply() {
172 if (!enable_sas.Apply())
  /external/chromium_org/tools/cr/cr/
config.py 87 return Config('??').Apply(args, kwargs)
210 def Apply(self, args, kwargs):
232 return self.Apply(args, kwargs)
  /external/chromium_org/tools/gn/
file_template.cc 157 void FileTemplate::Apply(const SourceFile& source,
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_processor.cc 122 FileError ChangeListProcessor::Apply(
221 // The old paths must be calculated before we apply any actual changes.
223 // sets the new path because we apply changes in such an order (see below).
229 // Apply all entries except deleted ones to the metadata.
242 // parent-child relationships in the result (after this apply) tree.
243 // Then apply the topmost change first.
246 // can guarantee that no cycle is made during this apply (i.e. no entry gets
250 // - The new parent and its ancestors will no longer move during this apply.
300 // Apply the parent first.
318 // Apply deleted entries
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative/
declarative_rule.h 122 // 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(
383 (*i)->Apply(extension_id, extension_install_time, apply_info);
477 void DeclarativeRule<ConditionT, ActionT>::Apply(
479 return actions_->Apply(extension_id(),
declarative_rule_unittest.cc 243 void Apply(const std::string& extension_id,
303 result->Apply("ext_id", base::Time(), &sum);
364 rule->Apply(&sum);
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary_unittest.cc 100 // A wrapper around SpellcheckCustomDictionary::Apply private method to avoid
102 void Apply(
105 return dictionary.Apply(change);
336 Apply(*dictionary, change);
451 Apply(*custom_dictionary, change);
459 Apply(*custom_dictionary2, change2);
502 Apply(*custom_dictionary, change);
553 Apply(*custom_dictionary, change);
554 Apply(*custom_dictionary2, change2);
609 Apply(*custom_dictionary, change)
    [all...]
spellcheck_custom_dictionary.cc 240 Apply(dictionary_change);
252 Apply(dictionary_change);
320 Apply(to_change_locally);
388 Apply(dictionary_change);
437 Apply(dictionary_change);
443 void SpellcheckCustomDictionary::Apply(
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_action.cc 536 void WebRequestAction::Apply(const std::string& extension_id,
    [all...]

Completed in 792 milliseconds

1 2