HomeSort by relevance Sort by last modified time
    Searched refs:Dynamic (Results 276 - 300 of 322) sorted by null

<<111213

  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 456 typedef Matrix<ComplexScalar, Dynamic, Dynamic, Options, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType;
  /external/clang/tools/libclang/
IndexDecl.cpp 235 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
  /external/eigen/Eigen/src/Core/
Transpose.h 249 bool IsSquare = (MatrixType::RowsAtCompileTime == MatrixType::ColsAtCompileTime) && MatrixType::RowsAtCompileTime!=Dynamic>
ProductBase.h 131 const Diagonal<FullyLazyCoeffBaseProductType,Dynamic> diagonal(Index index) const
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 94 ComplexSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
RealSchur.h 83 RealSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
  /external/eigen/unsupported/test/
FFTW.cpp 77 typedef Matrix<Scalar,Dynamic,1> type;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Geometry.java 328 setCullHint(CullHint.Dynamic);
Mesh.java 547 * Sets the usage mode to {@link Usage#Dynamic}
552 vb.setUsage(Usage.Dynamic);
906 vb.setupData(Usage.Dynamic, components, format, buf);
    [all...]
Spatial.java 77 * Do whatever our parent does. If no parent, default to {@link #Dynamic}.
85 Dynamic,
1026 return CullHint.Dynamic;
    [all...]
BatchNode.java 448 vb.setupData(VertexBuffer.Usage.Dynamic, compsForBuf[i], formatForBuf[i], data);
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 88 * This wrapper class mainly aims to avoids the need of dynamic allocation of the storage structure.
298 typedef Matrix<Scalar,Dynamic,1> Vector;
451 mutable Matrix<RealScalar,Dynamic,1> m_sluRscale, m_sluCscale;
452 mutable Matrix<RealScalar,Dynamic,1> m_sluFerr, m_sluBerr;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.m 148 #pragma mark Dynamic Global Scopes
170 #pragma mark Dynamic Rule Scopes
    [all...]
  /external/ceres-solver/internal/ceres/
dogleg_strategy.cc 693 Eigen::Matrix<double, 2, Eigen::Dynamic, Eigen::RowMajor>
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixVector.h 187 typedef Map<Matrix<ResScalar,Dynamic,1>, Aligned> MappedDest;
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 131 typedef Matrix<Scalar,Dynamic,1> Vector;
  /external/eigen/test/
array_for_matrix.cpp 127 typedef Matrix<typename MatrixType::Index, Dynamic, 1> VectorOfIndices;
cholesky.cpp 150 if(MatrixType::RowsAtCompileTime==Dynamic)
array.cpp 143 typedef Array<typename ArrayType::Index, Dynamic, 1> ArrayOfIndices;
main.h 317 typedef Matrix<Scalar, Dynamic, 1> VectorType;
  /external/chromium_org/v8/tools/
codemap.js 36 * Dynamic code entries. Used for JIT compiled code.
76 * Adds a dynamic (i.e. moveable and discardable) code entry.
88 * Moves a dynamic code entry. Throws an exception if there is no dynamic
102 * Discards a dynamic code entry. Throws an exception if there is no dynamic
184 * dynamic code entries are considered.
213 * Returns a dynamic code entry using its starting address.
225 * Returns an array of all dynamic code entries.
233 * Returns an array of pairs of all dynamic code entries and their addresses
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 46 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_Dim==Dynamic ? Dynamic : (_Dim+1)*(_Dim+1))
  /external/v8/tools/
codemap.js 36 * Dynamic code entries. Used for JIT compiled code.
76 * Adds a dynamic (i.e. moveable and discardable) code entry.
88 * Moves a dynamic code entry. Throws an exception if there is no dynamic
102 * Discards a dynamic code entry. Throws an exception if there is no dynamic
184 * dynamic code entries are considered.
213 * Returns a dynamic code entry using its starting address.
225 * Returns an array of all dynamic code entries.
233 * Returns an array of pairs of all dynamic code entries and their addresses
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]
  /external/eigen/unsupported/Eigen/src/Splines/
Spline.h 30 * \tparam _Degree Per default set to Dynamic; could be set to the actual desired
248 if (_Degree == Dynamic)

Completed in 1046 milliseconds

<<111213