Searched defs:opts (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Descape_unittest.cc9 EscapeOptions opts; local
10 opts.mode = ESCAPE_NINJA;
11 std::string result = EscapeString("asdf: \"$\\bar", opts, NULL);
16 EscapeOptions opts; local
17 opts.mode = ESCAPE_NINJA_COMMAND;
18 opts.platform = ESCAPE_PLATFORM_WIN;
21 EXPECT_EQ("foo\\bar", EscapeString("foo\\bar", opts, NULL));
25 EXPECT_EQ("\"foo\\$ bar\"", EscapeString("foo\\ bar", opts, &needs_quoting));
30 opts.inhibit_quoting = true;
31 EXPECT_EQ("foo\\$ bar", EscapeString("foo\\ bar", opts,
43 EscapeOptions opts; local
55 EscapeOptions opts; local
[all...]
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h27 namespace opts { namespace
42 } // namespace opts
/external/openfst/src/script/
H A Ddeterminize.cc26 const DeterminizeOptions& opts) {
29 DeterminizeArgs args(ifst, ofst, opts);
24 Determinize(const FstClass &ifst, MutableFstClass *ofst, const DeterminizeOptions& opts) argument
H A Drandgen.cc25 const RandGenOptions<RandArcSelection> &opts) {
28 RandGenArgs args(ifst, ofst, seed, opts);
24 RandGen(const FstClass &ifst, MutableFstClass *ofst, int32 seed, const RandGenOptions<RandArcSelection> &opts) argument
H A Dprune.cc26 void Prune(MutableFstClass *fst, const PruneOptions &opts) { argument
27 PruneArgs1 args(fst, opts);
34 const PruneOptions &opts) {
35 PruneArgs2 args(ifst, fst, opts);
33 Prune(const FstClass &ifst, MutableFstClass *fst, const PruneOptions &opts) argument
H A Drandequivalent.cc41 const RandGenOptions<RandArcSelection> &opts) {
44 RandEquivalentInnerArgs2 args(fst1, fst2, seed, num_paths, delta, opts);
39 RandEquivalent(const FstClass &fst1, const FstClass &fst2, int32 seed, ssize_t num_paths, float delta, const RandGenOptions<RandArcSelection> &opts) argument
H A Dshortest-distance.cc26 const ShortestDistanceOptions &opts) {
27 ShortestDistanceArgs1 args(fst, distance, opts);
25 ShortestDistance(const FstClass &fst, vector<WeightClass> *distance, const ShortestDistanceOptions &opts) argument
H A Drmepsilon.cc25 bool reverse, const RmEpsilonOptions &opts) {
28 RmEpsilonArgs1 args(ifst, ofst, reverse, opts);
42 const RmEpsilonOptions &opts) {
43 RmEpsilonArgs3 args(fst, distance, opts);
24 RmEpsilon(const FstClass &ifst, MutableFstClass *ofst, bool reverse, const RmEpsilonOptions &opts) argument
41 RmEpsilon(MutableFstClass *fst, vector<WeightClass> *distance, const RmEpsilonOptions &opts) argument
H A Dshortest-path.cc26 const ShortestPathOptions &opts) {
29 ShortestPathArgs1 args(ifst, ofst, distance, opts);
24 ShortestPath(const FstClass &ifst, MutableFstClass *ofst, vector<WeightClass> *distance, const ShortestPathOptions &opts) argument
/external/openfst/src/bin/
H A Dfstcompile.cc66 fst::SymbolTableTextOptions opts; local
67 opts.allow_negative = FLAGS_allow_negative_labels;
70 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
75 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
H A Dfstdraw.cc80 fst::SymbolTableTextOptions opts; local
81 opts.allow_negative = FLAGS_allow_negative_labels;
84 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
89 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
H A Dfstprint.cc73 fst::SymbolTableTextOptions opts; local
74 opts.allow_negative = FLAGS_allow_negative_labels;
77 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
82 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
H A Dfstsymbols.cc81 fst::SymbolTableTextOptions opts; local
82 opts.allow_negative = FLAGS_allow_negative_labels;
87 fst->SetInputSymbols(SymbolTable::ReadText(FLAGS_isymbols, opts));
92 fst->SetOutputSymbols(SymbolTable::ReadText(FLAGS_osymbols, opts));
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dsignalbar.cpp30 QStyleOptionProgressBar opts; local
43 opts.minimum = -95;
44 opts.maximum = -35;
45 if (signal < opts.minimum)
46 opts.progress = opts.minimum;
47 else if (signal > opts.maximum)
48 opts.progress = opts.maximum;
50 opts
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
H A Dsetup.py81 opts = ReadSetup("python-setup.txt") variable
82 incldir, cppflags = ParseCPPFlags(opts["includes"])
83 sources = ParseSources(opts["sources"], opts["srcdir"].strip())
85 if opts["gcc"].strip() == "yes":
/external/iptables/include/linux/netfilter_ipv6/
H A Dip6t_opts.h12 __u16 opts[IP6T_OPTS_OPTSNR]; /* opts */ member in struct:ip6t_opts
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/
H A Dip6t_opts.h12 __u16 opts[IP6T_OPTS_OPTSNR]; /* opts */ member in struct:ip6t_opts
/external/libsepol/tests/
H A Dlibsepol-tests.c85 struct option opts[] = { local
91 while ((i = getopt_long(argc, argv, "vi", opts, NULL)) != -1) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dkeep-tracking.c54 struct perf_record_opts opts = { local
84 perf_evlist__config(evlist, &opts);
H A Dopen-syscall-tp-fields.c9 struct perf_record_opts opts = { local
38 err = perf_evlist__create_maps(evlist, &opts.target);
44 perf_evsel__config(evsel, &opts);
/external/openfst/src/include/fst/script/
H A Ddeterminize.h49 const DeterminizeOptions &opts = args->arg3; local
52 detargs.delta = opts.delta;
54 *(opts.weight_threshold.GetWeight<typename Arc::Weight>());
55 detargs.state_threshold = opts.state_threshold;
56 detargs.subsequential_label = opts.subsequential_label;
62 const DeterminizeOptions &opts =
H A Ddisambiguate.h49 const DisambiguateOptions &opts = args->arg3; local
52 detargs.delta = opts.delta;
54 *(opts.weight_threshold.GetWeight<typename Arc::Weight>());
55 detargs.state_threshold = opts.state_threshold;
56 detargs.subsequential_label = opts.subsequential_label;
62 const DisambiguateOptions &opts =
H A Drandequivalent.h56 const RandGenOptions<RandArcSelection> &opts = args->args.arg6; local
59 if (opts.arc_selector == UNIFORM_ARC_SELECTOR) {
62 ropts(arc_selector, opts.max_length, opts.npath);
66 } else if (opts.arc_selector == FAST_LOG_PROB_ARC_SELECTOR) {
69 ropts(arc_selector, opts.max_length, opts.npath);
76 ropts(arc_selector, opts.max_length, opts.npath);
98 fst::script::RandArcSelection> &opts);
[all...]
H A Drandgen.h41 const RandGenOptions<RandArcSelection> &opts = args->arg4; local
43 if (opts.arc_selector == UNIFORM_ARC_SELECTOR) {
46 ropts(arc_selector, opts.max_length,
47 opts.npath, opts.weighted);
49 } else if (opts.arc_selector == FAST_LOG_PROB_ARC_SELECTOR) {
52 ropts(arc_selector, opts.max_length,
53 opts.npath, opts.weighted);
58 ropts(arc_selector, opts
[all...]
/external/qemu/android/
H A Dqemulator.h37 AndroidOptions opts[1]; /* copy of options */ member in struct:__anon29170
54 AndroidOptions* opts );

Completed in 1182 milliseconds

1234567891011>>