HomeSort by relevance Sort by last modified time
    Searched full:opts (Results 51 - 75 of 379) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/iproute2/tc/
m_xt_old.c 60 static struct option *opts = original_opts; variable in typeref:struct:option
81 opts = original_opts;
237 c = getopt_long(argc, argv, "j:", opts, NULL);
249 opts =
250 merge_options(opts, m->extra_opts,
279 free_opts(opts);
337 free_opts(opts);
392 opts =
393 merge_options(opts, m->extra_opts,
423 free_opts(opts);
    [all...]
m_xt.c 68 .opts = original_opts,
147 c = getopt_long(argc, argv, "j:", tcipt_globals.opts, NULL);
159 tcipt_globals.opts =
160 xtables_merge_options(tcipt_globals.opts,
304 tcipt_globals.opts =
305 xtables_merge_options(tcipt_globals.opts,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-distance.h 63 const ShortestDistanceOptions<Arc, Queue, ArcFilter> &opts,
65 : fst_(fst.Copy()), distance_(distance), state_queue_(opts.state_queue),
66 arc_filter_(opts.arc_filter),
67 delta_(opts.delta), retain_(retain) {
183 // This computes the shortest distance from the 'opts.source' state to
202 const ShortestDistanceOptions<Arc, Queue, ArcFilter> &opts) {
205 sd_state(fst, distance, opts, false);
206 sd_state.ShortestDistance(opts.source);
240 opts(&state_queue, arc_filter);
241 ShortestDistance(fst, distance, opts);
    [all...]
rmepsilon.h 64 const RmEpsilonOptions<Arc, Queue> &opts)
65 : fst_(fst), distance_(distance), sd_state_(fst_, distance, opts, true) {
204 const RmEpsilonOptions<Arc, Queue> &opts) {
244 rmeps_state(*fst, distance, opts);
263 if (opts.connect)
296 opts(&state_queue, kDelta, connect);
298 RmEpsilon(fst, &distance, opts);
305 RmEpsilonFstOptions(const CacheOptions &opts, float delta = kDelta)
306 : CacheOptions(opts), delta(delta) {}
331 RmEpsilonFstImpl(const Fst<A>& fst, const RmEpsilonFstOptions &opts)
    [all...]
closure.h 76 ClosureFstOptions(const RationalFstOptions &opts, ClosureType t)
77 : RationalFstOptions(opts), type(t) {}
106 ClosureFst(const Fst<A> &fst, const ClosureFstOptions &opts)
107 : RationalFst<A>(opts) {
108 Impl()->InitClosure(fst, opts.type);
determinize.h 107 explicit DeterminizeFstOptions(const CacheOptions &opts, float del = kDelta)
108 : CacheOptions(opts), delta(del) {}
135 DeterminizeFstImplBase(const Fst<A> &fst, const CacheOptions &opts)
136 : CacheImpl<A>(opts), fst_(fst.Copy()) {
225 const DeterminizeFstOptions &opts)
226 : DeterminizeFstImplBase<A>(fst, opts),
227 delta_(opts.delta), common_divisor_(common_divisor),
490 DeterminizeFstImpl(const Fst<A> &fst, const DeterminizeFstOptions &opts);
546 const DeterminizeFstOptions &opts = DeterminizeFstOptions()) {
550 impl_ = new DeterminizeFsaImpl<A, D>(fst, D(), opts);
    [all...]
  /external/clearsilver/python/
neo_cgi.c 415 HTML_CONVERT_OPTS opts; local
419 opts.bounce_url = NULL;
420 opts.url_class = NULL;
421 opts.url_target = "_blank";
422 opts.mailto_class = NULL;
423 opts.long_lines = 0;
424 opts.space_convert = 0;
425 opts.newlines_convert = 1;
426 opts.longline_width = 75; /* This hasn't been used in a while, actually */
427 opts.check_ascii_art = 1
    [all...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 40 // TODO: support marking opts as for displayable in full usage only
122 final Opts opts = new Opts (); local
166 opts.addError (formatMessage ("unknown option \'" + optName + "\'"));
177 opt = opts.getOpt (canonicalName);
184 opts.addOpt (opt, optdef, optName);
192 opts.addOpt (opt, optdef, optName);
196 opts.addError (formatMessage ("option \'" + optName + "\' cannot be specified more than once"));
234 opts.addError (formatMessage ("option \'" + opt.getName () + "\' does not accept values: \'" + value + (…)
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
mergeCommand.java 64 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
66 if (opts == null) // this means there were args parsing errors
77 for (int o = 0; o < opts.length; ++ o)
79 final IOptsParser.IOpt opt = opts [o];
99 // process prefixed opts:
  /external/emma/core/java12/com/vladium/emma/report/
reportCommand.java 66 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
68 if (opts == null) // this means there were args parsing errors
79 for (int o = 0; o < opts.length; ++ o)
81 final IOptsParser.IOpt opt = opts [o];
105 // process prefixed opts:
  /external/webkit/WebKitTools/QtLauncher/
mainwindow.cpp 107 QUrl::FormattingOptions opts; local
108 opts |= QUrl::RemoveScheme;
109 opts |= QUrl::RemoveUserInfo;
110 opts |= QUrl::StripTrailingSlash;
111 QString s = url.toString(opts);
  /external/opencore/build_config/default/
setup.sh 127 local cur prev opts
131 opts="${PV_MAKE_COMPLETION_TARGETS}"
139 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
  /external/bluetooth/bluez/cups/
hcrp.c 177 struct l2cap_options opts; local
261 memset(&opts, 0, sizeof(opts));
262 size = sizeof(opts);
264 if (getsockopt(data_sk, SOL_L2CAP, L2CAP_OPTIONS, &opts, &size) < 0) {
274 mtu = opts.omtu;
  /external/bluetooth/bluez/test/
hstest.c 86 struct sco_options opts; local
120 memset(&opts, 0, sizeof(opts));
121 size = sizeof(opts);
123 if (getsockopt(s, SOL_SCO, SCO_OPTIONS, &opts, &size) < 0) {
132 *mtu = opts.mtu;
  /external/emma/core/java12/com/vladium/emma/instr/
instrCommand.java 67 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
69 if (opts == null) // this means there were args parsing errors
79 for (int o = 0; o < opts.length; ++ o)
81 final IOptsParser.IOpt opt = opts [o];
115 "invalid '" + opts [o].getName () + "' option value: " + ov);
127 // process prefixed opts:
  /external/icu4c/test/perf/normperf/
normperf.h 77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
146 NormPerfFunction(NormFn func, int32_t opts, ULine* srcLines,int32_t srcNumLines,UBool _uselen) : options(opts) {
157 NormPerfFunction(NormFn func, int32_t opts, const UChar* source,int32_t sourceLen,UBool _uselen) : options(opts) {
  /external/iptables/extensions/
libip6t_CONNSECMARK.c 27 static struct option opts[] = { variable in typeref:struct:option
118 .extra_opts = opts
libip6t_MARK.c 23 static struct option opts[] = { variable in typeref:struct:option
125 .extra_opts = opts
libip6t_NFQUEUE.c 30 static struct option opts[] = { variable in typeref:struct:option
108 .extra_opts = opts
libip6t_SECMARK.c 28 static struct option opts[] = { variable in typeref:struct:option
119 .extra_opts = opts
libip6t_condition.c 22 static struct option opts[] = { variable in typeref:struct:option
98 .extra_opts = opts
libipt_CLASSIFY.c 24 static struct option opts[] = { variable in typeref:struct:option
123 .extra_opts = opts
libipt_CONNSECMARK.c 27 static struct option opts[] = { variable in typeref:struct:option
120 .extra_opts = opts
libipt_NFQUEUE.c 30 static struct option opts[] = { variable in typeref:struct:option
108 .extra_opts = opts
libipt_SECMARK.c 26 static struct option opts[] = { variable in typeref:struct:option
119 .extra_opts = opts

Completed in 251 milliseconds

1 23 4 5 6 7 8 91011>>