HomeSort by relevance Sort by last modified time
    Searched refs:Options (Results 451 - 475 of 1116) sorted by null

<<11121314151617181920>>

  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
scan-build 99 my @options = qx($0 -h);
100 foreach (@options) {
110 # Declaration of Clang options. Populated later.
879 my $Options = shift @_;
883 $ENV{$opt} = $Options->{$opt};
889 my $x = $Options->{$opt};
892 my $Verbose = $Options->{'VERBOSE'};
909 my $Options = shift;
943 my $OutputDir = $Options->{"OUTPUT_DIR"};
944 my $CLANG = $Options->{"CLANG"}
    [all...]
  /system/bt/vendor_libs/test_vendor_lib/src/
vendor_manager.cc 88 base::Thread::Options(base::MessageLoop::TYPE_IO, 0))) {
  /system/connectivity/shill/
ppp_daemon.cc 45 const PPPDaemon::Options& options,
50 if (options.debug) {
53 if (options.no_detach) {
56 if (options.no_default_route) {
59 if (options.use_peer_dns) {
62 if (options.use_shim_plugin) {
66 if (options.use_pppoe_plugin) {
70 if (options.lcp_echo_interval != kUnspecifiedValue) {
72 arguments.push_back(base::UintToString(options.lcp_echo_interval))
    [all...]
  /system/tpm/tpm_manager/client/
tpm_nvram_dbus_proxy.cc 41 dbus::Bus::Options options; local
42 options.bus_type = dbus::Bus::SYSTEM;
43 bus_ = new dbus::Bus(options);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodPresentMediaDialog.java 91 private int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight){
93 final int height = options.outHeight;
94 final int width = options.outWidth;
147 BitmapFactory.Options options = new BitmapFactory.Options(); local
148 options.inJustDecodeBounds = true;
149 BitmapFactory.decodeStream(input, null, options);
156 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight)
    [all...]
  /developers/build/lib/
assetstudio.jar 
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageLoader.java 362 final BitmapFactory.Options options = new BitmapFactory.Options(); local
363 options.inJustDecodeBounds = true;
364 BitmapFactory.decodeFileDescriptor(fileDescriptor, null, options);
367 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
370 options.inJustDecodeBounds = false;
371 return BitmapFactory.decodeFileDescriptor(fileDescriptor, null, options);
375 * Calculate an inSampleSize for use in a {@link BitmapFactory.Options} object when decodin
    [all...]
  /external/eigen/Eigen/src/Core/
Matrix.h 119 Options = _Options,
121 OuterStrideAtCompileTime = (Options&RowMajor) ? ColsAtCompileTime : RowsAtCompileTime
137 enum { Options = _Options };
  /external/libchrome/sandbox/linux/services/
namespace_sandbox_unittest.cc 45 TestProcWithOptions(procname, NamespaceSandbox::Options());
50 const NamespaceSandbox::Options& ns_sandbox_options) {
108 NamespaceSandbox::Options options; local
109 options.ns_types = CLONE_NEWUSER | CLONE_NEWPID;
110 TestProcWithOptions("PidNsOnlyChildProcess", options);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DrawableTest.java 140 assertNull(ShadowDrawable.createFromResourceStream(null, null, new ByteArrayInputStream(new byte[0]), corruptedStreamSource, new BitmapFactory.Options()));
145 Drawable drawable = ShadowDrawable.createFromResourceStream(null, null, new ByteArrayInputStream(new byte[0]), "my_source", new BitmapFactory.Options());
153 Drawable drawable = Drawable.createFromResourceStream(null, null, byteInputStream, "src name", new BitmapFactory.Options());
  /external/skia/src/codec/
SkWbmpCodec.cpp 99 const Options& opts) {
121 const Options& options,
125 if (options.fSubset) {
139 SkAutoTDelete<SkSwizzler> swizzler(this->initializeSwizzler(info, ctable, options));
192 const Options& options, SkPMColor inputColorTable[], int* inputColorCount) {
193 if (options.fSubset) {
212 fSwizzler.reset(this->initializeSwizzler(dstInfo, get_color_ptr(fColorTable.get()), options));
  /external/v8/test/unittests/base/platform/
condition-variable-unittest.cc 35 : Thread(Options("ThreadWithMutexAndConditionVariable")),
113 : Thread(Options("ThreadWithSharedMutexAndConditionVariable")),
223 : Thread(Options("LoopIncrementThread")),
  /external/webrtc/talk/app/webrtc/
peerconnectioninterface.h 378 const RTCOfferAnswerOptions& options) {}
503 class Options {
505 Options()
526 virtual void SetOptions(const Options& options) = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriImage.java 22 import android.graphics.BitmapFactory.Options;
194 Options options = new Options(); local
195 options.inPreferredConfig = Config.ARGB_8888;
197 mFileDescriptor.getFileDescriptor(), options, targetSize, mType);
  /packages/apps/TV/src/com/android/tv/util/
BitmapUtils.java 93 BitmapFactory.Options options = new BitmapFactory.Options(); local
94 options.inJustDecodeBounds = true;
95 BitmapFactory.decodeStream(inputStream, null, options);
111 options.inJustDecodeBounds = false;
112 options.inPreferredConfig = Bitmap.Config.RGB_565;
113 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
114 Bitmap bitmap = BitmapFactory.decodeStream(inputStream, null, options);
    [all...]
  /external/ceres-solver/internal/ceres/
system_test.cc 122 // Solver::Options* mutable_solver_options();
136 Solver::Options& options = *(system_test_problem->mutable_solver_options()); local
137 options.linear_solver_type = config.linear_solver_type;
138 options.sparse_linear_algebra_library_type =
140 options.preconditioner_type = config.preconditioner_type;
141 options.num_threads = config.num_threads;
142 options.num_linear_solver_threads = config.num_threads;
145 options.linear_solver_ordering.reset();
152 Solve(options,
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 120 string Compress(const string& data, const GzipOutputStream::Options& options);
351 GzipOutputStream::Options options; local
352 options.format = GzipOutputStream::GZIP;
354 options.buffer_size = gzip_buffer_size;
356 GzipOutputStream gzout(&output, options);
386 GzipOutputStream::Options options; local
387 options.format = GzipOutputStream::GZIP
418 GzipOutputStream::Options options; local
446 GzipOutputStream::Options options; local
477 GzipOutputStream::Options options; local
505 GzipOutputStream::Options options; local
519 GzipOutputStream::Options options; local
568 GzipOutputStream::Options options; local
    [all...]
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 132 void LTOCodeGenerator::setTargetOptions(TargetOptions Options) {
133 this->Options = Options;
314 Options, RelocModel,
512 splitCodeGen(std::move(MergedModule), Out, MCpu, FeatureStr, Options,
518 /// setCodeGenDebugOptions - Set codegen debugging options to aid in debugging
520 void LTOCodeGenerator::setCodeGenDebugOptions(const char *Options) {
521 for (std::pair<StringRef, StringRef> o = getToken(Options); !o.first.empty();
527 // if options were requested, set them
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dbgeng.h 211 STDMETHOD(SetKernelConnectionOptions)(THIS_ PCSTR Options) PURE;
212 STDMETHOD(StartProcessServer)(THIS_ ULONG Flags,PCSTR Options,PVOID Reserved) PURE;
221 STDMETHOD(GetProcessOptions)(THIS_ PULONG Options) PURE;
222 STDMETHOD(AddProcessOptions)(THIS_ ULONG Options) PURE;
223 STDMETHOD(RemoveProcessOptions)(THIS_ ULONG Options) PURE;
224 STDMETHOD(SetProcessOptions)(THIS_ ULONG Options) PURE;
228 STDMETHOD(StartServer)(THIS_ PCSTR Options) PURE;
282 STDMETHOD(SetKernelConnectionOptions)(THIS_ PCSTR Options) PURE;
283 STDMETHOD(StartProcessServer)(THIS_ ULONG Flags,PCSTR Options,PVOID Reserved) PURE;
292 STDMETHOD(GetProcessOptions)(THIS_ PULONG Options) PURE
    [all...]
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 117 Options = MatrixType::Options
119 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
208 Options = MatrixType::Options
211 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
307 Options = MatrixType::Options
310 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
515 MatrixOptions = MatrixType::Options
    [all...]
  /external/eigen/unsupported/Eigen/src/SVD/
JacobiSVD.h 117 Options = MatrixType::Options
119 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
208 Options = MatrixType::Options
211 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
307 Options = MatrixType::Options
310 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
508 MatrixOptions = MatrixType::Options
    [all...]
  /external/llvm/include/llvm/Support/
TargetRegistry.h 107 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
119 const MCTargetOptions &Options);
362 const TargetOptions &Options,
368 return TargetMachineCtorFn(*this, Triple(TT), CPU, Features, Options, RM,
389 const MCTargetOptions &Options) const {
392 return MCAsmParserCtorFn(STI, Parser, MII, Options);
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 355 BitmapFactory.Options options = new BitmapFactory.Options(); local
357 fd.getFileDescriptor(), null, options);
374 BitmapFactory.Options options = new BitmapFactory.Options(); local
375 return BitmapFactory.decodeStream(is, null, options);
526 BitmapFactory.Options options = new BitmapFactory.Options() local
579 BitmapFactory.Options options = new BitmapFactory.Options(); local
592 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 24 template<typename _MatrixType, int Options> class PastixLLT;
25 template<typename _MatrixType, int Options> class PastixLDLT;
41 template<typename _MatrixType, int Options>
42 struct pastix_traits< PastixLLT<_MatrixType,Options> >
50 template<typename _MatrixType, int Options>
51 struct pastix_traits< PastixLDLT<_MatrixType,Options> >
  /external/pcre/dist/
pcregexp.pas 48 17-02-06 - added RunTimeOptions: caller can set options while searching
76 RunTimeOptions: Integer; // options which can be set by the caller
105 Const { Options }
337 function pcre_compile( const pattern : PChar; options : integer;
341 function pcre_compile2( const pattern : PChar; options : integer;
366 length, start_offset, options : integer;
373 length, start_offset, options : integer;
414 options : integer;
515 var Options: Integer;
517 Options := (RunTimeOptions or startup.MiscMultiData.cfgRegEx.DefaultOptions) and
    [all...]

Completed in 435 milliseconds

<<11121314151617181920>>