Searched defs:Apply (Results 1 - 25 of 36) sorted by last modified time

12

/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/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp1247 class Apply : public Expr<typename Sig::Ret> class in namespace:deqp::gls::BuiltinPrecisionTests
1260 Apply (const ApplyFunc& func, function in class:deqp::gls::BuiltinPrecisionTests::Apply
1268 Apply (const ApplyFunc& func, function in class:deqp::gls::BuiltinPrecisionTests::Apply
1307 return exprP(new Apply<Sig>(func, args));
1318 return exprP(new Apply<Sig>(func, arg0, arg1, arg2, arg3));
1350 class ApplyVar : public Apply<Sig>
1368 : Apply<Sig> (func, arg0, arg1, arg2, arg3) {}
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp3023 /// Apply the deduction rules for overload sets.
3947 QualType Apply(TypeLoc TL) { function in class:__anon18103::SubstituteAutoTransform
3978 Result = SubstituteAutoTransform(*this, Context.DependentTy).Apply(Type);
3996 Result = SubstituteAutoTransform(*this, Deduced).Apply(Type);
4016 QualType FuncParam = SubstituteAutoTransform(*this, TemplArg).Apply(Type);
4059 Result = SubstituteAutoTransform(*this, DeducedType).Apply(Type);
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp250 constexpr int Apply(int (*F)(int), int n) { return F(n); } // expected-note {{subexpression}} function in namespace:FunctionPointers
252 static_assert(1 + Apply(Select(4), 5) + Apply(Select(3), 7) == 42, "");
254 constexpr int Invalid = Apply(Select(0), 0); // expected-error {{must be initialized by a constant expression}} expected-note {{in call to 'Apply(0, 0)'}}
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h910 // Apply an argument to a function
911 class Apply : public SExpr { class in namespace:clang::threadSafety
915 Apply(SExpr *F, SExpr *A) : SExpr(COP_Apply), Fun(F), Arg(A) {} function in class:clang::threadSafety::Apply
916 Apply(const Apply &A, SExpr *F, SExpr *Ar) // rewrite constructor function in class:clang::threadSafety::Apply
933 template <class C> typename C::CType compare(Apply* E, C& Cmp) {
946 // Apply a self-argument to a self-applicable function
/external/chromium_org/v8/src/
H A Dhydrogen-check-elimination.cc830 // Apply these effects to the given check elimination table.
831 void Apply(HCheckTable* table) { function
H A Dhydrogen-flow-engine.h24 inline void Apply(State* state) { function in class:v8::internal::NoEffects
107 // Apply loop effects before analyzing loop body.
108 ComputeLoopEffects(block)->Apply(state);
H A Dhydrogen-load-elimination.cc454 // Apply these effects to the given load elimination table.
455 void Apply(HLoadEliminationTable* table) { function in class:v8::internal::HLoadEliminationEffects
H A Dhydrogen-removable-simulates.cc169 void Apply(State* state) { } function in class:v8::internal::Effects
H A Druntime.cc3414 // Use Apply only if Compile returned false.
3415 void Apply(ReplacementStringBuilder* builder,
3583 // Replacement is simple. Do not use Apply to do the replacement.
3646 void CompiledReplacement::Apply(ReplacementStringBuilder* builder, function in class:CompiledReplacement
3978 compiled_replacement.Apply(&builder,
/external/chromium_org/third_party/webrtc/base/
H A Dexp_filter.cc24 float ExpFilter::Apply(float exp, float sample) { function in class:rtc::ExpFilter
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dversion_set.cc467 // 1MB cost is about 1 seek (see comment in Builder::Apply).
655 // Apply all of the edits in *edit to the current state.
656 void Apply(VersionEdit* edit) { function in class:leveldb::VersionSet::Builder
829 builder.Apply(edit);
951 builder.Apply(&edit);
/external/chromium_org/tools/cr/cr/
H A Dconfig.py87 return Config('??').Apply(args, kwargs)
210 def Apply(self, args, kwargs): member in class:Config
232 return self.Apply(args, kwargs)
/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
H A Dproxy_config_unittest.cc336 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_); } function in class:net::__anon9377::ProxyConfigWebSocketTest
377 Apply(WsUrl());
385 Apply(WsUrl());
391 Apply(WssUrl());
397 Apply(WsUr
[all...]
/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_org/remoting/host/
H A Dsas_injector_win.cc46 bool Apply();
73 bool ScopedSoftwareSasPolicy::Apply() { function in class:remoting::__anon10462::ScopedSoftwareSasPolicy
172 if (!enable_sas.Apply())
/external/chromium_org/extensions/browser/api/declarative/
H A Ddeclarative_rule.h126 // 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( function in class:extensions::DeclarativeActionSet
397 (*i)->Apply(extension_id, extension_install_time, apply_info);
503 void DeclarativeRule<ConditionT, ActionT>::Apply( function in class:extensions::DeclarativeRule
505 return actions_->Apply(extension_id(),
H A Ddeclarative_rule_unittest.cc245 void Apply(const std::string& extension_id, function in class:extensions::SummingAction
305 result->Apply("ext_id", base::Time(), &sum);
367 rule->Apply(&sum);
/external/chromium_org/extensions/browser/api/declarative_webrequest/
H A Dwebrequest_action.cc536 void WebRequestAction::Apply(const std::string& extension_id, function in class:extensions::WebRequestAction
/external/chromium_org/extensions/browser/api/web_request/
H A Dweb_request_api.cc2132 virtual bool Apply(Bucket* bucket,
2154 bool ClearCacheQuotaHeuristic::Apply(Bucket* bucket, function in class:ClearCacheQuotaHeuristic
/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/extensions/renderer/
H A Dsafe_builtins.cc32 "native function Apply();\n"
48 " return Apply(\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) { function in class:extensions::__anon8282::ExtensionImpl
/external/chromium_org/content/renderer/
H A Drender_widget.cc200 void Apply(float top_controls_layout_height,
237 Apply(widget_->top_controls_layout_height_, widget_->resizer_rect_,
264 Apply(widget_->top_controls_layout_height_, widget_->resizer_rect_,
268 void RenderWidget::ScreenMetricsEmulator::Apply( function in class:content::RenderWidget::ScreenMetricsEmulator
340 Apply(params.top_controls_layout_height, params.resizer_rect,
/external/chromium_org/content/common/input/
H A Dweb_input_event_traits.cc241 bool Apply(Operator op, function in namespace:content::__anon7632
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);

Completed in 1063 milliseconds

12