HomeSort by relevance Sort by last modified time
    Searched defs:Prune (Results 1 - 6 of 6) sorted by null

  /external/openfst/src/script/
prune.cc 19 #include <fst/script/prune.h>
26 void Prune(MutableFstClass *fst, const PruneOptions &opts) {
29 Apply<Operation<PruneArgs1> >("Prune", fst->ArcType(), &args);
33 void Prune(const FstClass &ifst, MutableFstClass *fst,
37 Apply<Operation<PruneArgs2> >("Prune", fst->ArcType(), &args);
41 void Prune(const FstClass &ifst,
47 Apply<Operation<PruneArgs3> >("Prune", ifst.ArcType(), &args);
51 void Prune(MutableFstClass *fst, const WeightClass& weight_threshold,
55 Apply<Operation<PruneArgs4> >("Prune", fst->ArcType(), &args);
59 REGISTER_FST_OPERATION(Prune, StdArc, PruneArgs1)
    [all...]
  /external/openfst/src/include/fst/script/
prune.h 26 #include <fst/prune.h>
79 void Prune(PruneArgs1 *args) {
87 Prune(ofst, opts);
96 void Prune(PruneArgs2 *args) {
102 Prune(ifst, ofst, opts);
112 void Prune(PruneArgs3 *args) {
117 Prune(ifst, ofst, w, args->arg4, args->arg5);
124 void Prune(PruneArgs4 *args) {
127 Prune(fst, w, args->arg3, args->arg4);
132 void Prune(MutableFstClass *fst, const PruneOptions &opts)
    [all...]
  /system/core/logd/
LogWhiteBlackList.cpp 25 Prune::Prune(uid_t uid, pid_t pid) : mUid(uid), mPid(pid) {
28 int Prune::cmp(uid_t uid, pid_t pid) const {
38 void Prune::format(char **strp) {
115 uid_t uid = Prune::uid_all;
123 pid_t pid = Prune::pid_all;
134 if ((uid == Prune::uid_all) && (pid == Prune::pid_all)) {
145 Prune *p = *it;
159 list->insert(it, new Prune(uid,pid))
    [all...]
LogWhiteBlackList.h 28 class Prune {
39 Prune(uid_t uid, pid_t pid);
50 typedef android::List<Prune *> PruneCollection;
  /external/lldb/source/Breakpoint/
BreakpointResolverName.cpp 153 BreakpointResolverName::LookupInfo::Prune (SymbolContextList &sc_list, size_t start_idx) const
229 lookup.Prune (func_list, start_func_idx);
  /external/openfst/src/include/fst/
prune.h 0 // prune.h
100 void Prune(MutableFst<Arc> *fst,
107 FSTERROR() << "Prune: Weight needs to have the path property and"
197 void Prune(MutableFst<Arc> *fst,
203 Prune(fst, opts);
217 void Prune(const Fst<Arc> &ifst,
225 FSTERROR() << "Prune: Weight needs to have the path property and"
327 void Prune(const Fst<Arc> &ifst,
334 Prune(ifst, ofst, opts);

Completed in 140 milliseconds