HomeSort by relevance Sort by last modified time
    Searched full:width (Results 276 - 300 of 5636) sorted by null

<<11121314151617181920>>

  /external/webkit/WebCore/platform/win/
FileChooserWin.cpp 37 String FileChooser::basenameForWidth(const Font& font, int width) const
39 if (width <= 0)
50 return StringTruncator::rightTruncate(String::number(m_filenames.size()) + " files", width, font, false);
52 return StringTruncator::centerTruncate(string, width, font, false);
  /external/webkit/WebCore/platform/wince/
FileChooserWince.cpp 43 String FileChooser::basenameForWidth(const Font& font, int width) const
45 if (width <= 0)
55 return StringTruncator::rightTruncate(String::number(m_filenames.size()) + " files", width, font, false);
57 return StringTruncator::centerTruncate(string, width, font, false);
  /external/wpa_supplicant/wpa_gui-qt4/
scanresults.ui 11 <width>452</width>
93 <width>50</width>
userdatarequest.ui 11 <width>216</width>
62 <width>20</width>
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
userdatarequest.ui 11 <width>216</width>
62 <width>20</width>
  /frameworks/base/docs/html/guide/tutorials/views/
index.jd 34 <a href="hello-linearlayout.html"><img src="images/hello-linearlayout.png" height="285" width="200" /></a>
38 <a href="hello-relativelayout.html"><img src="images/hello-relativelayout.png" height="285" width="200" /></a>
42 <a href="hello-tablelayout.html"><img src="images/hello-tablelayout.png" height="285" width="200" /></a>
47 <a href="hello-datepicker.html"><img src="images/hello-datepicker.png" height="285" width="200" /></a>
52 <a href="hello-timepicker.html"><img src="images/hello-timepicker.png" height="285" width="200" /></a>
56 <a href="hello-formstuff.html"><img src="images/hello-formstuff.png" height="285" width="200" /></a>
60 <a href="hello-spinner.html"><img src="images/hello-spinner.png" height="285" width="200" /></a>
65 <a href="hello-autocomplete.html"><img src="images/hello-autocomplete.png" height="285" width="200" /></a>
69 <a href="hello-listview.html"><img src="images/hello-listview.png" height="285" width="200" /></a>
73 <a href="hello-gridview.html"><img src="images/hello-gridview.png" height="285" width="200" /></a
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
StringTexture.java 32 FontMetricsInt metrics, int width, int height) {
33 super(width, height);
42 int width = (int) (.5f + paint.measureText(text)) + DEFAULT_PADDING * 2; local
44 return new StringTexture(text, paint, metrics, width, height);
  /packages/apps/Gallery3D/src/com/cooliris/media/
PathBarLayer.java 107 public float width; field in class:PathBarLayer.Component
136 animWidth = width;
138 animWidth = FloatUtils.animate(animWidth, width, timeElapsed);
141 if (animWidth == width) {
174 component.width = thisComponentWidth;
209 final int width = (int) component.animWidth; local
213 view.draw2D(x, y, 0f, width, height);
216 view.draw2D(0f, y, 0f, x + width, height);
221 view.draw2D(cap, x + width, y);
239 if (texture.computeTextWidth() <= (width - iconWidth))
287 float width = mWidth; local
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/
RenderScriptScene.java 33 public RenderScriptScene(int width, int height) {
34 mWidth = width;
79 public void resize(int width, int height) {
80 mWidth = width;
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
RenderScriptScene.java 33 public RenderScriptScene(int width, int height) {
34 mWidth = width;
79 public void resize(int width, int height) {
80 mWidth = width;
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
RenderScriptScene.java 33 public RenderScriptScene(int width, int height) {
34 mWidth = width;
79 public void resize(int width, int height) {
80 mWidth = width;
  /system/core/toolbox/
r.c 15 int width = 4, set = 0, fd; local
22 width = 1;
26 width = 2;
53 switch(width){
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
dalvik.bytecode.Opcodes.html 81 <TABLE summary="Removed Fields" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
107 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="25%">
121 <TD VALIGN="TOP" WIDTH="25%">
128 <TD VALIGN="TOP" WIDTH="25%">
135 <TD VALIGN="TOP" WIDTH="25%">
142 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /external/bison/data/
location.cc 95 operator+= (position& res, const int width)
97 res.columns (width);
103 operator+ (const position& begin, const int width)
106 return res += width;
111 operator-= (position& res, const int width)
113 return res += -width;
118 operator- (const position& begin, const int width)
120 return begin + -width;
214 inline const location operator+ (const location& begin, unsigned int width)
217 res.columns (width);
    [all...]
  /external/qemu/
framebuffer.c 33 _get_pitch( int width, QFrameBufferFormat format )
38 return width*2;
47 int width,
56 if (!qfbuff || width < 0 || height < 0)
59 pitch = _get_pitch( width, format );
75 qfbuff->width = width;
95 qfbuff->phys_width_mm = (int)(0.5 + 25.4 * qfbuff->width / x_dpi);
157 /* swap width and height if new rotation requires it */
158 int temp = qfbuff->width;
    [all...]
loadpng.c 21 png_uint_32 width, height; local
67 png_get_IHDR(p, pi, &width, &height, &bitdepth, &colortype,
70 // width, height, bitdepth, colortype);
102 data = (unsigned char*) malloc((width * 4) * height);
111 rowptrs[i] = data + ((width * 4) * i);
120 *_width = width;
159 png_uint_32 width, height; local
199 png_get_IHDR(p, pi, &width, &height, &bitdepth, &colortype,
202 // width, height, bitdepth, colortype);
234 data = (unsigned char*) malloc((width * 4) * height)
    [all...]
  /external/quake/quake/src/QW/client/
vid_null.c 28 vid.maxwarpwidth = vid.width = vid.conwidth = BASEWIDTH;
54 void D_BeginDirectRect (int x, int y, byte *pbitmap, int width, int height)
64 void D_EndDirectRect (int x, int y, int width, int height)
  /external/skia/include/core/
SkPicture.h 36 @param width the width of the virtual device the picture records.
65 @param width the base width for the picture, as if the recording
66 canvas' bitmap had this width.
67 @param height the base width for the picture, as if the recording
72 SkCanvas* beginRecording(int width, int height, uint32_t recordFlags = 0);
91 /** Return the width of the picture's recording canvas. This
94 @return the width of the picture's recording canvas
96 int width() const { return fWidth; function in class:SkPicture
    [all...]
  /external/webkit/WebCore/manual-tests/
custom-cursors.html 4 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png), auto;"><span style="cursor:url(nonexistent.png), auto;">some text</span></div>
5 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png);"></div>
10 <div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), help;"></div>
svg-animation-parseValues.svg 4 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="tiny" id="svg-root" width="100%" height="100%" viewBox="0 0 480 360">
9 <rect fill="red" x="-19" y="-19" width="38" height="38"/>
12 <rect x="-20" y="-20" width="40" height="40"/>
  /external/webkit/WebCore/platform/wx/wxcode/win/
fontprops.cpp 109 void GetTextExtent( const wxFont& font, const wxString& str, wxCoord *width, wxCoord *height,
138 // just the bounding rect for this string so adjust the width as needed
142 ABC width; local
144 if ( ::GetCharABCWidths(dc, chFirst, chFirst, &width) )
146 if ( width.abcA < 0 )
147 sizeRect.cx -= width.abcA;
152 ::GetCharABCWidths(dc, chLast, chLast, &width);
154 //else: we already have the width of the last character
156 if ( width.abcC < 0 )
157 sizeRect.cx -= width.abcC
    [all...]
  /frameworks/base/awt/java/awt/image/
CropImageFilter.java 37 private final int X, Y, WIDTH, HEIGHT;
48 * the width of rectangular area.
55 WIDTH = w;
69 String prop = "x=" + X + "; y=" + Y + "; width=" + //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
70 WIDTH + "; height=" + HEIGHT; //$NON-NLS-1$
87 if (x + w < X || X + WIDTH < x || y + h < Y || Y + HEIGHT < y) {
95 endX = X + WIDTH;
107 destWidth = WIDTH;
141 if (x + w < X || X + WIDTH < x || y + h < Y || Y + HEIGHT < y) {
149 endX = X + WIDTH;
    [all...]
  /frameworks/base/core/java/android/app/
IWallpaperManager.aidl 56 * minimum width and height for the wallpaper.
58 void setDimensionHints(in int width, in int height);
61 * Returns the desired minimum width for the wallpaper.
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 71 * return value is the height of the DockWindow, and its width is
72 * equal to the width of the screen; If the DockWindow sticks to the
73 * left or right of the screen, the return value is the width of the
82 return lp.width;
90 * <var>size</var> is the height of the DockWindow, and its width is
91 * equal to the width of the screen; If the DockWindow sticks to the
92 * left or right of the screen, <var>size</var> is the width of the
99 lp.width = -1;
102 lp.width = size;
126 int tmp = lp.width;
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PercentageBar.java 58 int width = (int) ((this.getBounds().width() * percent) / 100); local
60 return Math.max(width, intrinsicWidth);

Completed in 158 milliseconds

<<11121314151617181920>>