HomeSort by relevance Sort by last modified time
    Searched refs:opts (Results 151 - 175 of 935) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /external/libselinux/src/
label.c 20 const struct selinux_opt *opts,
35 static inline int selabel_is_validate_set(const struct selinux_opt *opts,
39 if (opts[n].type == SELABEL_OPT_VALIDATE)
40 return !!opts[n].value;
67 const struct selinux_opt *opts,
86 rec->validating = selabel_is_validate_set(opts, nopts);
88 if ((*initfuncs[backend])(rec, opts, nopts)) {
  /external/lldb/utils/test/
run-dis.py 99 opts, args = parser.parse_args()
100 if not opts.root_dir or not opts.path_pattern:
105 root_dir = opts.root_dir
111 path_pattern = opts.path_pattern
113 suffix = opts.suffix
114 num_symbols = opts.num_symbols
disasm.py 163 opts, args = parser.parse_args()
165 gdb_commands = opts.gdb_commands
166 gdb_options = opts.gdb_options
168 if not opts.executable:
171 executable = opts.executable
173 if not opts.function:
176 function = opts.function
178 llvm_mc = opts.llvm_mc if opts.llvm_mc else which('llvm-mc')
185 llvm_mc_options = opts.llvm_mc_option
    [all...]
  /external/llvm/utils/
clang-parse-diagnostics-file 25 (opts, args) = parser.parse_args()
32 if opts.error:
34 if opts.fatal:
36 if opts.ignored:
38 if opts.note:
40 if opts.warning:
77 if levels[d.get('level')] or opts.all]
  /external/qemu/distrib/libselinux/src/
label.c 20 const struct selinux_opt *opts,
35 static inline int selabel_is_validate_set(const struct selinux_opt *opts,
39 if (opts[n].type == SELABEL_OPT_VALIDATE)
40 return !!opts[n].value;
67 const struct selinux_opt *opts,
86 rec->validating = selabel_is_validate_set(opts, nopts);
88 if ((*initfuncs[backend])(rec, opts, nopts)) {
  /external/chromium_org/third_party/mesa/src/
SConstruct 33 opts = Variables('config.py')
34 common.AddOptions(opts)
37 options = opts,
44 #opts.Save('config.py', env)
60 Help(opts.GenerateHelpText(env))
100 options = opts,
  /external/chromium_org/tools/json_to_struct/
json_to_struct.py 188 (opts, args) = parser.parse_args()
190 if not opts.schema:
196 if opts.destdir:
197 output_root = os.path.join(os.path.normpath(opts.destdir), shortroot)
201 if opts.destbase:
202 basepath = os.path.normpath(opts.destbase)
206 schema = _Load(opts.schema)
209 head = HEAD % (datetime.now().year, opts.schema, description_filename)
210 _GenerateH(basepath, output_root, head, opts.namespace, schema, description)
211 _GenerateCC(basepath, output_root, head, opts.namespace, schema, description
    [all...]
  /external/mesa3d/
SConstruct 33 opts = Variables('config.py')
34 common.AddOptions(opts)
37 options = opts,
44 #opts.Save('config.py', env)
60 Help(opts.GenerateHelpText(env))
100 options = opts,
  /external/clang/utils/ABITest/
ABITestGen.py 480 (opts, args) = parser.parse_args()
482 if not opts.useRandomSeed:
483 random.seed(opts.seed)
487 if opts.useBuiltins:
489 if opts.useChar: ints.append(('char',1))
490 if opts.useShort: ints.append(('short',2))
491 if opts.useInt: ints.append(('int',4))
493 if opts.useLong: ints.append(('long',4))
494 if opts.useLongLong: ints.append(('long long',8))
495 if opts.useUnsigned:
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
rtcd.pl 13 my %opts = ();
27 \%opts,
34 if (!defined($opts{$opt})) {
47 open CONFIG_FILE, $opts{config} or
48 die "Error opening config file '$opts{config}': $!\n";
201 my $include_guard = uc($opts{sym})."_H_";
225 void $opts{sym}(void);
362 if ($opts{arch} eq 'x86') {
365 } elsif ($opts{arch} eq 'x86_64') {
370 } elsif ($opts{arch} eq 'mips32' || $opts{arch} eq 'mips64')
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
setup.py 81 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/chromium_org/tools/git/
for-all-touched-files.py 100 opts, args = parser.parse_args()
106 extensions = opts.extensions
107 if opts.cpp_only:
110 ForAllTouchedFiles(opts.branch, extensions, opts.token, args[0])
  /external/chromium_org/tools/
gypv8sh.py 29 (opts, args) = parser.parse_args()
39 arguments = [js2webui, inputfile, inputrelfile, opts.deps_js,
43 if opts.verbose or opts.impotent:
45 if not opts.impotent:
  /external/chromium_org/tools/json_schema_compiler/
features_compiler.py 67 (opts, filenames) = parser.parse_args()
73 result = _GenerateSchema(filenames[0], opts.root, opts.destdir,
74 opts.namespace)
75 if not opts.destdir:
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 25 if not opts.showIDs:
40 if opts.maxDepth is not None and depth >= opts.maxDepth:
62 global opts
72 (opts, args) = parser.parse_args()
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 165 Options opts = new BitmapFactory.Options(); local
169 opts.inSampleSize = SAMPLESIZES[j];
170 opts.inPreferredConfig = COLOR_CONFIGS[k];
175 Bitmap wholeImage = BitmapFactory.decodeStream(is2, null, opts);
178 compareRegionByRegion(decoder, opts, mMseMarginWebPConfigRgb565,
181 compareRegionByRegion(decoder, opts, mMseMargin, wholeImage);
190 Options opts = new BitmapFactory.Options(); local
194 opts.inSampleSize = SAMPLESIZES[j];
195 opts.inPreferredConfig = COLOR_CONFIGS[k];
196 opts.inBitmap = null
220 Options opts = new BitmapFactory.Options(); local
246 Options opts = new BitmapFactory.Options(); local
299 BitmapFactory.Options opts = new BitmapFactory.Options(); local
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkDecodingImageGenerator.cpp 213 const SkDecodingImageGenerator::Options& opts) {
222 decoder->setSampleSize(opts.fSampleSize);
223 decoder->setRequireUnpremultipliedColors(opts.fRequireUnpremul);
233 if (opts.fUseRequestedColorType && (opts.fRequestedColorType != info.colorType())) {
234 if (!bitmap.canCopyTo(opts.fRequestedColorType)) {
235 SkASSERT(bitmap.colorType() != opts.fRequestedColorType);
238 info = info.makeColorType(opts.fRequestedColorType);
241 if (opts.fRequireUnpremul && info.alphaType() != kOpaque_SkAlphaType) {
252 opts.fSampleSize, opts.fDitherImage))
    [all...]
  /external/skia/src/images/
SkDecodingImageGenerator.cpp 218 const SkDecodingImageGenerator::Options& opts) {
227 decoder->setSampleSize(opts.fSampleSize);
228 decoder->setRequireUnpremultipliedColors(opts.fRequireUnpremul);
238 if (opts.fUseRequestedColorType && (opts.fRequestedColorType != info.colorType())) {
239 if (!bitmap.canCopyTo(opts.fRequestedColorType)) {
240 SkASSERT(bitmap.colorType() != opts.fRequestedColorType);
243 info.fColorType = opts.fRequestedColorType;
246 if (opts.fRequireUnpremul && info.fAlphaType != kOpaque_SkAlphaType) {
251 opts.fSampleSize, opts.fDitherImage))
    [all...]
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 172 RewriteOptions opts = RewriteOptions()) const;
174 RewriteOptions opts = RewriteOptions()) const;
217 RewriteOptions opts = RewriteOptions());
221 RewriteOptions opts = RewriteOptions()) {
222 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);
226 bool RemoveText(SourceRange range, RewriteOptions opts = RewriteOptions()) {
227 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);
  /external/iptables/extensions/
libip6t_dst.c 18 " --dst-opts TYPE[:LEN][,TYPE[:LEN]...]\n"
27 {.name = "dst-opts", .id = O_DSTOPTS, .type = XTTYPE_STRING},
56 parse_options(const char *optsstr, uint16_t *opts)
81 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8;
83 if (opts[i] == 0)
86 opts[i] |= parse_opts_num(range, "length") & 0xFF;
88 opts[i] |= (0x00FF);
91 printf("opts str: %s %s\n", cp, range);
92 printf("opts opt: %04X\n", opts[i])
    [all...]
libip6t_hbh.c 20 " --hbh-opts TYPE[:LEN][,TYPE[:LEN]...] \n"
29 {.name = "hbh-opts", .id = O_HBH_OPTS, .type = XTTYPE_STRING},
58 parse_options(const char *optsstr, uint16_t *opts)
77 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8;
79 if (opts[i] == 0)
81 opts[i] |= parse_opts_num(range, "length") & 0xFF;
83 opts[i] |= (0x00FF);
87 printf("opts str: %s %s\n", cp, range);
88 printf("opts opt: %04X\n", opts[i])
    [all...]
  /external/openfst/src/include/fst/
prune.h 93 // the weight of the shortest path Times() 'opts.weight_threshold'.
94 // When 'opts.state_threshold != kNoStateId', the resulting transducer
95 // will restricted further to have at most 'opts.state_threshold'
101 const PruneOptions<Arc, ArcFilter> &opts) {
117 if (!opts.distance) {
119 ShortestDistance(*fst, &tmp, true, opts.delta);
121 const vector<Weight> *fdistance = opts.distance ? opts.distance : &tmp;
123 if ((opts.state_threshold == 0) ||
136 Weight limit = Times((*fdistance)[fst->Start()], opts.weight_threshold)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.h 149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) {
150 FstReadOptions ropts(opts);
153 hdr = *opts.header;
155 if (!hdr.Read(strm, opts.source))
182 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const {
456 // If opts.header is non-null, skip read-in and use the option value.
457 // If opts.[io]symbols is non-null, read-in but use the option value.
458 bool ReadHeaderAndSymbols(istream &strm, const FstReadOptions& opts,
460 if (opts.header)
461 *hdr = *opts.header
    [all...]
  /external/openfst/src/include/fst/script/
shortest-distance.h 104 const ShortestDistanceOptions &opts = args->arg3; local
108 switch (opts.arc_filter_type) {
114 queue, AnyArcFilter<Arc>(), opts.source, opts.delta);
125 queue, EpsilonArcFilter<Arc>(), opts.source, opts.delta);
136 queue, InputEpsilonArcFilter<Arc>(), opts.source, opts.delta);
148 queue, OutputEpsilonArcFilter<Arc>(), opts.source, opts.delta)
164 const ShortestDistanceOptions &opts = args->arg3; local
    [all...]

Completed in 653 milliseconds

1 2 3 4 5 67 8 91011>>