HomeSort by relevance Sort by last modified time
    Searched refs:Apply (Results 51 - 75 of 89) sorted by null

1 23 4

  /external/openfst/src/script/
replace.cc 37 Apply<Operation<ReplaceArgs> >("Replace", ofst->ArcType(), &args);
  /external/chromium/chrome/browser/policy/
file_based_policy_provider_unittest.cc 49 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1);
78 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1);
cloud_policy_controller_unittest.cc 118 EXPECT_CALL(store, Apply(_, _)).Times(AtLeast(1));
171 // fetch and apply policy.
user_policy_cache.cc 171 virtual void Apply(ConfigurationPolicyType policy, Value* value) {
configuration_policy_pref_store.cc 55 virtual void Apply(ConfigurationPolicyType setting, Value* value);
315 void ConfigurationPolicyPrefKeeper::Apply(ConfigurationPolicyType policy,
375 // values were correct and apply them in that case.
    [all...]
  /external/chromium/chrome/browser/extensions/
extensions_quota_service.cc 51 // Apply heuristic to each item (bucket).
100 if (!Apply(*i, event_time))
114 bool ExtensionsQuotaService::TimedLimit::Apply(Bucket* bucket,
122 bool ExtensionsQuotaService::SustainedLimit::Apply(Bucket* bucket,
  /external/chromium/webkit/glue/
webpreferences.h 94 void Apply(WebKit::WebView* web_view) const;
webpreferences.cc 86 void WebPreferences::Apply(WebView* web_view) const {
  /external/webkit/Source/WebKit/wx/
WebEdit.cpp 76 void wxWebEditCommand::Apply()
79 m_impl->command()->apply();
  /external/v8/src/
proxy.js 55 return %Apply(construct, void 0, arguments, 0, %_ArgumentsLength());
77 var result = %Apply(callTrap, obj, arguments, 0, %_ArgumentsLength());
84 return %Apply(%_IsConstructCall() ? constructTrap : callTrap,
185 return %Apply(DerivedEnumerateTrap, handler, [], 0, 0)
list-inl.h 161 for (int i = 0; i < length_; i++) visitor->Apply(&data_[i]);
runtime.js 410 return %Apply(delegate, this, arguments, 0, %_ArgumentsLength());
419 return %Apply(delegate, this, arguments, 0, %_ArgumentsLength());
427 return %Apply(trap, this, arguments, 0, arity);
434 return %Apply(trap, this, arguments, 0, %_ArgumentsLength());
453 // We can handle any number of apply arguments if the stack is
  /external/chromium/net/proxy/
proxy_config.h 54 void Apply(const GURL& url, ProxyInfo* result);
proxy_config.cc 35 void ProxyConfig::ProxyRules::Apply(const GURL& url, ProxyInfo* result) {
proxy_service.cc 565 config_.proxy_rules().Apply(url, result);
    [all...]
  /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/skia/src/animator/
SkDisplayApply.h 20 DECLARE_MEMBER_INFO(Apply);
37 void append(SkApply* apply);
SkDisplayType.cpp 91 CASE_NEW(Apply);
246 CASE_GET_INFO(Apply);
413 { "apply", SkType_Apply INIT_BOOL_FIELDS },
  /external/v8/test/mjsunit/harmony/
proxies-function.js 48 // Calling (call, Function.prototype.call, Function.prototype.apply,
105 assertEquals(32, f.apply(o, [16, 16]))
108 assertEquals(32, Function.prototype.apply.call(f, o, [17, 15]))
117 assertEquals(42, %Apply(f, o, [11, 31], 0, 2))
120 assertEquals(42, %Apply(f, null, [11, 31], 0, 2))
138 assertEquals(32, Function.prototype.apply.call(ff, {}, [20]))
147 assertEquals(24, %Apply(ff, {}, [12, 13], 0, 1))
150 assertEquals(24, %Apply(ff, {}, [12, 13], 0, 2))
168 assertEquals(42, Function.prototype.apply.call(fff, {}))
177 assertEquals(42, %Apply(fff, {}, [], 0, 0)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.cpp 257 hr = mFlipState->Apply();
265 hr = mFlipState->Apply();
293 mPreFlipState->Apply();
  /external/v8/test/mjsunit/regress/
regress-1122.js 29 // that function calls with more arguments throw an exception. Apply a
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 245 constexpr int Apply(int (*F)(int), int n) { return F(n); } // expected-note {{subexpression}}
247 static_assert(1 + Apply(Select(4), 5) + Apply(Select(3), 7) == 42, "");
249 constexpr int Invalid = Apply(Select(0), 0); // expected-error {{must be initialized by a constant expression}} expected-note {{in call to 'Apply(0, 0)'}}
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Blit.cpp 559 mSavedStateBlock->Apply();
  /external/v8/test/mjsunit/
apply.js 36 assertSame(this, f0.apply(), "1-0");
38 assertSame(this, f0.apply(this), "2a");
39 assertSame(this, f0.apply(this, new Array(1)), "2b");
40 assertSame(this, f0.apply(this, new Array(2)), "2c");
41 assertSame(this, f0.apply(this, new Array(4242)), "2d");
43 assertSame(this, f0.apply(null), "3a");
44 assertSame(this, f0.apply(null, new Array(1)), "3b");
45 assertSame(this, f0.apply(null, new Array(2)), "3c");
46 assertSame(this, f0.apply(this, new Array(4242)), "3d");
48 assertSame(this, f0.apply(void 0), "4a")
    [all...]
fuzz-natives.js 75 func.apply(void 0, args);
109 func.apply(void 0, argList);
170 "Apply": true,

Completed in 569 milliseconds

1 23 4