HomeSort by relevance Sort by last modified time
    Searched defs:Apply (Results 1 - 25 of 40) 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 96 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/base/
exp_filter.cc 24 float ExpFilter::Apply(float exp, float sample) {
  /external/chromium_org/chrome/browser/chromeos/drive/
file_change.cc 125 void FileChange::Apply(const FileChange& new_changed_files) {
change_list_processor.cc 123 FileError ChangeListProcessor::Apply(
222 // The old paths must be calculated before we apply any actual changes.
224 // sets the new path because we apply changes in such an order (see below).
230 // Apply all entries except deleted ones to the metadata.
243 // parent-child relationships in the result (after this apply) tree.
244 // Then apply the topmost change first.
247 // can guarantee that no cycle is made during this apply (i.e. no entry gets
251 // - The new parent and its ancestors will no longer move during this apply.
301 // Apply the parent first.
319 // Apply deleted entries
    [all...]
  /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/openfst/src/include/fst/script/
script-impl.h 70 // 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
178 // Template function to apply an operation by name
182 void Apply(const string &op_name, const string &arc_type,
  /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/net/proxy/
proxy_config.cc 46 void ProxyConfig::ProxyRules::Apply(const GURL& url, ProxyInfo* result) const {
proxy_config_unittest.cc 336 rules.Apply(GURL("http://example.com"), &result);
340 rules.Apply(GURL("http://example.org"), &result);
347 rules.Apply(GURL("http://example.org"), &result);
351 rules.Apply(GURL("http://example.com"), &result);
364 void Apply(const GURL& gurl) { rules_.Apply(gurl, &info_); }
377 Apply(WsUrl());
385 Apply(WsUrl());
391 Apply(WssUrl());
397 Apply(WsUrl())
    [all...]
  /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) {
  /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
290 gfx::Transform transform = Apply();
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
chrome_content_rules_registry.cc 67 void ChromeContentRulesRegistry::Apply(
86 (*it)->actions().Apply((*it)->extension_id(), base::Time(), &apply_info);
123 Apply(contents, no_css_selectors);
content_action.cc 78 virtual void Apply(const std::string& extension_id,
134 virtual void Apply(const std::string& extension_id,
404 void RequestContentScript::Apply(const std::string& extension_id,
  /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/extensions/renderer/
safe_builtins.cc 32 "native function Apply();\n"
48 " return Apply(\n"
72 " ['apply', 'bind', 'call']);\n"
152 if (name->Equals(v8::String::NewFromUtf8(isolate, "Apply")))
153 return v8::FunctionTemplate::New(isolate, Apply);
160 static void Apply(const v8::FunctionCallbackInfo<v8::Value>& info) {
  /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/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...]
  /external/chromium_org/extensions/browser/api/declarative/
declarative_rule.h 126 // void Apply(const std::string& extension_id,
161 void Apply(const std::string& extension_id,
165 // Rules call this method when their conditions are fulfilled, but Apply has
246 // Calls actions().Apply(extension_id(), extension_installation_time_,
250 void Apply(typename ActionT::ApplyInfo* apply_info) const;
391 void DeclarativeActionSet<ActionT>::Apply(
397 (*i)->Apply(extension_id, extension_install_time, apply_info);
503 void DeclarativeRule<ConditionT, ActionT>::Apply(
505 return actions_->Apply(extension_id(),
declarative_rule_unittest.cc 245 void Apply(const std::string& extension_id,
305 result->Apply("ext_id", base::Time(), &sum);
367 rule->Apply(&sum);

Completed in 494 milliseconds

1 2