Searched defs:dimension (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDimensionTest.cpp40 void PrintTo(const HTMLDimension& dimension, ::std::ostream* os) argument
42 *os << "HTMLDimension => type: " << dimension.type() << ", value=" << dimension.value();
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java88 * Returns true if this parameter's dimension information agrees
89 * with the represented callee's dimension information.
91 public boolean matchesDimension(String dimension, boolean varargs) { argument
93 dimension += "[]";
95 return mType.dimension().equals(dimension);
H A DTypeInfo.java28 public TypeInfo(boolean isPrimitive, String dimension, String simpleTypeName, argument
31 mDimension = dimension;
108 mDimension = other.dimension();
132 public String dimension() { method in class:TypeInfo
136 public void setDimension(String dimension) { argument
137 mDimension = dimension;
258 label += (isLastVararg) ? "..." : dimension();
/external/chromium_org/gpu/command_buffer/client/
H A Dtransfer_buffer.cc109 static unsigned int ComputePOTSize(unsigned int dimension) { argument
110 return (dimension == 0) ? 0 : 1 << base::bits::Log2Ceiling(dimension);
/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/third_party/freetype/src/pshinter/
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_
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 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...]
/external/freetype/src/pshinter/
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_
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 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
2188 FT_Int dimension; local
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
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_
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...]
/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/chromium_org/third_party/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/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState.cpp93 static bool valid_for_filtering(unsigned dimension) { argument
96 return (dimension & ~0x3FFF) == 0;
/external/chromium_org/ui/gfx/
H A Dicon_util.cc40 // Windows icons. For each desired image dimension, it chooses the most
52 int dimension = IconUtil::kIconDimensions[i]; local
53 gfx::Size size(dimension, dimension);
63 if (dimension > IconUtil::kMediumIconSize &&
75 // There is no |dimension|x|dimension| source image.
84 dimension, dimension);
/external/clang/test/SemaTemplate/
H A Ddependent-names.cpp339 static const unsigned dimension = 3; member in struct:PR11421::X
340 template<unsigned dim=dimension>
/external/freetype/src/autofit/
H A Dafhints.c265 FT_Int dimension; local
268 for ( dimension = 1; dimension >= 0; dimension-- )
270 AF_AxisHints axis = &hints->axis[dimension];
279 dimension == AF_DIMENSION_HORZ ? "vertical"
293 dimension == AF_DIMENSION_HORZ
320 FT_Int dimension,
327 dim = ( dimension == 0 ) ? AF_DIMENSION_HORZ : AF_DIMENSION_VERT;
346 FT_Int dimension,
319 af_glyph_hints_get_num_segments( AF_GlyphHints hints, FT_Int dimension, FT_Int* num_segments ) argument
345 af_glyph_hints_get_segment_offset( AF_GlyphHints hints, FT_Int dimension, FT_Int idx, FT_Pos *offset, FT_Bool *is_blue, FT_Pos *blue_offset ) argument
396 FT_Int dimension; local
[all...]
/external/skia/src/core/
H A DSkBitmapProcState.cpp92 static bool valid_for_filtering(unsigned dimension) { argument
95 return (dimension & ~0x3FFF) == 0;
/external/chromium_org/base/strings/
H A Dstring_util.cc473 size_t dimension = 0; local
476 dimension < arraysize(kByteStringsUnlocalized) - 1) {
478 dimension++;
482 if (bytes != 0 && dimension > 0 && unit_amount < 100) {
484 kByteStringsUnlocalized[dimension]);
487 kByteStringsUnlocalized[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...]

Completed in 524 milliseconds

12