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

<<11121314151617181920>>

  /external/skia/tests/
AnimatedImageTest.cpp 202 SkCodec::Options options; local
203 options.fFrameIndex = (int) i;
204 options.fPriorFrame = frameInfos[i].fRequiredFrame;
205 if (options.fPriorFrame == SkCodec::kNone) {
209 const SkBitmap& priorFrame = frames[options.fPriorFrame];
211 ERRORF(r, "Failed to copy %s frame %i", file, options.fPriorFrame);
212 options.fPriorFrame = SkCodec::kNone;
217 auto result = codec->getPixels(info, bm.getPixels(), bm.rowBytes(), &options);
  /external/skqp/src/android/
SkBitmapRegionCodec.cpp 104 SkAndroidCodec::AndroidOptions options; local
105 options.fSampleSize = sampleSize;
106 options.fSubset = &subset;
107 options.fZeroInitialized = zeroInit;
111 &options);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
ListFieldOffsetsCommand.java 79 BaksmaliOptions options = getOptions(); local
83 ClassProto classProto = (ClassProto) options.classPath.getClass(classDef);
105 final BaksmaliOptions options = new BaksmaliOptions(); local
107 options.apiLevel = apiLevel;
110 options.classPath = analysisArguments.loadClassPathForDexFile(
118 return options;
ListVtablesCommand.java 96 BaksmaliOptions options = getOptions(); local
97 if (options == null) {
104 listClassVtable((ClassProto)options.classPath.getClass(cls));
111 listClassVtable((ClassProto)options.classPath.getClass(classDef));
142 final BaksmaliOptions options = new BaksmaliOptions(); local
144 options.apiLevel = apiLevel;
147 options.classPath = analysisArguments.loadClassPathForDexFile(inputFile.getAbsoluteFile().getParentFile(),
155 return options;
  /external/smali/baksmali/src/test/java/org/jf/baksmali/
BaksmaliTestUtils.java 51 BaksmaliOptions options, boolean stripComments) throws IOException,
53 ClassDef classDef = SmaliTestUtils.compileSmali(source, options.apiLevel);
56 String normalizedActual = getNormalizedSmali(classDef, options, stripComments);
64 BaksmaliOptions options) throws IOException, RecognitionException {
65 assertSmaliCompiledEquals(source, expected, options, false);
70 BaksmaliOptions options = new BaksmaliOptions(); local
71 assertSmaliCompiledEquals(source, expected, options);
83 public static String getNormalizedSmali(@Nonnull ClassDef classDef, @Nonnull BaksmaliOptions options,
88 ClassDefinition classDefinition = new ClassDefinition(options, classDef);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
ArrayTagsTest.java 54 DumperOptions options = new DumperOptions(); local
55 options.setDefaultFlowStyle(FlowStyle.BLOCK);
56 Yaml yaml = new Yaml(options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/
EmitterMultiLineTest.java 49 DumperOptions options = new DumperOptions(); local
50 options.setDefaultFlowStyle(FlowStyle.BLOCK);
51 Yaml yaml = new Yaml(options);
81 DumperOptions options = new DumperOptions(); local
82 options.setDefaultFlowStyle(FlowStyle.FLOW);
83 Yaml yaml = new Yaml(options);
97 DumperOptions options = new DumperOptions(); local
98 options.setDefaultFlowStyle(FlowStyle.BLOCK);
99 Yaml yaml = new Yaml(options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue148/
PrintableUnicodeTest.java 106 DumperOptions options = new DumperOptions(); local
107 options.setAllowUnicode(false);
108 options.setDefaultScalarStyle(ScalarStyle.DOUBLE_QUOTED);
109 return new Yaml(options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
FlexibleScalarStyleTest.java 36 DumperOptions options = new DumperOptions(); local
37 options.setDefaultScalarStyle(ScalarStyle.FOLDED);
38 Yaml yaml = new Yaml(options);
52 DumperOptions options = new DumperOptions(); local
53 options.setWidth(30);
54 Yaml yaml = new Yaml(options);
62 DumperOptions options = new DumperOptions(); local
63 options.setWidth(30);
64 Yaml yaml = new Yaml(new MyRepresenter(), options);
72 DumperOptions options = new DumperOptions() local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue47/
ReadOnlyPropertiesTest.java 41 DumperOptions options = new DumperOptions(); local
42 options.setAllowReadOnlyProperties(true);
43 Yaml yaml = new Yaml(options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/
DumpSetAsSequenceExampleTest.java 36 DumperOptions options = new DumperOptions(); local
37 options.setAllowReadOnlyProperties(true);
38 Yaml yaml = new Yaml(new SetRepresenter(), options);
47 DumperOptions options = new DumperOptions(); local
48 options.setAllowReadOnlyProperties(true);
49 options.setDefaultFlowStyle(FlowStyle.BLOCK);
50 Yaml yaml = new Yaml(new SetRepresenter(), options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue8/
PrattleRepresenterTest.java 36 DumperOptions options = new DumperOptions(); local
37 options.setAllowReadOnlyProperties(true);
38 Yaml yaml = new Yaml(options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
LongTest.java 27 DumperOptions options = new DumperOptions(); local
28 options.setDefaultScalarStyle(DumperOptions.ScalarStyle.DOUBLE_QUOTED);
29 Yaml yaml = new Yaml(options);
53 DumperOptions options = new DumperOptions(); local
54 options.setDefaultScalarStyle(DumperOptions.ScalarStyle.DOUBLE_QUOTED);
57 Yaml yaml = new Yaml(repr, options);
StringArrayTest.java 40 DumperOptions options = new DumperOptions(); local
41 options.setPrettyFlow(true);
42 Yaml yaml = new Yaml(options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
FilterPropertyToDumpTest.java 54 DumperOptions options = new DumperOptions(); local
55 options.setAllowReadOnlyProperties(true);
56 Yaml yaml = new Yaml(options);
SafeRepresenterTest.java 69 DumperOptions options = new DumperOptions(); local
70 options.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
71 Yaml yaml = new Yaml(options);
92 DumperOptions options = new DumperOptions(); local
93 options.setDefaultScalarStyle(DumperOptions.ScalarStyle.DOUBLE_QUOTED);
94 options.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
95 Yaml yaml = new Yaml(options);
110 DumperOptions options = new DumperOptions(); local
111 options.setDefaultScalarStyle(DumperOptions.ScalarStyle.SINGLE_QUOTED);
112 options.setDefaultFlowStyle(DumperOptions.FlowStyle.FLOW)
127 DumperOptions options = new DumperOptions(); local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/ruby/
RubyTest.java 41 DumperOptions options = new DumperOptions(); local
42 options.setExplicitStart(true);
43 Yaml yaml2 = new Yaml(options);
58 DumperOptions options = new DumperOptions(); local
59 options.setExplicitStart(true);
64 Yaml yaml2 = new Yaml(repr, options);
82 DumperOptions options = new DumperOptions(); local
83 options.setExplicitStart(true);
87 Yaml yaml2 = new Yaml(repr, options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
BoolTagTest.java 100 DumperOptions options = new DumperOptions(); local
101 options.setDefaultFlowStyle(FlowStyle.BLOCK);
102 Yaml yaml = new Yaml(new BoolRepresenter("True"), options);
  /external/squashfs-tools/squashfs-tools/
compressor.h 32 int (*options)(char **, int); member in struct:compressor
76 if(comp->options == NULL)
79 return comp->options(argv, argc);
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
SkiaImageDecoder.java 53 BitmapFactory.Options options = new BitmapFactory.Options(); local
55 options.inPreferredConfig = bitmapConfig;
79 bitmap = BitmapFactory.decodeResource(context.getResources(), id, options);
82 bitmap = BitmapFactory.decodeStream(context.getAssets().open(assetName), null, options);
84 bitmap = BitmapFactory.decodeFile(uriString.substring(FILE_PREFIX.length()), options);
90 bitmap = BitmapFactory.decodeStream(inputStream, null, options);
  /external/syslinux/com32/include/
dhcp.h 27 uint8_t options[4]; /* 240 */ member in struct:dhcp_packet
  /external/tensorflow/tensorflow/contrib/image/kernels/
adjust_hsv_in_yiq_op.cc 48 const ComputeOptions& options) = 0;
79 ComputeOptions options; variable
80 options.input = &input;
81 options.delta_h = &delta_h;
82 options.scale_s = &scale_s;
83 options.scale_v = &scale_v;
84 options.output = output;
85 options.channel_count = channel_count;
86 DoCompute(context, options);
101 const ComputeOptions& options) override
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
operator_test.cc 55 // TF Lite options. Proceed to deserialize the options back into a new
56 // tf.mini operator, which is then returned. If `options` is given, it will
57 // be populated with the serialized options.
61 Options* options = nullptr) {
63 Options input_options = op.Serialize(toco_op, &builder);
65 if (options) {
66 *options = input_options;
88 Options options local
    [all...]
  /external/tensorflow/tensorflow/contrib/tpu/profiler/
dump_tpu_profile.cc 54 io::ZlibCompressionOptions options = io::ZlibCompressionOptions::GZIP(); local
55 io::ZlibOutputBuffer buffer(file.get(), options.input_buffer_size,
56 options.output_buffer_size, options);
87 JsonOptions options; local
88 options.always_print_primitive_fields = true;
89 auto status = MessageToJsonString(profile, &json, options);
  /external/tensorflow/tensorflow/core/common_runtime/
direct_session_with_tracking_alloc_test.cc 71 SessionOptions options; local
72 (*options.config.mutable_device_count())["CPU"] = 2;
73 options.config.mutable_graph_options()->set_build_cost_model(1);
74 options.config.mutable_graph_options()
77 std::unique_ptr<Session> session(NewSession(options));
127 SessionOptions options; local
128 options.config.mutable_graph_options()->set_build_cost_model(1);
129 options.config.mutable_graph_options()->set_build_cost_model_after(
131 std::unique_ptr<Session> session(NewSession(options));
179 SessionOptions options; local
264 SessionOptions options; local
323 SessionOptions options; local
    [all...]

Completed in 698 milliseconds

<<11121314151617181920>>