HomeSort by relevance Sort by last modified time
    Searched refs:Dimension (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/eigen/unsupported/Eigen/src/Splines/
SplineFwd.h 29 enum { Dimension = _Dim /*!< The spline curve's dimension. */ };
42 typedef Array<Scalar,Dimension,Dynamic,ColMajor,Dimension,NumOfDerivativesAtCompileTime> DerivativeType;
45 typedef Array<Scalar,Dimension,1> PointType;
51 typedef Array<Scalar,Dimension,Dynamic> ControlPointVectorType;
Spline.h 29 * \tparam _Dim The curve dimension (e.g. 2 or 3)
39 enum { Dimension = _Dim /*!< The spline curve's dimension. */ };
82 Spline(const Spline<Scalar, Dimension, OtherDegree>& spline) :
284 const Replicate<BasisVectorType,Dimension,1> ctrl_weights(basis_funcs);
285 const Block<const ControlPointVectorType,Dimension,Order> ctrl_pts(ctrls(),0,span-p,Dimension,p+1);
294 enum { Dimension = SplineTraits<SplineType>::Dimension };
307 der.resize(Dimension,n+1)
    [all...]
  /frameworks/support/annotations/src/android/support/annotation/
Px.java 30 * to represent a pixel dimension.
35 @Dimension(unit = Dimension.PX)
Dimension.java 33 * to represent a dimension.
38 public @interface Dimension {
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DemoApplet.java 12 import java.awt.Dimension;
24 protected Dimension getDefaultFrameSize(DemoApplet applet, Frame f) {
25 return new Dimension(700, 550);
56 Dimension d = getDefaultFrameSize(this, demoFrame);
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeDimension.h 1 //===- PDBSymbolTypeDimension.h - array dimension type info -----*- C++ -*-===//
25 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Dimension)
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 112 if (decl->Declaration.Dimension) {
216 assert( !inst->Dst[i].Indirect.Dimension );
219 if( inst->Dst[i].Register.Dimension ) {
220 next_token( ctx, &inst->Dst[i].Dimension );
225 assert( !inst->Dst[i].Dimension.Dimension );
227 if( inst->Dst[i].Dimension.Indirect ) {
234 assert( !inst->Dst[i].Indirect.Dimension );
252 assert( !inst->Src[i].Indirect.Dimension );
255 if( inst->Src[i].Register.Dimension ) {
    [all...]
tgsi_build.c 108 declaration.Dimension = 0;
122 unsigned dimension,
137 declaration.Dimension = dimension;
366 full_decl->Declaration.Dimension,
383 if (full_decl->Declaration.Dimension) {
791 src_register.Dimension = 0;
807 unsigned dimension,
830 src_register.Dimension = dimension;
841 struct tgsi_dimension dimension; local
871 struct tgsi_dimension dimension; local
    [all...]
tgsi_parse.h 48 struct tgsi_dimension Dimension;
56 struct tgsi_dimension Dimension;
tgsi_dump.c 102 if (src->Register.Dimension) {
103 if (src->Dimension.Indirect) {
110 if (src->Dimension.Index != 0) {
111 if (src->Dimension.Index > 0)
113 SID( src->Dimension.Index );
118 SID(src->Dimension.Index);
149 if (dst->Register.Dimension) {
150 if (dst->Dimension.Indirect) {
157 if (dst->Dimension.Index != 0) {
158 if (dst->Dimension.Index > 0
    [all...]
  /cts/tests/tests/mediastress/preconditions/src/android/mediastress/cts/preconditions/
MediaPreparer.java 31 import java.awt.Dimension;
91 protected static final Dimension[] resolutions = { // indices meant to align with constants above
92 new Dimension(176, 144),
93 new Dimension(480, 360),
94 new Dimension(720, 480),
95 new Dimension(1280, 720),
96 new Dimension(1920, 1080)
110 * Returns a string representation of the dimension
111 * For dimension of width = 480 and height = 360, the resolution string is "480x360"
113 private static String resolutionString(Dimension resolution)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/cloudwatch/
dimension.py 24 class Dimension(dict):
metric.py 26 from boto.ec2.cloudwatch.dimension import Dimension
51 self.dimensions = Dimension()
153 the dictionary is the name of a Dimension. The value in
154 the dictionary is either a scalar value of that Dimension
157 Dimension name.
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
StatusBarController.java 30 import java.awt.Dimension;
49 labelText.setPreferredSize(new Dimension(300, 20));
51 progress.setPreferredSize(new Dimension(100, 15));
RuleListController.java 36 import java.awt.Dimension;
114 this.setPreferredSize(new Dimension(50, 18));
  /external/eigen/test/
umeyama.cpp 120 template<typename Scalar, int Dimension>
124 typedef Matrix<Scalar, Dimension+1, Dynamic> MatrixX;
125 typedef Matrix<Scalar, Dimension+1, Dimension+1> HomMatrix;
126 typedef Matrix<Scalar, Dimension, Dimension> FixedMatrix;
127 typedef Matrix<Scalar, Dimension, 1> FixedVector;
129 const int dim = Dimension;
148 Block<MatrixX, Dimension, Dynamic> src_block(src,0,0,dim,num_elements);
149 Block<MatrixX, Dimension, Dynamic> dst_block(dst,0,0,dim,num_elements)
    [all...]
  /cts/tests/tests/mediastress/preconditions/tests/src/android/mediastress/cts/preconditions/
MediaPreparerTest.java 26 import java.awt.Dimension;
39 private final Dimension DEFAULT_DIMENSION =
97 Dimension result = mMediaPreparer.getMaxVideoPlaybackResolution(mMockDevice);
106 Dimension result = mMediaPreparer.getMaxVideoPlaybackResolution(mMockDevice);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DemoApplet.java 10 import java.awt.Dimension;
60 Dimension size = button.getPreferredSize();
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 73 * \f$d\f$ is corresponding to the dimension (which is typically small).
77 * the input point sets have dimension \f$d \times m\f$.
106 enum { Dimension = EIGEN_SIZE_MIN_PREFER_DYNAMIC(Derived::RowsAtCompileTime, OtherDerived::RowsAtCompileTime) };
108 typedef Matrix<Scalar, Dimension, 1> VectorType;
109 typedef Matrix<Scalar, Dimension, Dimension> MatrixType;
112 const Index m = src.rows(); // dimension
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 35 public Dimension getPreferredSize() {
36 Dimension d = super.getPreferredSize();
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_optimize.c 43 s1->Register.Dimension == d1->Register.Dimension &&
51 d1->Register.Dimension == d2->Register.Dimension &&
59 d1->Register.Dimension == d2->Register.Dimension &&
152 o->Dimension = i->Dimension;
167 o->Dimension = i->Dimension;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPreferenceInitializer.java 20 import org.eclipse.test.performance.Dimension;
55 // Default dimension
59 Dimension[] dimensions = PerformanceTestPlugin.getResultsDimensions();
  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 207 Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
208 Dimension frameSize = frame.getSize();
  /external/aac/libAACdec/src/
aac_rom.h 134 UCHAR Dimension;
181 The first dimension is the channel configuration index. */
  /external/mesa3d/src/gallium/include/pipe/
p_shader_tokens.h 119 unsigned Dimension : 1; /**< any extra dimension info? */
570 unsigned Dimension : 1; /* BOOL */
586 * Then, if tgsi_src_register::Dimension is TRUE, tgsi_dimension follows.
593 unsigned Dimension : 1; /* BOOL */
603 unsigned Dimension : 1; /* BOOL */

Completed in 1327 milliseconds

1 2 3 4