Searched refs:width (Results 1 - 25 of 2880) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DQuad.java42 * side is located at the width/height coordinates (width, height, 0).
48 private float width; field in class:Quad
58 * Create a quad with the given width and height. The quad
61 * @param width The X extent or width
62 * @param height The Y extent or width
64 public Quad(float width, float height){ argument
65 updateGeometry(width, height);
69 * Create a quad with the given width an
77 Quad(float width, float height, boolean flipCoords) argument
89 updateGeometry(float width, float height) argument
93 updateGeometry(float width, float height, boolean flipCoords) argument
[all...]
/external/webkit/Source/WebCore/html/
H A DTextMetrics.idl29 readonly attribute float width;
H A DHTMLPreElement.idl24 // FIXME: DOM spec says that width should be of type DOMString
26 attribute [Reflect] long width;
/external/webkit/Source/WebCore/platform/image-decoders/cairo/
H A DImageDecoderCairo.cpp37 m_bytes)), CAIRO_FORMAT_ARGB32, width(), height(),
38 width() * sizeof(PixelData));
/external/webkit/Source/WebKit/chromium/public/
H A DWebSize.h45 int width; member in struct:WebKit::WebSize
48 bool isEmpty() const { return width <= 0 || height <= 0; }
51 : width(0)
56 WebSize(int width, int height) argument
57 : width(width)
64 : width(s.width())
71 width = s.width();
[all...]
H A DWebRect.h47 int width; member in struct:WebKit::WebRect
50 bool isEmpty() const { return width <= 0 || height <= 0; }
55 , width(0)
60 WebRect(int x, int y, int width, int height) argument
63 , width(width)
72 , width(r.width())
81 width = r.width();
[all...]
H A DWebFloatRect.h45 float width; member in struct:WebKit::WebFloatRect
48 bool isEmpty() const { return width <= 0 || height <= 0; }
53 , width(0.0f)
58 WebFloatRect(float x, float y, float width, float height) argument
61 , width(width)
70 , width(r.width())
79 width = r.width();
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DRectangle.java41 public final float x, y, width, height; field in class:Rectangle
47 * @param width the width of the rectangle
50 public Rectangle(float x, float y, float width, float height) { argument
53 this.width = width;
/external/webkit/Source/WebCore/platform/chromium/
H A DFileChooserChromium.cpp36 String FileChooser::basenameForWidth(const Font& font, int width) const
38 if (width <= 0)
47 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font);
49 return StringTruncator::centerTruncate(string, static_cast<float>(width), font);
/external/webkit/Source/WebCore/platform/efl/
H A DFileChooserEfl.cpp38 String FileChooser::basenameForWidth(const Font& font, int width) const
40 if (width <= 0)
49 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font);
51 return StringTruncator::centerTruncate(string, static_cast<float>(width), font);
/external/webkit/Source/WebCore/platform/haiku/
H A DFileChooserHaiku.cpp31 String FileChooser::basenameForWidth(const Font&, int width) const
/external/webkit/Source/WebCore/platform/wx/
H A DFileChooserWx.cpp33 String FileChooser::basenameForWidth(const Font&, int width) const
/external/skia/src/gpu/
H A DGrRectanizer.h26 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
27 GrAssert(width >= 0);
33 int width() const { return fWidth; } function in class:GrRectanizer
36 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
48 static GrRectanizer* Factory(int width, int height);
H A DGrRectanizer.cpp30 return fAreaSoFar / ((float)this->width() * this->height());
42 bool canAddWidth(int width, int containerWidth) const { argument
43 return fLoc.fX + width <= containerWidth;
68 bool GrRectanizerPow2::addRect(int width, int height, GrIPoint16* loc) { argument
69 if ((unsigned)width > (unsigned)this->width() ||
74 int32_t area = width * height;
95 if (!row->canAddWidth(width, this->width())) {
106 GrAssert(row->canAddWidth(width, thi
119 Factory(int width, int height) argument
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DPlanarYUVLuminanceSource.java42 int width, int height, boolean reverseHorizontal) {
43 super(width, height);
45 if (left + width > dataWidth || top + height > dataHeight) {
55 reverseHorizontal(width, height);
64 int width = getWidth();
65 if (row == null || row.length < width) {
66 row = new byte[width];
69 System.arraycopy(yuvData, offset, row, 0, width);
75 int width = getWidth();
80 if (width
41 PlanarYUVLuminanceSource(byte[] yuvData, int dataWidth, int dataHeight, int left, int top, int width, int height, boolean reverseHorizontal) argument
130 reverseHorizontal(int width, int height) argument
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dcertificate_manager.css8 width: 100%;
/external/libvpx/vp8/common/arm/
H A Dbilinearfilter_arm.h21 unsigned int width,
31 unsigned int width,
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java28 public int width; field in class:Texture
40 width = 0;
/external/webkit/Source/WebCore/platform/android/
H A DFileChooserAndroid.cpp35 String FileChooser::basenameForWidth(const Font& font, int width) const
41 return StringTruncator::centerTruncate(output, static_cast<float>(width), font);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntSizeQt.cpp37 : m_width(r.width())
44 return QSize(width(), height());
/external/webkit/Source/WebCore/platform/mac/
H A DFileChooserMac.mm39 String FileChooser::basenameForWidth(const Font& font, int width) const
41 if (width <= 0)
50 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font);
52 return StringTruncator::centerTruncate(strToTruncate, width, font);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DMemoryFlyoutPreferences.java29 public MemoryFlyoutPreferences(int dockLocation, int state, int width) { argument
32 m_width = width;
60 public void setWidth(int width) { argument
61 m_width = width;
/external/webkit/Source/WebCore/platform/brew/
H A DFileChooserBrew.cpp37 String FileChooser::basenameForWidth(const Font& font, int width) const
39 if (width <= 0)
48 return StringTruncator::rightTruncate(String::number(m_filenames.size()) + " files", width, font, false);
50 return StringTruncator::centerTruncate(string, width, font, false);
/external/webkit/Source/WebCore/platform/win/
H A DFileChooserWin.cpp35 String FileChooser::basenameForWidth(const Font& font, int width) const
37 if (width <= 0)
46 return StringTruncator::rightTruncate(String::number(m_filenames.size()) + " files", width, font);
48 return StringTruncator::centerTruncate(string, width, font);
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatSize.cpp36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
45 FloatSize FloatSize::narrowPrecision(double width, double height) argument
47 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));

Completed in 1758 milliseconds

1234567891011>>