/external/llvm/tools/dsymutil/ |
dsymutil.h | 51 const LinkOptions &Options);
|
/external/llvm/tools/lto/ |
lto.cpp | 208 llvm::TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); 210 LTOModule::createFromFile(*LTOContext, path, Options); 218 llvm::TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); 220 LTOModule::createFromOpenFile(*LTOContext, fd, path, size, Options); 231 llvm::TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); 233 *LTOContext, fd, path, map_size, offset, Options); 241 llvm::TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); 243 LTOModule::createFromBuffer(*LTOContext, mem, length, Options); 253 llvm::TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); 255 LTOModule::createFromBuffer(*LTOContext, mem, length, Options, path) [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_map_field.h | 46 MapFieldGenerator(const FieldDescriptor* descriptor, const Options& options);
|
/external/protobuf/src/google/protobuf/compiler/csharp/ |
csharp_map_field.h | 48 const Options* options);
|
csharp_repeated_enum_field.h | 50 const Options *options);
|
csharp_repeated_primitive_field.h | 46 RepeatedPrimitiveFieldGenerator(const FieldDescriptor* descriptor, int fieldOrdinal, const Options *options);
|
/external/regex-re2/re2/ |
filtered_re2.h | 41 const RE2::Options& options,
|
/external/skia/bench/ |
EncoderBench.cpp | 50 SkJpegEncoder::Options opts; 56 SkWebpEncoder::Options opts; 64 SkWebpEncoder::Options opts; 75 SkPngEncoder::Options opts;
|
/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;
|
/external/skia/src/core/ |
SkColorSpaceXformImageGenerator.h | 22 const Options& opts) override;
|
SkPictureImageGenerator.h | 20 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options& opts)
|
/external/vulkan-validation-layers/libs/vkjson/ |
vkjson_info.cc | 33 struct Options { 40 bool ParseOptions(int argc, char* argv[], Options* options) { 44 options->instance = true; 46 options->device_index = 0; 55 int result = sscanf(arg2.c_str(), "%u", &options->device_index); 57 options->device_index = -1; 62 options->device_name = arg2; 64 options->output_file = arg2; 71 if (options->instance && (options->device_index != unsignedNegOne | 156 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()
|
/hardware/qcom/gps/msm8998/android/location_api/ |
FlpAPIClient.cpp | 45 static void convertBatchOption(const IGnssBatching::Options& in, LocationOptions& out, 88 int FlpAPIClient::flpStartSession(const IGnssBatching::Options& opts) 93 LocationOptions options; local 94 convertBatchOption(opts, options, mLocationCapabilitiesMask); 99 if (locAPIStartSession(mDefaultId, mode, options) == LOCATION_ERROR_SUCCESS) { 105 int FlpAPIClient::flpUpdateSessionOptions(const IGnssBatching::Options& opts) 110 LocationOptions options; local 111 convertBatchOption(opts, options, mLocationCapabilitiesMask); 117 if (locAPIUpdateSessionOptions(mDefaultId, mode, options) == LOCATION_ERROR_SUCCESS) { 168 static void convertBatchOption(const IGnssBatching::Options& in, LocationOptions& out [all...] |
/hardware/qcom/gps/sdm845/android/location_api/ |
BatchingAPIClient.cpp | 45 static void convertBatchOption(const IGnssBatching::Options& in, LocationOptions& out, 88 int BatchingAPIClient::startSession(const IGnssBatching::Options& opts) 93 LocationOptions options; local 94 convertBatchOption(opts, options, mLocationCapabilitiesMask); 99 if (locAPIStartSession(mDefaultId, mode, options) == LOCATION_ERROR_SUCCESS) { 105 int BatchingAPIClient::updateSessionOptions(const IGnssBatching::Options& opts) 110 LocationOptions options; local 111 convertBatchOption(opts, options, mLocationCapabilitiesMask); 117 if (locAPIUpdateSessionOptions(mDefaultId, mode, options) == LOCATION_ERROR_SUCCESS) { 168 static void convertBatchOption(const IGnssBatching::Options& in, LocationOptions& out [all...] |
/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/Contacts/src/com/android/contacts/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...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/LTO/legacy/ |
ThinLTOCodeGenerator.h | 52 /// Helper to gather options relevant to the target machine creation 57 TargetOptions Options; 119 * \defgroup Options setters 124 * \defgroup Cache controlling options 203 /// TargetMachine options 204 void setTargetOptions(TargetOptions Options) { 205 TMBuilder.Options = std::move(Options);
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/LTO/legacy/ |
ThinLTOCodeGenerator.h | 52 /// Helper to gather options relevant to the target machine creation 57 TargetOptions Options; 119 * \defgroup Options setters 124 * \defgroup Cache controlling options 203 /// TargetMachine options 204 void setTargetOptions(TargetOptions Options) { 205 TMBuilder.Options = std::move(Options);
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/LTO/legacy/ |
ThinLTOCodeGenerator.h | 52 /// Helper to gather options relevant to the target machine creation 57 TargetOptions Options; 119 * \defgroup Options setters 124 * \defgroup Cache controlling options 203 /// TargetMachine options 204 void setTargetOptions(TargetOptions Options) { 205 TMBuilder.Options = std::move(Options);
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/legacy/ |
ThinLTOCodeGenerator.h | 52 /// Helper to gather options relevant to the target machine creation 57 TargetOptions Options; 119 * \defgroup Options setters 124 * \defgroup Cache controlling options 203 /// TargetMachine options 204 void setTargetOptions(TargetOptions Options) { 205 TMBuilder.Options = std::move(Options);
|