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

12

/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);
H A DTypeInfo.java28 public TypeInfo(boolean isPrimitive, String dimension, String simpleTypeName, argument
31 mDimension = dimension;
109 public String dimension() { method in class:TypeInfo
113 public void setDimension(String dimension) { argument
114 mDimension = dimension;
212 label += (isLastVararg) ? "..." : dimension();
H A DLinkReference.java166 int dimension = 0;
192 dimension++;
208 for (int j = 0; j < dimension; j++) {
214 dimension = 0;
H A DStubs.java611 || !field.type().dimension().equals("") || field.containingClass().isInterface();
704 if (t.isPrimitive() && t.dimension().equals("")) {
708 && t.dimension().equals("")) {
722 (!t.isTypeVariable() ? "(" + t.qualifiedTypeName() + t.dimension() + ")" : "")
974 String fullTypeName = makeXMLcompliant(fi.type().qualifiedTypeName()) + fi.type().dimension();
1227 apiWriter.print(fi.type().qualifiedTypeName() + fi.type().dimension());
1388 keepListWriter.print(getCleanTypeName(fi.type()) + fi.type().dimension());
1420 return t.isPrimitive() ? t.simpleTypeName() + t.dimension() :
1421 to$Class(t.asClassInfo().qualifiedName() + t.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/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/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/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/webkit/Source/WebCore/inspector/front-end/
H A DFontView.js112 var dimension = this._measureElement();
114 const height = dimension.height;
115 const width = dimension.width;
/external/webkit/Source/WebCore/platform/audio/fftw/
H A DFFTFrameFFTW.cpp272 fftwf_iodim dimension;
273 dimension.n = fftSize;
274 dimension.is = 1;
275 dimension.os = 1;
286 plans[pow2size] = fftwf_plan_guru_split_dft_r2c(1, &dimension, 0, 0,
291 plans[pow2size] = fftwf_plan_guru_split_dft_c2r(1, &dimension, 0, 0,
/external/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/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/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);
/external/libvpx/examples/includes/
H A Dvp8_doc_tools.php50 * dimension is the full matched string (with delimiter);
51 * 2nd dimension is the undelimited contents (typically
/external/aac/libAACdec/src/
H A Daacdec_hcr.cpp167 UCHAR dimension);
1050 UCHAR dimension; local
1088 dimension = pCbDimension[codebook]; /* get dimension of codebook of this extended sort. sec. */
1117 for( i=dimension; i != 0 ; i-- ) {
1134 if (1 == errDetectPcwSegmentation(*pRemainingBitsInSegment-ERROR_PCW_BODY,pHcr,PCW_BODY,pQuantizedSpectralCoefficients+quantizedSpectralCoefficientsIdx-dimension,dimension)) {
1160 dimension,
1180 if (1 == errDetectPcwSegmentation(*pRemainingBitsInSegment-ERROR_PCW_BODY_SIGN,pHcr,PCW_BODY_SIGN, pQuantizedSpectralCoefficients+quantizedSpectralCoefficientsIdx-dimension,dimension)) {
1296 errDetectPcwSegmentation(SCHAR remainingBitsInSegment, H_HCR_INFO pHcr, PCW_TYPE kind, FIXP_DBL *qsc_base_of_cw, UCHAR dimension) argument
[all...]
/external/clang/test/SemaTemplate/
H A Ddependent-names.cpp320 static const unsigned dimension = 3; member in struct:PR11421::X
321 template<unsigned dim=dimension>
/external/libvpx/examples/
H A Dgen_example_doxy.php142 * dimension is the full matched string (with delimiter);
143 * 2nd dimension is the undelimited contents (typically
/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/
H A DBuildResults.java128 * 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 i
[all...]
/external/proguard/src/proguard/classfile/util/
H A DClassUtil.java337 for (int dimension = 0; dimension < dimensionCount; dimension++)

Completed in 452 milliseconds

12