HomeSort by relevance Sort by last modified time
    Searched defs:options (Results 51 - 75 of 3098) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libchrome/base/
native_library.h 70 NativeLibraryOptions(const NativeLibraryOptions& options) = default; member in struct:base::NativeLibraryOptions
91 const NativeLibraryOptions& options,
  /external/libcups/cups/
backend.c 49 int options; /* Resolve options */ local
62 options = _HTTP_RESOLVE_STDERR;
65 options |= _HTTP_RESOLVE_FQDN;
71 options |= _HTTP_RESOLVE_FAXOUT;
77 sizeof(cg->resolved_uri), options, NULL, NULL));
testoptions.c 31 num_options; /* Number of options */
32 cups_option_t *options; /* Options */ local
54 "auth-info=user,pass\\\\,word\\\\\\\\", 0, &options);
61 else if ((value = cupsGetOption("foo", num_options, options)) == NULL ||
67 else if ((value = cupsGetOption("bar", num_options, options)) == NULL ||
74 else if ((value = cupsGetOption("baz", num_options, options)) == NULL ||
80 else if ((value = cupsGetOption("foobar", num_options, options)) == NULL ||
86 else if ((value = cupsGetOption("barfoo", num_options, options)) == NULL ||
92 else if ((value = cupsGetOption("auth-info", num_options, options)) == NULL |
    [all...]
  /external/libese/tools/ese_replay/
hw.h 29 void *options; member in struct:Hardware
  /external/libexif/libexif/canon/
exif-mnote-data-canon.h 43 ExifDataOption options; member in struct:_ExifMnoteDataCanon
  /external/ltp/testcases/kernel/mem/hugetlb/hugeshmget/
hugeshmget01.c 34 static struct tst_option options[] = { variable in typeref:struct:tst_option
95 .options = options,
  /external/ltp/testcases/kernel/syscalls/ioctl/
ioctl07.c 32 static struct tst_option options[] = { variable in typeref:struct:tst_option
68 .options = options,
  /external/ltp/testcases/kernel/syscalls/request_key/
request_key03.c 54 static struct tst_option options[] = { variable in typeref:struct:tst_option
202 .options = options,
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
DeltaEncoder.java 13 private final DeltaOptions options; field in class:DeltaEncoder
16 DeltaEncoder(DeltaOptions options) {
17 props[0] = (byte)(options.getDistance() - 1);
18 this.options = (DeltaOptions)options.clone();
34 return options.getOutputStream(out);
  /external/mesa3d/src/compiler/glsl/
main.cpp 39 static struct standalone_options options; variable in typeref:struct:standalone_options
42 { "dump-ast", no_argument, &options.dump_ast, 1 },
43 { "dump-hir", no_argument, &options.dump_hir, 1 },
44 { "dump-lir", no_argument, &options.dump_lir, 1 },
45 { "dump-builder", no_argument, &options.dump_builder, 1 },
46 { "link", no_argument, &options.do_link, 1 },
47 { "just-log", no_argument, &options.just_log, 1 },
60 "usage: %s [options] <file.vert | file.tesc | file.tese | file.geom | file.frag | file.comp>\n"
62 "Possible options are:\n";
80 options.glsl_version = strtol(optarg, NULL, 10)
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_bitmap.c 49 * If L8_UNORM, options->swizzle_xxxx is true. Otherwise we can just use
82 const nir_lower_bitmap_options *options)
95 tex->sampler_index = options->sampler;
96 tex->texture_index = options->sampler;
106 options->swizzle_xxxx ? 0 : 3));
117 const nir_lower_bitmap_options *options)
124 lower_bitmap(impl->function->shader, &b, options);
132 const nir_lower_bitmap_options *options)
136 lower_bitmap_impl(nir_shader_get_entrypoint(shader), options); local
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_nir.c 38 static const nir_shader_compiler_options options = { variable
58 return tgsi_to_nir(tokens, &options);
64 return &options;
  /external/ppp/pppd/plugins/
passwordfd.c 22 static option_t options[] = { variable
75 add_options (options);
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_generator.cc 56 const Options* options) {
57 ReflectionClassGenerator reflectionClassGenerator(file, options);
67 vector<pair<string, string> > options; local
68 ParseGeneratorParameter(parameter, &options);
76 struct Options cli_options;
78 for (int i = 0; i < options.size(); i++) {
79 if (options[i].first == "file_extension") {
80 cli_options.file_extension = options[i].second;
81 } else if (options[i].first == "base_namespace")
    [all...]
csharp_source_generator_base.cc 51 const Options *options)
52 : descriptor_(descriptor), options_(options) {
63 return (IsDescriptorProto(descriptor_) || this->options()->internal_access) ? "internal" : "public";
66 const Options* SourceGeneratorBase::options() { function in class:google::protobuf::compiler::csharp::SourceGeneratorBase
  /external/protobuf/src/google/protobuf/
lite_arena_unittest.cc 43 google::protobuf::ArenaOptions options; local
44 options.initial_block = &arena_block[0];
45 options.initial_block_size = arena_block.size();
46 google::protobuf::Arena arena(options);
  /external/python/cpython2/Lib/plat-irix5/
jpeg.py 3 # XXX Options 'smooth' and 'optimize' are ignored.
14 options = {'quality': 75, 'optimize': 0, 'smooth': 0, 'forcegray': 0} variable
27 if options['forcegray']:
35 cl.QUALITY_FACTOR, options['quality'], \
50 if format == cl.GRAYSCALE or options['forcegray']:
66 raise TypeError, 'jpeg.setoption: numeric options only'
69 if not options.has_key(name):
71 options[name] = int(value)
  /external/python/cpython2/Lib/plat-irix6/
jpeg.py 3 # XXX Options 'smooth' and 'optimize' are ignored.
14 options = {'quality': 75, 'optimize': 0, 'smooth': 0, 'forcegray': 0} variable
27 if options['forcegray']:
35 cl.QUALITY_FACTOR, options['quality'],
50 if format == cl.GRAYSCALE or options['forcegray']:
66 raise TypeError, 'jpeg.setoption: numeric options only'
69 if not options.has_key(name):
71 options[name] = int(value)
  /external/skia/bench/
AndroidCodecBench.cpp 46 SkAndroidCodec::AndroidOptions options; local
47 options.fSampleSize = fSampleSize;
53 codec->getAndroidPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(), &options);
CodecBench.cpp 51 SkCodec::Options options; local
53 options.fZeroInitialized = SkCodec::kYes_ZeroInitialized;
61 &options);
  /external/skqp/bench/
AndroidCodecBench.cpp 46 SkAndroidCodec::AndroidOptions options; local
47 options.fSampleSize = fSampleSize;
53 codec->getAndroidPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(), &options);
CodecBench.cpp 51 SkCodec::Options options; local
53 options.fZeroInitialized = SkCodec::kYes_ZeroInitialized;
61 &options);
  /external/strace/tests/
prctl-no-args.c 52 } options[] = { local
64 for (i = 0; i < ARRAY_SIZE(options); i++) {
65 long rc = syscall(__NR_prctl, options[i].val | bogus_op_bits,
67 printf("prctl(%s) = %s\n", options[i].str, sprintrc(rc));
  /external/strace/tests-m32/
prctl-no-args.c 52 } options[] = { local
64 for (i = 0; i < ARRAY_SIZE(options); i++) {
65 long rc = syscall(__NR_prctl, options[i].val | bogus_op_bits,
67 printf("prctl(%s) = %s\n", options[i].str, sprintrc(rc));
  /external/strace/tests-mx32/
prctl-no-args.c 52 } options[] = { local
64 for (i = 0; i < ARRAY_SIZE(options); i++) {
65 long rc = syscall(__NR_prctl, options[i].val | bogus_op_bits,
67 printf("prctl(%s) = %s\n", options[i].str, sprintrc(rc));

Completed in 630 milliseconds

1 23 4 5 6 7 8 91011>>