Searched refs:maxw (Results 1 – 6 of 6) sorted by relevance
/external/qemu/android/utils/ |
D | misc.c | 27 int nrows, ncols, r, c, n, maxw = 0; in print_tabular() local 31 if (len > maxw) in print_tabular() 32 maxw = len; in print_tabular() 34 maxw += 2; in print_tabular() 35 ncols = width/maxw; in print_tabular() 45 printf( "%-*s", maxw, strings[index] ); in print_tabular()
|
D | stralloc.c | 26 int nrows, ncols, r, c, n, maxw = 0; in stralloc_tabular() local 30 if (len > maxw) in stralloc_tabular() 31 maxw = len; in stralloc_tabular() 33 maxw += 2; in stralloc_tabular() 34 ncols = width/maxw; in stralloc_tabular() 44 stralloc_add_format( out, "%-*s", maxw, strings[index] ); in stralloc_tabular()
|
/external/qemu/android/ |
D | help.c | 211 int pass, maxw = 0; in help_keys() local 238 if (len > maxw) in help_keys() 239 maxw = len; in help_keys() 241 PRINTF( " %-*s %s\n", maxw, temp, skin_key_command_description(cmd) ); in help_keys()
|
/external/qemu/distrib/sdl-1.2.15/src/video/ |
D | SDL_surface.c | 468 int maxw, maxh; in SDL_UpperBlit() local 477 maxw = src->w - srcx; in SDL_UpperBlit() 478 if(maxw < w) in SDL_UpperBlit() 479 w = maxw; in SDL_UpperBlit()
|
/external/webkit/Source/WebCore/platform/efl/ |
D | RenderThemeEfl.cpp | 538 Evas_Coord minw, minh, maxw, maxh; in applyPartDescription() local 547 edje_object_size_max_get(object, &maxw, &maxh); in applyPartDescription() 548 desc->max.setWidth(Length(maxw, Fixed)); in applyPartDescription() 566 if (maxw > 0 && ow > maxw) in applyPartDescription() 567 ow = maxw; in applyPartDescription()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2005-12-19 | 2602 of a cell even when maxw or maxWidth is 0.
|