Searched defs:width (Results 126 - 150 of 1072) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/
H A Dwindow_sizer_linux.cc82 // We expect to get four longs back: x, y, width, height.
92 gint width = data[2]; local
96 out_rect->SetRect(x, y, width, height);
121 std::min(x + kWindowTilePixels, monitor_bounds.right() - size.width()),
/external/chromium/chrome/common/
H A Dweb_apps.h28 int width; member in struct:WebApplicationInfo::IconInfo
76 // If the input couldn't be parsed, a size with a width/height == 0 is returned.
/external/clang/test/CodeGen/
H A Dvla.c55 void function(short width, int data[][width]) {} // expected-note {{passing argument to parameter 'data' here}} argument
67 void function1(short width, int data[][width][width]) {} argument
/external/e2fsprogs/resize/
H A Dsim_progress.c30 int i, width; local
33 width = prog->labelwidth - strlen(prog->label);
34 while (width-- > 0)
38 for (width = prog->labelwidth; width > 0; width--)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DIFlyoutPreferences.java55 * @return the width of flyout.
75 * Sets the width of flyout.
77 void setWidth(int width); argument
H A DPluginFlyoutPreferences.java36 m_widthKey = prefix + ".flyout.width";
47 public void initializeDefaults(int location, int state, int width) { argument
50 m_store.setDefault(m_widthKey, width);
78 public void setWidth(int width) { argument
79 m_store.setValue(m_widthKey, width);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DBooleanObjectPropertyEditor.java48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument
54 paint(gc, x, y, width, height, text, image);
59 paint(gc, x, y, width, height, text, image);
63 private void paint(GC gc, int x, int y, int width, int height, String text, Image image) { argument
67 // prepare new position/width
68 int imageWidth = image.getBounds().width + 2;
70 width -= imageWidth;
74 DrawUtils.drawStringCV(gc, text, x, y, width, height);
87 if (location == null || location.x < m_trueImage.getBounds().width + 2) {
H A DBooleanPropertyEditor.java48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument
54 paint(gc, x, y, width, height, image, text);
56 paint(gc, x, y, width, height, m_unknownImage, "unknown");
63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text) { argument
67 // prepare new position/width
68 int imageWidth = image.getBounds().width + 2;
70 width -= imageWidth;
73 DrawUtils.drawStringCV(gc, text, x, y, width, height);
85 if (location == null || location.x < m_trueImage.getBounds().width + 2) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentation.java72 final int width,
74 return m_impl.show(propertyTable, property, x, y, width, height);
68 show(final PropertyTable propertyTable, final Property property, final int x, final int y, final int width, final int height) argument
H A DCompoundPropertyEditorPresentation.java53 int width,
57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height);
59 width -= presentationWidth;
49 show(PropertyTable propertyTable, Property property, int x, int y, int width, int height) argument
/external/freetype/src/base/
H A Dftlcdfil.c37 FT_UInt width = (FT_UInt)bitmap->width; local
42 if ( mode == FT_RENDER_MODE_LCD && width >= 4 )
66 for ( xx = 2; xx < width; xx++ )
105 for ( ; width > 0; width--, column++ )
170 FT_UInt width = (FT_UInt)bitmap->width; local
185 if ( mode == FT_RENDER_MODE_LCD && width >= 3 )
195 for ( xx = 0; xx < width; x
[all...]
/external/grub/stage2/
H A Dmb_header.h48 unsigned width; member in struct:multiboot_header
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTextureGeneratorDistnoise.java62 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
70 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
77 byte[] data = new byte[width * height * depth * bytesPerPixel];
106 return new Texture3D(new Image(format, width, height, depth, dataArray));
H A DTextureGeneratorMusgrave.java61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
66 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
75 byte[] data = new byte[width * height * depth * bytesPerPixel];
113 return new Texture3D(new Image(format, width, height, depth, dataArray));
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DPQTorus.java59 private float radius, width; field in class:PQTorus
74 * @param width the width of the torus.
78 public PQTorus(float p, float q, float radius, float width, argument
81 updateGeometry(p, q, radius, width, steps, radialSamples);
105 return width;
114 width = capsule.readFloat("width", 0);
125 * @param width the width o
129 updateGeometry(float p, float q, float radius, float width, int steps, int radialSamples) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTexture2D.java75 * @param width
79 public Texture2D(int width, int height, Image.Format format){ argument
80 this(new Image(format, width, height, null));
89 * @param width
94 public Texture2D(int width, int height, int numSamples, Image.Format format){ argument
95 this(new Image(format, width, height, null));
H A DTexture3D.java75 * @param width
80 public Texture3D(int width, int height, int depth, Image.Format format) { argument
81 this(new Image(format, width, height, depth, null));
90 * @param width
95 public Texture3D(int width, int height, int depth, int numSamples, Image.Format format) { argument
96 this(new Image(format, width, height, depth, null));
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglDisplay.java53 protected DisplayMode getFullscreenDisplayMode(int width, int height, int bpp, int freq){ argument
57 if (mode.getWidth() == width
216 double width = image.getWidth() * (double) 1;
218 g.drawImage(image, (int) ((convertedImage.getWidth() - width) / 2),
220 (int) (width), (int) (height), null);
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestRagDoll.java89 private Node createLimb(float width, float height, Vector3f location, boolean rotate) { argument
91 CapsuleCollisionShape shape = new CapsuleCollisionShape(width, height, axis);
/external/jpeg/
H A Djdapistd.c204 * Initialize the jpeg decoder to decompressing a rectangle with size of (width, height)
206 * Align start_x and start_y to multiplies of iMCU width and height, respectively.
208 * (start_x, start_y) and (width, height), respectively.
213 int *start_x, int *start_y, int *width, int *height)
222 jdiv_round_up(*start_x + *width, lines_per_iMCU_col);
249 *width = cinfo->output_width;
212 jpeg_init_read_tile_scanline(j_decompress_ptr cinfo, huffman_index *index, int *start_x, int *start_y, int *width, int *height) argument
/external/libpng/contrib/gregbook/
H A Dreadppm.c67 ulg width, height; variable
109 sscanf(ppmline, "%lu %lu", &width, &height);
121 *pWidth = width;
154 *pRowbytes = rowbytes = channels*width;
/external/libvpx/vp8/common/
H A Dextend.c21 int w, /* width */
75 void vp8_extend_to_multiple_of16(YV12_BUFFER_CONFIG *ybf, int width, int height) argument
77 int er = 0xf & (16 - (width & 0xf));
83 extend_plane_borders(ybf->y_buffer, ybf->y_stride, height, width, 0, 0, eb, er);
87 width = (width + 1) >> 1;
88 er = 0x7 & (8 - (width & 0x7));
93 extend_plane_borders(ybf->u_buffer, ybf->uv_stride, height, width, 0, 0, eb, er);
94 extend_plane_borders(ybf->v_buffer, ybf->uv_stride, height, width, 0, 0, eb, er);
/external/linux-tools-perf/util/ui/
H A Dbrowser.h19 u16 y, x, width, height; member in struct:ui_browser
/external/openfst/src/include/fst/script/
H A Ddraw.h40 const float width; member in struct:fst::script::FstDrawerArgs
58 float width,
70 title(title), width(width), height(height), portrait(portrait),
82 args->accep, args->title, args->width,
96 float width,
52 FstDrawerArgs(const FstClass &fst, const SymbolTable *isyms, const SymbolTable *osyms, const SymbolTable *ssyms, bool accep, const string &title, float width, float height, bool portrait, bool vertical, float ranksep, float nodesep, int fontsize, int precision, bool show_weight_one, ostream *ostrm, const string &dest) argument
/external/qemu/android/
H A Dframebuffer.h30 * its width/height are swapped automatically
48 int width; /* width in pixels */ member in struct:QFrameBuffer
77 int width,
169 /* rotate the framebuffer (may swap width/height), and tell all clients.

Completed in 467 milliseconds

1234567891011>>