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

1 2 3

  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/js/
bootstrap-collapse.js 44 , dimension: function () {
50 var dimension
57 dimension = this.dimension()
58 scroll = $.camelCase(['scroll', dimension].join('-'))
68 this.$element[dimension](0)
70 this.$element[dimension](this.$element[0][scroll])
74 var dimension
76 dimension = this.dimension()
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
ArraySerializer.java 61 private void collectDimensions (Object array, int dimension, int[] dimensions) {
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 {
115 if (dimension > 0) {
119 boolean elementsAreArrays = dimension < dimensionCount - 1
    [all...]
  /external/doclava/src/com/google/doclava/
ParameterInfo.java 66 * 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) {
71 dimension += "[]";
73 return mType.dimension().equals(dimension);
  /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...]
  /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);
  /external/freetype/src/pshinter/
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...]
pshrec.c 534 /* finalize a given dimension */
536 ps_dimension_done( PS_Dimension dimension,
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->counters.num_masks = 0
    [all...]
pshglob.c 44 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[0].scale_mult = 0
    [all...]
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_
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
ShaderUniformDetailsProvider.java 128 private String formatMatrix(int dimension, Object value) {
131 if (list.size() != dimension * dimension) {
140 for (int i = 0; i < dimension; i++) {
142 JOINER.appendTo(sb, list.subList(i * dimension, (i + 1) * dimension));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ResourceUtils.java 59 public static boolean isValidDimensionPixelSize(final int dimension) {
60 return dimension > 0;
64 public static boolean isValidDimensionPixelOffset(final int dimension) {
65 return dimension >= 0;
  /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...]
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 216 if (v->dimension == 0) {
219 if (v->dimension == 1) {
228 if (v->dimension == 0) {
231 if (v->dimension == 1) {
240 if (v->dimension == 0) {
243 if (v->dimension == 1) {
276 decl->returnTypeDimension = method->type.dimension;
283 arg->type.dimension));
308 v->dimension = arg->type.dimension;
    [all...]
generate_java_rpc.cpp 180 v->dimension = arg->type.dimension;
188 if (arg->type.dimension == 0) {
191 else if (arg->type.dimension == 1) {
222 method->type.dimension);
607 if (v->dimension == 0) {
610 if (v->dimension == 1) {
620 if (v->dimension == 0) {
623 if (v->dimension == 1) {
654 "_result", method->type.dimension));
    [all...]
  /external/freetype/include/freetype/internal/
pshints.h 156 * 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/
FontView.js 112 var dimension = this._measureElement();
114 const height = dimension.height;
115 const width = dimension.width;
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
LayoutDetector.java 50 private static boolean isFillParent(@NonNull Element element, @NonNull String dimension) {
51 String width = element.getAttributeNS(ANDROID_URI, dimension);
  /external/webkit/Source/WebCore/platform/audio/fftw/
FFTFrameFFTW.cpp 272 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/
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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
  /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);
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
InefficientWeightDetector.java 169 String dimension; local
171 dimension = ATTR_LAYOUT_HEIGHT;
173 dimension = ATTR_LAYOUT_WIDTH;
175 Attr sizeNode = weightChild.getAttributeNodeNS(ANDROID_URI, dimension);
180 dimension, size);
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 86 inline float wrap(float value, float dimension) {
87 return value - (dimension * floor(value/dimension));
  /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);

Completed in 728 milliseconds

1 2 3