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

<<11121314151617181920>>

  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 76 static const int Options = MatrixType::Options;
81 typedef Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols> ComplexMatrix;
132 static const int Options = MatrixType::Options;
139 typedef Matrix<Scalar, Dynamic, Dynamic, Options, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType;
517 static const int Options = PlainObject::Options;
519 typedef Matrix<ComplexScalar, Dynamic, Dynamic, Options, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType;
MatrixPower.h 324 typedef Matrix<ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, MatrixType::Options,
340 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
342 Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
346 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
348 Matrix<RealScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
426 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
428 Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
434 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
436 Matrix<RealScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 255 Uri uri, BitmapFactory.Options options,
260 if (options.inSampleSize != 0) {
278 options.inBitmap = reuse;
279 Bitmap bitmap = decoder.decodeRegion(imageBounds, options);
302 BitmapFactory.Options o = new BitmapFactory.Options();
312 BitmapFactory.Options options = new BitmapFactory.Options(); local
419 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /external/ceres-solver/internal/ceres/
solver.cc 51 if (!(options.x OP y)) { \
54 ss << string("Solver::Options::" #x " = ") << options.x << ". "; \
56 ss << string("Solver::Options::" #x " " #OP " "#y); \
62 if (!(options.x OP options.y)) { \
65 ss << string("Solver::Options::" #x " = ") << options.x << ". "; \
66 ss << string("Solver::Options::" #y " = ") << options.y << ". ";
    [all...]
implicit_schur_complement_test.cc 85 LinearSolver::Options options; local
86 options.elimination_groups.push_back(num_eliminate_blocks_);
87 options.type = DENSE_SCHUR;
90 SchurEliminatorBase::Create(options));
123 LinearSolver::Options options; local
124 options.elimination_groups.push_back(num_eliminate_blocks_);
125 options.preconditioner_type = JACOBI;
126 ImplicitSchurComplement isc(options);
    [all...]
problem_impl.h 70 explicit ProblemImpl(const Problem::Options& options);
137 bool Evaluate(const Problem::EvaluateOptions& options,
193 const Problem::Options options_;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 55 private static final Options basicOptions;
56 private static final Options debugOptions;
57 private static final Options options; field in class:main
60 options = new Options();
61 basicOptions = new Options();
62 debugOptions = new Options();
90 * @param options a baksmaliOptions object with the options to run baksmali wit
143 baksmaliOptions options = new baksmaliOptions(); local
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
main.java 52 * Main class for smali. It recognizes enough options to be able to dispatch
59 private final static Options basicOptions;
60 private final static Options debugOptions;
61 private final static Options options; field in class:main
64 basicOptions = new Options();
65 debugOptions = new Options();
66 options = new Options();
95 * @param options a SmaliOptions object with the options to run smali wit
202 Option[] options = commandLine.getOptions(); local
    [all...]
  /frameworks/support/v4/kitkat/android/support/v4/print/
PrintHelperKitkat.java 57 BitmapFactory.Options mDecodeOptions = null;
583 BitmapFactory.Options opt = new BitmapFactory.Options();
608 BitmapFactory.Options decodeOptions = null;
610 mDecodeOptions = new BitmapFactory.Options();
625 * Returns the bitmap from the given uri loaded using the given options.
628 private Bitmap loadBitmap(Uri uri, BitmapFactory.Options o) throws FileNotFoundException {
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapCropTask.java 153 BitmapFactory.Options options = new BitmapFactory.Options(); local
154 options.inJustDecodeBounds = true;
155 BitmapFactory.decodeStream(is, null, options);
157 if (options.outWidth != 0 && options.outHeight != 0) {
158 return new Point(options.outWidth, options.outHeight);
273 BitmapFactory.Options options = new BitmapFactory.Options() local
286 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /cts/tests/openglperf2/src/android/opengl2/cts/reference/
GLGameActivity.java 153 BitmapFactory.Options op = new BitmapFactory.Options();
  /developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/
MainActivity.java 185 final BitmapFactory.Options options = new BitmapFactory.Options(); local
186 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
187 return BitmapFactory.decodeResource(getResources(), resource, options);
  /developers/samples/android/renderScript/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/
MainActivity.java 185 final BitmapFactory.Options options = new BitmapFactory.Options(); local
186 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
187 return BitmapFactory.decodeResource(getResources(), resource, options);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapDecode.java 71 BitmapFactory.Options opts = new BitmapFactory.Options();
  /development/samples/browseable/BasicRenderScript/src/com.example.android.basicrenderscript/
MainActivity.java 185 final BitmapFactory.Options options = new BitmapFactory.Options(); local
186 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
187 return BitmapFactory.decodeResource(getResources(), resource, options);
  /external/chromium-trace/catapult/telemetry/telemetry/story/
story_filter_unittest.py 29 class Options(object):
38 parser, Options(**kwargs))
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 138 MatchFinder(MatchFinderOptions Options = MatchFinderOptions());
218 MatchFinderOptions Options;
  /external/compiler-rt/make/
options.mk 0 # Options which may be overriden for platforms, etc.
  /external/eigen/Eigen/src/Geometry/
Scaling.h 62 template<int Dim, int Mode, int Options>
63 inline Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> operator* (const Transform<Scalar,Dim, Mode, Options>& t) const
  /external/eigen/Eigen/src/misc/
SparseSolve.h 24 typedef SparseMatrix<typename Rhs::Scalar, Rhs::Options, typename Rhs::Index> ReturnType;
95 Rhs::PlainObject::Options,
  /external/eigen/unsupported/test/
sparse_extra.cpp 17 template<typename SetterType,typename DenseType, typename Scalar, int Options>
18 bool test_random_setter(SparseMatrix<Scalar,Options>& sm, const DenseType& ref, const std::vector<Vector2i>& nonzeroCoords)
  /external/fec/
vtest27.c 17 struct option Options[] = {
58 while((d = getopt_long(argc,argv,"l:n:te:g:vapmst",Options,NULL)) != EOF){
vtest29.c 17 struct option Options[] = {
58 while((d = getopt_long(argc,argv,"l:n:te:g:vapmst",Options,NULL)) != EOF){
vtest39.c 17 struct option Options[] = {
58 while((d = getopt_long(argc,argv,"l:n:te:g:vapmst",Options,NULL)) != EOF){
  /external/jemalloc/bin/
jemalloc-config.in 7 Options:
11 --config : Print configure options used to build jemalloc.

Completed in 1047 milliseconds

<<11121314151617181920>>