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

1 2

  /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);
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: "
LinkReference.java 161 int dimension = 0; local
187 dimension++;
203 for (int j = 0; j < dimension; j++) {
209 dimension = 0;
  /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_
  /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;
  /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/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/llvm/test/FrontendFortran/
2009-02-09-FloorDivExpr.f90 22 integer, dimension (:) :: values
  /frameworks/base/tools/aidl/
generate_java.cpp 279 if (v->dimension == 0) {
282 if (v->dimension == 1) {
291 if (v->dimension == 0) {
294 if (v->dimension == 1) {
303 if (v->dimension == 0) {
306 if (v->dimension == 1) {
339 decl->returnTypeDimension = method->type.dimension;
346 arg->type.dimension));
371 v->dimension = arg->type.dimension;
    [all...]
aidl_language.h 31 int dimension; member in struct:type_type
aidl_language_y.y 237 $$.type.dimension = 0;
242 $$.type.dimension = count_brackets($2.buffer.data);
247 $$.type.dimension = 0;
AST.h 61 int dimension; member in struct:Variable
65 Variable(Type* type, const string& name, int dimension);
AST.cpp 117 dimension(0)
124 dimension(0)
131 dimension(d)
149 for (int i=0; i<this->dimension; i++) {
aidl.cpp 403 if (m->type.dimension > 0 && !returnType->CanBeArray()) {
410 if (m->type.dimension > 1) {
441 && (arg->type.dimension != 0 || t->CanBeOutParameter())) {
452 && arg->type.dimension == 0) {
461 if (arg->type.dimension > 0 && !t->CanBeArray()) {
470 if (arg->type.dimension > 1) {
  /frameworks/base/core/tests/coretests/src/android/view/
ZeroSizedTest.java 28 * Builds the drawing cache of Views of various dimension. The assumption is that
29 * a View with a 0-sized dimension (width or height) will always have a null
47 mWithDimension = activity.findViewById(R.id.dimension);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 524 * Adds padding to an existing dimension.
541 * @param s the dimension value from an XML attribute
581 // We only support dimension-type values, so try to parse the unit for dimension
582 DimensionEntry dimension = parseDimension(end); local
583 if (dimension != null) {
586 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())) {
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]
  /external/proguard/src/proguard/classfile/util/
ClassUtil.java 337 for (int dimension = 0; dimension < dimensionCount; dimension++)
    [all...]

Completed in 334 milliseconds

1 2