HomeSort by relevance Sort by last modified time
    Searched refs:Options (Results 226 - 250 of 998) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/test/
test_io_thread.cc 43 base::Thread::Options(base::MessageLoop::TYPE_IO, 0)));
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.h 32 StringRef FS, const TargetOptions &Options,
  /external/llvm/lib/Target/PowerPC/
PPCTargetObjectFile.cpp 22 InitializeELF(TM.Options.UseInitArray);
  /external/llvm/lib/Target/SystemZ/
SystemZTargetMachine.h 31 StringRef FS, const TargetOptions &Options,
  /external/llvm/lib/Target/X86/
X86TargetMachine.h 33 StringRef FS, const TargetOptions &Options, Reloc::Model RM,
  /external/llvm/tools/dsymutil/
dsymutil.h 51 const LinkOptions &Options);
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUTargetMachine.h 43 TargetOptions Options,
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message_field.cc 49 const Options& options) {
50 SetCommonFieldVariables(descriptor, variables, options);
70 const Options& options)
72 SetMessageVariables(descriptor, &variables_, options);
192 const Options& options)
193 : MessageFieldGenerator(descriptor, options) {
255 const Options& options
    [all...]
  /external/regex-re2/re2/
filtered_re2.h 41 const RE2::Options& options,
  /external/skia/src/codec/
SkMaskSwizzler.h 32 const SkCodec::Options& options);
SkWebpAdapterCodec.cpp 26 size_t rowBytes, const AndroidOptions& options) {
31 if (!options.fSubset) {
32 supportedSize = this->onGetSampledDimensions(options.fSampleSize);
34 supportedSize = this->getSampledSubsetDimensions(options.fSampleSize, *options.fSubset);
40 SkCodec::Options codecOptions;
41 codecOptions.fZeroInitialized = options.fZeroInitialized;
42 codecOptions.fSubset = options.fSubset;
43 return this->codec()->getPixels(info, pixels, rowBytes, &codecOptions, options.fColorPtr,
44 options.fColorCount)
    [all...]
  /external/v8/test/unittests/libplatform/
task-queue-unittest.cc 27 : Thread(Options("libplatform TaskQueueThread")), queue_(queue) {}
  /external/vulkan-validation-layers/libs/vkjson/
vkjson_info.cc 40 struct Options {
47 bool ParseOptions(int argc, char* argv[], Options* options) {
51 options->instance = true;
53 options->device_index = 0;
62 int result = sscanf(arg2.c_str(), "%u", &options->device_index);
64 options->device_index = -1;
69 options->device_name = arg2;
71 options->output_file = arg2;
78 if (options->instance && (options->device_index != unsignedNegOne |
163 Options options; local
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
IteratorOptions.java 10 package com.adobe.xmp.options;
14 * Options for <code>XMPIterator</code> construction.
18 public final class IteratorOptions extends Options
122 * @see Options#defineOptionName(int)
138 * @see Options#getValidOptions()
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemUtils.java 66 BitmapFactory.Options justBoundsOpts = new BitmapFactory.Options();
127 BitmapFactory.Options opts = new BitmapFactory.Options();
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
BitmapUtil.java 41 final BitmapFactory.Options options = new BitmapFactory.Options(); local
44 options.inJustDecodeBounds = true;
45 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options);
48 return Math.min(options.outWidth, options.outHeight);
82 final BitmapFactory.Options options; local
84 options = null
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
BitmapManager.java 43 public BitmapFactory.Options mOptions;
55 s = "thread state = " + s + ", options = " + mOptions;
82 * BitmapFaction.Options used for decoding and cancelling.
85 BitmapFactory.Options options) {
86 getOrCreateThreadStatus(t).mOptions = options;
139 BitmapFactory.Options options, boolean isVideo) {
178 BitmapFactory.Options options) {
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageViewAdapter.java 116 BitmapFactory.Options options = new BitmapFactory.Options(); local
117 options.inPreferredConfig = Config.ARGB_8888;
118 options.inPreferQualityOverSpeed = true;
119 options.inSampleSize = (1 << level);
120 options.inBitmap = bitmap;
125 bitmap = regionDecoder.decodeRegion(wantRegion, options);
128 if (options.inBitmap != bitmap && options.inBitmap != null)
155 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
ImageRequestTest.java 60 final ArgumentCaptor<BitmapFactory.Options> options = local
61 ArgumentCaptor.forClass(BitmapFactory.Options.class);
63 options.capture(),
66 assertEquals(1, options.getValue().inSampleSize);
73 assertEquals(options.getValue().outWidth, bitmapWidth);
74 assertEquals(options.getValue().outHeight, bitmapHeight);
91 final ArgumentCaptor<BitmapFactory.Options> options = local
92 ArgumentCaptor.forClass(BitmapFactory.Options.class)
    [all...]
  /system/connectivity/shill/
ppp_daemon_unittest.cc 50 std::unique_ptr<ExternalTask> Start(const PPPDaemon::Options& options,
57 options, device, callback, error);
87 PPPDaemon::Options options; local
88 std::unique_ptr<ExternalTask> task(Start(options, "eth0", &error));
101 PPPDaemon::Options options; local
102 options.no_detach = true;
103 options.no_default_route = true
127 PPPDaemon::Options options; local
    [all...]
  /system/extras/perfprofd/quipper/
perf_parser.h 123 struct Options {
136 // Constructor that takes in options at PerfParser creation time.
137 explicit PerfParser(const Options& options);
139 // Pass in a struct containing various options.
140 void set_options(const Options& options);
197 Options options_; // Store all option flags as one struct.
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 119 Options = IsColVector ? (_Options | ColMajor) & ~RowMajor
124 typedef Matrix<_Scalar, _Rows, _Cols, Options, _MaxRows, _MaxCols> type;
127 template<typename Scalar, int Rows, int Cols, int Options, int MaxRows, int MaxCols>
131 row_major_bit = Options&RowMajor ? RowMajorBit : 0,
136 ((Options&DontAlign)==0)
416 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> MatrixRowType;
418 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> ArrayRowType;
431 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> MatrixColType;
433 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> ArrayColType;
448 typedef Matrix<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> MatrixDiagType
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
BitmapRegionTileSource.java 48 Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options);
88 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) {
89 return mDecoder.decodeRegion(wantRegion, options);
120 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) {
126 int sampleSize = Math.max(options.inSampleSize, 1);
179 BitmapFactory.Options opts = new BitmapFactory.Options();
    [all...]
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureCtsActivity.java 51 BitmapFactory.Options optionsRGB = new BitmapFactory.Options();
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
HelloCompute.java 72 final BitmapFactory.Options options = new BitmapFactory.Options(); local
73 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
74 return BitmapFactory.decodeResource(getResources(), resource, options);

Completed in 1061 milliseconds

1 2 3 4 5 6 7 8 91011>>