HomeSort by relevance Sort by last modified time
    Searched defs:dimension (Results 1 - 25 of 48) sorted by null

1 2

  /packages/apps/Gallery2/jni/filters/
kmeans.cc 50 int dimension = 3; local
58 runKMeans<unsigned char, int>(k, finalCentroids, small_ds, len, dimension,
68 dimension, stride, iterations, finalCentroids);
73 applyCentroids<unsigned char, int>(k, nextCentroids, dst, len, dimension, stride);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LinearLayoutWeightFix.java 56 String dimension; local
59 dimension = ATTR_LAYOUT_HEIGHT;
61 dimension = ATTR_LAYOUT_WIDTH;
63 element.setAttributeNS(ANDROID_URI, dimension, VALUE_ZERO_DP);
  /device/lge/mako/camera/mm-camera-interface/
mm_omx_jpeg_encoder.h 35 const cam_ctrl_dimension_t * dimension; member in struct:omx_jpeg_encode_params_t
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
RawDataTable.java 93 Dim dimension = this.dimensions[d]; local
94 int dim_id = dimension.getId();
96 printDimTitle(dimension.getName());
97 String displayValue = dimension.getDisplayValue(value);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
BezierCurve.java 24 /** The dimension of the curve. */
25 private int dimension; field in class:BezierCurve
30 public BezierCurve(final int type, final List<Structure> bezTriples, final int dimension) {
31 if (dimension != 2 && dimension != 3) {
32 throw new IllegalArgumentException("The dimension of the curve should be 2 or 3!");
35 this.dimension = dimension;
39 bezierPoints = new float[bezTriples.size()][3][dimension];
44 for (k = 0; k < dimension; ++k) {
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 47 private Vector3f dimension = new Vector3f(); field in class:SweepSphere
67 return dimension;
70 public void setDimension(Vector3f dimension) {
71 this.dimension.set(dimension);
72 this.invDim.set(1,1,1).divideLocal(dimension);
76 this.dimension.set(x,y,z);
77 this.invDim.set(1,1,1).divideLocal(dimension);
81 this.dimension.set(dim, dim, dim);
82 this.invDim.set(1,1,1).divideLocal(dimension);
    [all...]
  /external/doclava/src/com/google/doclava/
LinkReference.java 166 int dimension = 0; local
192 dimension++;
208 for (int j = 0; j < dimension; j++) {
214 dimension = 0;
TypeInfo.java 28 public TypeInfo(boolean isPrimitive, String dimension, String simpleTypeName,
31 mDimension = dimension;
109 public String dimension() { method in class:TypeInfo
113 public void setDimension(String dimension) {
114 mDimension = dimension;
212 label += (isLastVararg) ? "..." : dimension();
336 + mIsWildcard + " Dimension: " + mDimension + " QualifedTypeName: "
InfoBuilder.java 310 if (type.dimension() != null) {
311 System.out.print(type.dimension());
713 newType = new TypeInfo(type.isPrimitive(), type.dimension(),
822 String dimension = null; local
870 dimension = getDimensions(tree);
872 TypeInfo type = new TypeInfo(isPrimitive, dimension, simpleTypeName, qualifiedTypeName, cl);
    [all...]
  /external/freetype/src/pshinter/
pshglob.h 133 /* dimension 0 => X coordinates + vertical hints/stems */
134 /* dimension 1 => Y coordinates + horizontal hints/stems */
138 PSH_DimensionRec dimension[2]; member in struct:PSH_GlobalsRec_
166 psh_dimension_snap_width( PSH_Dimension dimension,
pshrec.h 118 /* dimension-specific hints descriptor */
129 /* dimension 0 => X coordinates + vertical hints/stems */
130 /* dimension 1 => Y coordinates + horizontal hints/stems */
137 PS_DimensionRec dimension[2]; member in struct:PS_HintsRec_
pshalgo.c 403 FT_Int dimension )
417 ps_debug_hint_func( hint, dimension );
442 FT_Int dimension,
445 PSH_Dimension dim = &globals->dimension[dimension];
461 if ( ( dimension == 0 && !glyph->do_horz_hints ) ||
462 ( dimension == 1 && !glyph->do_vert_hints ) )
474 do_snapping = ( dimension == 0 && glyph->do_horz_snapping ) ||
475 ( dimension == 1 && glyph->do_vert_snapping );
483 if ( dimension == 1
2192 FT_Int dimension; local
    [all...]
  /external/javassist/src/main/javassist/expr/
NewArray.java 120 * Returns the dimension of the created array.
243 int index, dimension; field in class:NewArray.ProceedForArray
249 dimension = dim;
256 if (num != dimension)
269 bytecode.add(dimension);
270 bytecode.growStack(1 - dimension);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 128 * Return the number of stored values for the default dimension
130 * @return the number of stored values for the default dimension
140 * Return the number of stored values for the given dimension.
142 * @param dim_id The id of the dimension (see {@link Dim#getId()})
143 * @return the number of stored values for the given dimension
187 * Returns the standard deviation of the default dimension computed
200 * Returns the standard deviation of the given dimension computed
203 * @param dim_id The id of the dimension (see {@link Dim#getId()})
240 * Return the index of the dimension corresponding to the given
241 * dimension id (see {@link Dim#getId()}
460 Dim dimension = (Dim) PerformanceTestPlugin.getDimension(dim_id); local
    [all...]
  /frameworks/base/tools/aidl/
AST.h 71 int dimension; member in struct:Variable
75 Variable(Type* type, const string& name, int dimension);
aidl_language.h 31 int dimension; member in struct:type_type
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 557 * Adds padding to an existing dimension.
574 * @param s the dimension value from an XML attribute
614 // We only support dimension-type values, so try to parse the unit for dimension
615 DimensionEntry dimension = parseDimension(end); local
616 if (dimension != null) {
619 switch (dimension.type) {
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 326 int dimension = type.dimension().length() / 2; local
327 while (dimension > 0) {
329 dimension--;
340 if (!"".equals(type.dimension())) {
  /external/clang/test/SemaTemplate/
dependent-names.cpp 320 static const unsigned dimension = 3; member in struct:PR11421::X
321 template<unsigned dim=dimension>
  /external/freetype/src/autofit/
afhints.c 243 FT_Int dimension; local
246 for ( dimension = 1; dimension >= 0; dimension-- )
248 AF_AxisHints axis = &hints->axis[dimension];
255 dimension == AF_DIMENSION_HORZ ? "vertical" : "horizontal" );
263 dimension == AF_DIMENSION_HORZ ? (int)seg->first->ox / 64.0
287 FT_Int dimension,
294 dim = ( dimension == 0 ) ? AF_DIMENSION_HORZ : AF_DIMENSION_VERT;
313 FT_Int dimension,
351 FT_Int dimension; local
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Still.cpp 422 /* set_parm will return corrected dimension based on aspect ratio and
1437 cam_ctrl_dimension_t dimension; local
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Still.cpp 473 /* set_parm will return corrected dimension based on aspect ratio and
1584 cam_ctrl_dimension_t dimension; local
    [all...]
  /external/aac/libAACdec/src/
aacdec_hcr.cpp 167 UCHAR dimension);
1050 UCHAR dimension; local
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
SceneManager.java 86 final int dimension = 4; local
88 int arraySize = dimension * dimension * bytesPerPixel;
92 b.setX(dimension).setY(dimension);

Completed in 907 milliseconds

1 2