Searched refs:Mode (Results 1 - 25 of 331) sorted by relevance

1234567891011>>

/external/skia/include/effects/
H A DSkPorterDuff.h18 /** DEPRECATED - use SkXfermode::Mode instead
30 enum Mode { enum in class:SkPorterDuff
57 static SkXfermode* CreateXfermode(Mode mode);
62 static SkXfermodeProc GetXfermodeProc(Mode mode);
69 static SkXfermodeProc16 GetXfermodeProc16(Mode mode, SkColor srcColor);
76 static bool IsMode(SkXfermode*, Mode* mode);
78 /** Return the corersponding SkXfermode::Mode
80 static SkXfermode::Mode ToXfermodeMode(Mode);
/external/llvm/lib/Target/
H A DTargetSubtargetInfo.cpp27 AntiDepBreakMode& Mode,
29 Mode = ANTIDEP_NONE;
25 enablePostRAScheduler( CodeGenOpt::Level OptLevel, AntiDepBreakMode& Mode, RegClassVector& CriticalPathRCs) const argument
/external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
H A DVirtualIndexBuffer.java3 import com.jme3.scene.Mesh.Mode;
8 * based on a specific Mesh {@link Mode}.
15 * <li>{@link Mode#Triangles}: 0, 1, 2 | 3, 4, 5 | 6, 7, 8 | ...</li>
16 * <li>{@link Mode#TriangleStrip}: 0, 1, 2 | 2, 1, 3 | 2, 3, 4 | ...</li>
17 * <li>{@link Mode#TriangleFan}: 0, 1, 2 | 0, 2, 3 | 0, 3, 4 | ...</li>
26 protected Mode meshMode;
28 public VirtualIndexBuffer(int numVerts, Mode meshMode){
60 if (meshMode == Mode.Triangles || meshMode == Mode.Lines || meshMode == Mode
[all...]
/external/clang/utils/analyzer/
H A DSumTimerInfo.py34 Mode = 1 variable
37 Mode = 1 variable
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
47 if (("The # of functions analysed (as top level)" in line) and (Mode == 1)) :
50 if (("The % of reachable basic blocks" in line) and (Mode == 1)) :
53 if (("The # of times we reached the max number of steps" in line) and (Mode == 1)) :
56 if (("The maximum number of basic blocks in a function" in line) and (Mode == 1)) :
60 if (("The # of steps executed" in line) and (Mode == 1)) :
63 if (("The # of times we inlined a call" in line) and (Mode
[all...]
/external/skia/src/effects/
H A DSkPorterDuff.cpp19 // this table must be in SkPorterDuff::Mode order, so it can be indexed directly
22 SkPorterDuff::Mode fPD;
23 SkXfermode::Mode fXF;
47 static bool find_pdmode(SkXfermode::Mode src, SkPorterDuff::Mode* dst) {
60 SkXfermode::Mode SkPorterDuff::ToXfermodeMode(Mode mode) {
67 SkXfermode* SkPorterDuff::CreateXfermode(SkPorterDuff::Mode mode) {
73 bool SkPorterDuff::IsMode(SkXfermode* xfer, Mode* pdmode) {
74 SkXfermode::Mode xfmod
[all...]
/external/eigen/bench/
H A Dbasicbenchmark.h7 template<int Mode, typename MatrixType>
10 template<int Mode, typename MatrixType>
15 if (Mode==LazyEval)
21 else if (Mode==OmpEval)
37 template<int Mode, typename MatrixType>
40 template<int Mode, typename MatrixType>
56 benchBasic_loop<Mode>(I, m, iterations);
H A Dproduct_threshold.cpp38 template<int Mode, typename Lhs, typename Rhs, typename Res>
41 c.noalias() += typename ProductReturnType<Lhs,Rhs,Mode>::Type(a,b);
44 template<int M, int N, int K, typename Scalar, int Mode>
63 BENCH(t,5,rep,prod<Mode>(a,b,c));
65 print_mode(Mode);
71 template<int M, int N, int K, typename Scalar, int Mode> struct loop_on_n;
113 template<int M, int N, int K, typename Scalar, int Mode>
118 bench_prod<M,N,K,Scalar,Mode==-1? alt_prod<M,N,K>::ret : Mode>();
120 loop_on_n<M,N+1,K,Scalar,Mode>
[all...]
/external/eigen/demos/opengl/
H A Dtrackball.h21 enum Mode {Around, Local}; enum in class:Trackball
25 void start(Mode m = Around) { mMode = m; mLastPointOk = false; }
37 Mode mMode;
/external/llvm/include/llvm-c/
H A DLinker.h36 LLVMLinkerMode Mode, char **OutMessage);
/external/eigen/Eigen/src/Core/
H A DSolveTriangular.h19 template<typename LhsScalar, typename RhsScalar, typename Index, int Side, int Mode, bool Conjugate, int StorageOrder>
22 template <typename Scalar, typename Index, int Side, int Mode, bool Conjugate, int TriStorageOrder, int OtherStorageOrder>
43 int Mode, // can be Upper/Lower | UnitDiag
49 template<typename Lhs, typename Rhs, int Side, int Mode>
50 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,1>
71 triangular_solve_vector<LhsScalar, RhsScalar, typename Lhs::Index, Side, Mode, LhsProductTraits::NeedToConjugate,
81 template<typename Lhs, typename Rhs, int Side, int Mode>
82 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,Dynamic>
101 triangular_solve_matrix<Scalar,Index,Side,Mode,LhsProductTraits::NeedToConjugate,(int(Lhs::Flags) & RowMajorBit) ? RowMajor : ColMajor,
111 template<typename Lhs, typename Rhs, int Mode, in
[all...]
H A DTriangularMatrix.h34 Mode = internal::traits<Derived>::Mode, enumerator in enum:Eigen::TriangularBase::__anon5390
47 inline TriangularBase() { eigen_assert(!((Mode&UnitDiag) && (Mode&ZeroDiag))); }
100 const int mode = int(Mode) & ~SelfAdjoint;
125 * \param Mode the kind of triangular matrix expression to construct. Can be #Upper,
146 Mode = _Mode, enumerator in enum:Eigen::internal::traits::__anon5391
147 Flags = (MatrixTypeNestedCleaned::Flags & (HereditaryBits) & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit))) | Mode,
153 template<int Mode, bool LhsIsTriangular,
185 Mode enumerator in enum:Eigen::TriangularView::__anon5392
[all...]
/external/skia/tests/
H A DXfermodeTest.cpp16 #define ILLEGAL_MODE ((SkXfermode::Mode)-1)
20 SkXfermode* xfer = SkXfermode::Create((SkXfermode::Mode) mode);
22 SkXfermode::Mode reportedMode = ILLEGAL_MODE;
31 reportedMode = (SkXfermode::Mode) -1;
41 SkXfermode::Mode reportedMode = (SkXfermode::Mode) -1;
54 SkXfermode::Mode mode = (SkXfermode::Mode)i;
H A DColorFilterTest.cpp38 #define ILLEGAL_MODE ((SkXfermode::Mode)-1)
51 (SkXfermode::Mode)mode);
62 SkXfermode::Mode m = ILLEGAL_MODE;
65 SkXfermode::Mode expectedMode = (SkXfermode::Mode)mode;
91 SkXfermode::Mode m2 = ILLEGAL_MODE;
/external/eigen/Eigen/src/Geometry/
H A DTransform.h26 Mode = Transform::Mode, enumerator in enum:Eigen::internal::transform_traits::__anon5583
27 IsProjective = (int(Mode)==int(Projective))
39 int Mode,
55 int Mode,
181 Mode = _Mode, enumerator in enum:Eigen::Transform::__anon5584
185 Rows = int(Mode)==(AffineCompact) ? Dim : HDim
197 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact)> LinearPart;
199 typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)==(AffineCompact)> ConstLinearPart;
201 typedef typename internal::conditional<int(Mode)
1224 Mode = enumerator in enum:Eigen::internal::transform_product_result::__anon5587
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseTriangularView.h17 template<typename MatrixType, int Mode>
18 struct traits<SparseTriangularView<MatrixType,Mode> >
24 template<typename MatrixType, int Mode> class SparseTriangularView
25 : public SparseMatrixBase<SparseTriangularView<MatrixType,Mode> >
27 enum { SkipFirst = ((Mode&Lower) && !(MatrixType::Flags&RowMajorBit))
28 || ((Mode&Upper) && (MatrixType::Flags&RowMajorBit)),
30 HasUnitDiag = (Mode&UnitDiag) ? 1 : 0
63 template<typename MatrixType, int Mode>
64 class SparseTriangularView<MatrixType,Mode>::InnerIterator : public MatrixTypeNestedCleaned::InnerIterator
127 template<typename MatrixType, int Mode>
[all...]
H A DTriangularSolver.h17 template<typename Lhs, typename Rhs, int Mode,
18 int UpLo = (Mode & Lower)
20 : (Mode & Upper)
27 template<typename Lhs, typename Rhs, int Mode>
28 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Lower,RowMajor>
48 if (Mode & UnitDiag)
61 template<typename Lhs, typename Rhs, int Mode>
62 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Upper,RowMajor>
76 if(!(Mode & UnitDiag))
89 if (Mode
[all...]
/external/eigen/test/
H A Dproduct_trmm.cpp12 template<typename Scalar, int Mode, int TriOrder, int OtherOrder, int ResOrder, int OtherCols>
37 tri = mat.template triangularView<Mode>();
38 triTr = mat.transpose().template triangularView<Mode>();
42 VERIFY_IS_APPROX( ge_xs = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
43 VERIFY_IS_APPROX( ge_sx = ge_left * mat.template triangularView<Mode>(), ge_left * tri);
45 VERIFY_IS_APPROX( ge_xs.noalias() = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
46 VERIFY_IS_APPROX( ge_sx.noalias() = ge_left * mat.template triangularView<Mode>(), ge_left * tri);
48 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.transpose()), s1*triTr.conjugate() * (s2*ge_left.transpose()));
49 VERIFY_IS_APPROX( ge_sx.noalias() = ge_right.transpose() * mat.adjoint().template triangularView<Mode>(), ge_right.transpose() * triTr.conjugate());
51 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s
[all...]
/external/eigen/Eigen/src/Core/products/
H A DTriangularMatrixVector_MKL.h46 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder>
48 triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,StorageOrder,BuiltIn> {};
51 template<typename Index, int Mode, bool ConjLhs, bool ConjRhs> \
52 struct triangular_matrix_vector_product<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,ColMajor,Specialized> { \
55 triangular_matrix_vector_product_trmv<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,ColMajor>::run( \
59 template<typename Index, int Mode, bool ConjLhs, bool ConjRhs> \
60 struct triangular_matrix_vector_product<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,RowMajor,Specialized> { \
63 triangular_matrix_vector_product_trmv<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,RowMajor>::run( \
75 template<typename Index, int Mode, bool ConjLhs, bool ConjRhs> \
76 struct triangular_matrix_vector_product_trmv<Index,Mode,EIGTYP
[all...]
H A DTriangularSolverMatrix_MKL.h42 template <typename Index, int Mode, bool Conjugate, int TriStorageOrder> \
43 struct triangular_solve_matrix<EIGTYPE,Index,OnTheLeft,Mode,Conjugate,TriStorageOrder,ColMajor> \
46 IsLower = (Mode&Lower) == Lower, \
47 IsUnitDiag = (Mode&UnitDiag) ? 1 : 0, \
48 IsZeroDiag = (Mode&ZeroDiag) ? 1 : 0, \
97 template <typename Index, int Mode, bool Conjugate, int TriStorageOrder> \
98 struct triangular_solve_matrix<EIGTYPE,Index,OnTheRight,Mode,Conjugate,TriStorageOrder,ColMajor> \
101 IsLower = (Mode&Lower) == Lower, \
102 IsUnitDiag = (Mode&UnitDiag) ? 1 : 0, \
103 IsZeroDiag = (Mode
[all...]
H A DTriangularMatrixVector.h17 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder, int Version=Specialized>
20 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version>
21 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version>
25 IsLower = ((Mode&Lower)==Lower),
26 HasUnitDiag = (Mode & UnitDiag)==UnitDiag,
27 HasZeroDiag = (Mode & ZeroDiag)==ZeroDiag
83 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs,int Version>
84 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor,Version>
88 IsLower = ((Mode&Lower)==Lower),
89 HasUnitDiag = (Mode
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Dreload_button_gtk.h26 enum Mode { MODE_RELOAD = 0, MODE_STOP }; enum in class:ReloadButtonGtk
35 void ChangeMode(Mode mode, bool force);
72 Mode intended_mode_;
75 Mode visible_mode_;
/external/chromium/chrome/browser/ui/views/
H A Dreload_button.h31 enum Mode { MODE_RELOAD = 0, MODE_STOP }; enum in class:ReloadButton
38 void ChangeMode(Mode mode, bool force);
63 Mode intended_mode_;
66 Mode visible_mode_;
/external/skia/include/utils/
H A DSkTextBox.h30 enum Mode { enum in class:SkTextBox
36 Mode getMode() const { return (Mode)fMode; }
37 void setMode(Mode);
/external/eigen/blas/
H A DBandTriangularSolver.h18 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, int StorageOrder>
22 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar>
23 struct band_solve_triangular_selector<Index,Mode,LhsScalar,ConjLhs,RhsScalar,RowMajor>
27 enum { IsLower = (Mode&Lower) ? 1 : 0 };
50 if((Mode&UnitDiag)==0)
58 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar>
59 struct band_solve_triangular_selector<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ColMajor>
63 enum { IsLower = (Mode&Lower) ? 1 : 0 };
82 if((Mode&UnitDiag)==0)
/external/skia/include/core/
H A DSkXfermode.h85 enum Mode { enum in class:SkXfermode
122 * If the xfermode is one of the modes in the Mode enum, then asMode()
126 virtual bool asMode(Mode* mode);
132 static bool AsMode(SkXfermode*, Mode* mode);
135 * Returns true if the xfermode claims to be the specified Mode. This works
144 static bool IsMode(SkXfermode* xfer, Mode mode);
148 static SkXfermode* Create(Mode mode);
153 static SkXfermodeProc GetProc(Mode mode);
160 static SkXfermodeProc16 GetProc16(Mode mode, SkColor srcColor);
168 static bool ModeAsCoeff(Mode mod
[all...]

Completed in 415 milliseconds

1234567891011>>