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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/webrtc/base/
exp_filter_unittest.cc 21 filter.Apply(100.0f, 10.0f);
32 filter.Apply(100.0f, 10.0f);
37 filter.Apply(10.0f, 20.0f);
45 filter.Apply(100.0f, 10.0f);
48 filter.Apply(100.0f, 1.0f);
60 filter.Apply(100.0f, 10.0f);
66 filter.Apply(1.0f, 0.0f);
exp_filter.h 34 float Apply(float exp, float sample);
exp_filter.cc 24 float ExpFilter::Apply(float exp, float sample) {
  /external/chromium_org/net/proxy/
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/openfst/src/script/
concat.cc 29 Apply<Operation<ConcatArgs1> >("Concat", ofst->ArcType(), &args);
37 Apply<Operation<ConcatArgs2> >("Concat", ofst->ArcType(), &args);
connect.cc 25 Apply<Operation<MutableFstClass> >("Connect", fst->ArcType(), fst);
invert.cc 25 Apply<Operation<MutableFstClass> >("Invert", fst->ArcType(), fst);
prune.cc 29 Apply<Operation<PruneArgs1> >("Prune", fst->ArcType(), &args);
37 Apply<Operation<PruneArgs2> >("Prune", fst->ArcType(), &args);
47 Apply<Operation<PruneArgs3> >("Prune", ifst.ArcType(), &args);
55 Apply<Operation<PruneArgs4> >("Prune", fst->ArcType(), &args);
topsort.cc 27 Apply<Operation<TopSortArgs> >("TopSort", fst->ArcType(), &args);
verify.cc 27 Apply<Operation<VerifyArgs> >("Verify", fst.ArcType(), &args);
relabel.cc 32 Apply<Operation<RelabelArgs1> >("Relabel", ofst->ArcType(), &args);
41 Apply<Operation<RelabelArgs2> >("Relabel", ofst->ArcType(), &args);
49 Apply<Operation<RelabelArgs3> >("Relabel", fst->ArcType(), &args);
rmepsilon.cc 30 Apply<Operation<RmEpsilonArgs1> >("RmEpsilon", ifst.ArcType(), &args);
38 Apply<Operation<RmEpsilonArgs2> >("RmEpsilon", fst->ArcType(), &args);
45 Apply<Operation<RmEpsilonArgs3> >("RmEpsilon", fst->ArcType(), &args);
shortest-distance.cc 29 Apply<Operation<ShortestDistanceArgs1> >("ShortestDistance", fst.ArcType(),
38 Apply<Operation<ShortestDistanceArgs2> >("ShortestDistance", ifst.ArcType(),
46 Apply<Operation<ShortestDistanceArgs3> >("ShortestDistance", ifst.ArcType(),
arcsort.cc 27 Apply<Operation<ArcSortArgs> >("ArcSort", fst->ArcType(), &args);
closure.cc 27 Apply<Operation<ClosureArgs> >("Closure", fst->ArcType(), &args);
convert.cc 29 Apply<Operation<ConvertArgs> >("Convert", ifst.ArcType(),
decode.cc 28 Apply<Operation<DecodeArgs> >("Decode", ofst->ArcType(), &args);
determinize.cc 30 Apply<Operation<DeterminizeArgs> >("Determinize", ifst.ArcType(), &args);
  /external/chromium_org/cc/output/
render_surface_filters.h 27 static SkBitmap Apply(const FilterOperations& filters,
  /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
  /external/openfst/src/extensions/far/
farscript.cc 49 Apply<Operation<FarCompileStringsArgs> >("FarCompileStrings", arc_type,
64 Apply<Operation<FarCreateArgs> >("FarCreate", arc_type, &args);
73 Apply<Operation<FarEqualArgs> >("FarEqual", arc_type, &args_with_retval);
89 Apply<Operation<FarExtractArgs> >("FarExtract", arc_type, &args);
99 Apply<Operation<FarInfoArgs> >("FarInfo", arc_type, &args);
120 Apply<Operation<FarPrintStringsArgs> >("FarPrintStrings", arc_type,
  /external/openfst/src/extensions/pdt/
pdtscript.cc 51 Apply<Operation<PdtComposeArgs> >("PdtCompose", ifst1.ArcType(), &args);
59 Apply<Operation<PdtExpandArgs> >("PdtExpand", ifst.ArcType(), &args);
81 Apply<Operation<PdtReplaceArgs> >("PdtReplace", ofst->ArcType(), &args);
89 Apply<Operation<PdtReverseArgs> >("PdtReverse", ifst.ArcType(), &args);
98 Apply<Operation<PdtShortestPathArgs> >("PdtShortestPath",
105 Apply<Operation<PrintPdtInfoArgs> >("PrintPdtInfo", ifst.ArcType(), &args);
  /external/chromium_org/extensions/browser/api/declarative_content/
content_rules_registry.h 41 virtual void Apply(
  /external/chromium_org/extensions/browser/
quota_service_unittest.cc 155 EXPECT_TRUE(lim->Apply(b, start_time + TimeDelta::FromSeconds(10 + m)));
161 EXPECT_TRUE(lim->Apply(b, start_time + TimeDelta::FromSeconds(15 + m)));
165 EXPECT_TRUE(lim->Apply(b, start_time + TimeDelta::FromSeconds(20 + m)));
167 EXPECT_TRUE(lim->Apply(b, start_time + TimeDelta::FromSeconds(50 + m)));
178 EXPECT_TRUE(lim.Apply(&b, kStartTime));
180 EXPECT_TRUE(lim.Apply(&b, kStartTime + TimeDelta::FromSeconds(30)));
182 EXPECT_FALSE(lim.Apply(&b, k1MinuteAfterStart));
185 EXPECT_TRUE(lim.Apply(&b, k1MinuteAfterStart - TimeDelta::FromSeconds(1)));
186 EXPECT_TRUE(lim.Apply(&b, k1MinuteAfterStart));
187 EXPECT_TRUE(lim.Apply(&b, k1MinuteAfterStart + TimeDelta::FromSeconds(1)))
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
network_predictor.cc 25 loss_rate_filter_->Apply(

Completed in 256 milliseconds

1 2 3 4 5 6 7