Searched refs:dimension (Results 1 - 25 of 62) sorted by relevance

123

/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DArraySerializer.java61 private void collectDimensions (Object array, int dimension, int[] dimensions) { argument
62 boolean elementsAreArrays = dimension < dimensions.length - 1;
66 dimensions[dimension] = Math.max(dimensions[dimension], Array.getLength(element));
67 if (elementsAreArrays) collectDimensions(element, dimension + 1, dimensions);
101 for (int dimension : dimensions) buffer.putInt(dimension);
113 private void writeArray(Serializer elementSerializer, ByteBuffer buffer, Object array, int dimension, int dimensionCount) throws IOException { argument
115 if (dimension > 0) {
119 boolean elementsAreArrays = dimension < dimensionCoun
133 readArray(Serializer elementSerializer, Class elementClass, ByteBuffer buffer, Object array, int dimension, int[] dimensions) argument
[all...]
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java66 * Returns true if this parameter's dimension information agrees
67 * with the represented callee's dimension information.
69 public boolean matchesDimension(String dimension, boolean varargs) { argument
71 dimension += "[]";
73 return mType.dimension().equals(dimension);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
H A DBezierCurve.java24 /** 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) { argument
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;
[all...]
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshalgo.c403 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
440 psh_hint_align( PSH_Hint hint, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
849 psh_hint_table_align_hints( PSH_Hint_Table table, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
2192 FT_Int dimension; local
[all...]
H A Dpshrec.c534 /* finalize a given dimension */
536 ps_dimension_done( PS_Dimension dimension, argument
539 ps_mask_table_done( &dimension->counters, memory );
540 ps_mask_table_done( &dimension->masks, memory );
541 ps_hint_table_done( &dimension->hints, memory );
545 /* initialize a given dimension */
547 ps_dimension_init( PS_Dimension dimension )
549 dimension->hints.num_hints = 0;
550 dimension->masks.num_masks = 0;
551 dimension
837 ps_hints_stem( PS_Hints hints, FT_Int dimension, FT_UInt count, FT_Long* stems ) argument
893 ps_hints_t1stem3( PS_Hints hints, FT_Int dimension, FT_Fixed* stems ) argument
1130 t1_hints_stem( T1_Hints hints, FT_Int dimension, FT_Fixed* coords ) argument
1174 t2_hints_stems( T2_Hints hints, FT_Int dimension, FT_Int count, FT_Fixed* coords ) argument
[all...]
H A Dpshglob.c44 PSH_Dimension dim = &globals->dimension[direction];
85 psh_dimension_snap_width( PSH_Dimension dimension,
89 FT_Pos width = FT_MulFix( org_width, dimension->scale_mult );
94 for ( n = 0; n < dimension->stdw.count; n++ )
100 w = dimension->stdw.widths[n].cur;
605 globals->dimension[0].stdw.count = 0;
606 globals->dimension[1].stdw.count = 0;
641 PSH_Dimension dim = &globals->dimension[1];
661 PSH_Dimension dim = &globals->dimension[0];
691 globals->dimension[
[all...]
H A Dpshglob.h133 /* 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,
H A Dpshrec.h118 /* 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_
/external/freetype/src/pshinter/
H A Dpshalgo.c402 FT_Int dimension )
416 ps_debug_hint_func( hint, dimension );
441 FT_Int dimension,
444 PSH_Dimension dim = &globals->dimension[dimension];
460 if ( ( dimension == 0 && !glyph->do_horz_hints ) ||
461 ( dimension == 1 && !glyph->do_vert_hints ) )
473 do_snapping = ( dimension == 0 && glyph->do_horz_snapping ) ||
474 ( dimension == 1 && glyph->do_vert_snapping );
482 if ( dimension
439 psh_hint_align( PSH_Hint hint, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
848 psh_hint_table_align_hints( PSH_Hint_Table table, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
2191 FT_Int dimension; local
[all...]
H A Dpshrec.c534 /* finalize a given dimension */
536 ps_dimension_done( PS_Dimension dimension, argument
539 ps_mask_table_done( &dimension->counters, memory );
540 ps_mask_table_done( &dimension->masks, memory );
541 ps_hint_table_done( &dimension->hints, memory );
545 /* initialize a given dimension */
547 ps_dimension_init( PS_Dimension dimension )
549 dimension->hints.num_hints = 0;
550 dimension->masks.num_masks = 0;
551 dimension
838 ps_hints_stem( PS_Hints hints, FT_Int dimension, FT_UInt count, FT_Long* stems ) argument
894 ps_hints_t1stem3( PS_Hints hints, FT_Int dimension, FT_Fixed* stems ) argument
1131 t1_hints_stem( T1_Hints hints, FT_Int dimension, FT_Fixed* coords ) argument
1175 t2_hints_stems( T2_Hints hints, FT_Int dimension, FT_Int count, FT_Fixed* coords ) argument
[all...]
H A Dpshglob.c44 PSH_Dimension dim = &globals->dimension[direction];
85 psh_dimension_snap_width( PSH_Dimension dimension,
89 FT_Pos width = FT_MulFix( org_width, dimension->scale_mult );
94 for ( n = 0; n < dimension->stdw.count; n++ )
100 w = dimension->stdw.widths[n].cur;
627 globals->dimension[0].stdw.count = 0;
628 globals->dimension[1].stdw.count = 0;
663 PSH_Dimension dim = &globals->dimension[1];
683 PSH_Dimension dim = &globals->dimension[0];
738 globals->dimension[
[all...]
H A Dpshglob.h133 /* 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,
H A Dpshrec.h118 /* 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_
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DSweepSphere.java47 private Vector3f dimension = new Vector3f(); field in class:SweepSphere
67 return dimension;
70 public void setDimension(Vector3f dimension) { argument
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/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DFontView.js119 var dimension = this._measureElement();
121 const height = dimension.height;
122 const width = dimension.width;
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dpshints.h156 * dimension ::
180 FT_UInt dimension,
197 * dimension ::
214 FT_UInt dimension,
436 * either the vertical or horizontal dimension. Equivalent to the
443 * dimension ::
467 FT_UInt dimension,
644 * The function to set the dimension's stems table.
/external/freetype/include/freetype/internal/
H A Dpshints.h156 * dimension ::
180 FT_UInt dimension,
197 * dimension ::
214 FT_UInt dimension,
436 * either the vertical or horizontal dimension. Equivalent to the
443 * dimension ::
467 FT_UInt dimension,
644 * The function to set the dimension's stems table.
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafhints.c243 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,
286 af_glyph_hints_get_num_segments( AF_GlyphHints hints, FT_Int dimension, FT_Int* num_segments ) argument
312 af_glyph_hints_get_segment_offset( AF_GlyphHints hints, FT_Int dimension, FT_Int idx, FT_Pos* offset ) argument
351 FT_Int dimension; local
416 af_glyph_hints_get_num_segments( AF_GlyphHints hints, FT_Int dimension, FT_Int* num_segments ) argument
429 af_glyph_hints_get_segment_offset( AF_GlyphHints hints, FT_Int dimension, FT_Int idx, FT_Pos* offset ) argument
[all...]
/external/freetype/src/autofit/
H A Dafhints.c252 FT_Int dimension; local
255 for ( dimension = 1; dimension >= 0; dimension-- )
257 AF_AxisHints axis = &hints->axis[dimension];
266 dimension == AF_DIMENSION_HORZ ? "vertical"
280 dimension == AF_DIMENSION_HORZ
307 FT_Int dimension,
314 dim = ( dimension == 0 ) ? AF_DIMENSION_HORZ : AF_DIMENSION_VERT;
333 FT_Int dimension,
306 af_glyph_hints_get_num_segments( AF_GlyphHints hints, FT_Int dimension, FT_Int* num_segments ) argument
332 af_glyph_hints_get_segment_offset( AF_GlyphHints hints, FT_Int dimension, FT_Int idx, FT_Pos* offset ) argument
371 FT_Int dimension; local
438 af_glyph_hints_get_num_segments( AF_GlyphHints hints, FT_Int dimension, FT_Int* num_segments ) argument
451 af_glyph_hints_get_segment_offset( AF_GlyphHints hints, FT_Int dimension, FT_Int idx, FT_Pos* offset ) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jar ... fShortName private org.eclipse.test.performance.Dimension[] fSummaryDimensions private boolean fSummaryIsGlobal private int fCommentType private String fComment ...
/external/javassist/src/main/javassist/expr/
H A DNewArray.java120 * 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/chromium_org/gpu/command_buffer/client/
H A Dtransfer_buffer.cc135 static unsigned int ComputePOTSize(unsigned int dimension) { argument
136 return (dimension == 0) ? 0 : 1 << Log2Ceiling(dimension);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c122 unsigned dimension,
137 declaration.Dimension = dimension;
807 unsigned dimension,
830 src_register.Dimension = dimension;
841 struct tgsi_dimension dimension; local
843 dimension.Indirect = 0;
844 dimension.Dimension = 0;
845 dimension.Padding = 0;
846 dimension.Index = 0;
848 return dimension;
118 tgsi_build_declaration( unsigned file, unsigned usage_mask, unsigned interpolate, unsigned dimension, unsigned semantic, unsigned invariant, unsigned local, struct tgsi_header *header ) argument
798 tgsi_build_src_register( unsigned file, unsigned swizzle_x, unsigned swizzle_y, unsigned swizzle_z, unsigned swizzle_w, unsigned negate, unsigned absolute, unsigned indirect, unsigned dimension, int index, struct tgsi_instruction *instruction, struct tgsi_header *header ) argument
871 struct tgsi_dimension dimension; local
899 tgsi_build_dst_register( unsigned file, unsigned mask, unsigned indirect, unsigned dimension, int index, struct tgsi_instruction *instruction, struct tgsi_header *header ) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c122 unsigned dimension,
137 declaration.Dimension = dimension;
807 unsigned dimension,
830 src_register.Dimension = dimension;
841 struct tgsi_dimension dimension; local
843 dimension.Indirect = 0;
844 dimension.Dimension = 0;
845 dimension.Padding = 0;
846 dimension.Index = 0;
848 return dimension;
118 tgsi_build_declaration( unsigned file, unsigned usage_mask, unsigned interpolate, unsigned dimension, unsigned semantic, unsigned invariant, unsigned local, struct tgsi_header *header ) argument
798 tgsi_build_src_register( unsigned file, unsigned swizzle_x, unsigned swizzle_y, unsigned swizzle_z, unsigned swizzle_w, unsigned negate, unsigned absolute, unsigned indirect, unsigned dimension, int index, struct tgsi_instruction *instruction, struct tgsi_header *header ) argument
871 struct tgsi_dimension dimension; local
899 tgsi_build_dst_register( unsigned file, unsigned mask, unsigned indirect, unsigned dimension, int index, struct tgsi_instruction *instruction, struct tgsi_header *header ) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DRawDataTable.java93 Dim dimension = this.dimensions[d];
94 int dim_id = dimension.getId();
96 printDimTitle(dimension.getName());
97 String displayValue = dimension.getDisplayValue(value);

Completed in 648 milliseconds

123