Searched refs:width (Results 1 - 25 of 3137) 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/skia/src/core/
H A DSkMatrixUtils.h20 * Given a matrix and width/height, return true if the computed dst-rect would
25 * The src-rect is defined to be { 0, 0, width, height }
31 bool SkTreatAsSprite(const SkMatrix&, int width, int height,
39 int width, int height) {
40 return SkTreatAsSprite(matrix, width, height, kSkSubPixelBitsForBilerp);
38 SkTreatAsSpriteFilter(const SkMatrix& matrix, int width, int height) argument
/external/webp/src/utils/
H A Dquant_levels_dec.c18 int DequantizeLevels(uint8_t* const data, int width, int height) { argument
19 if (data == NULL || width <= 0 || height <= 0) return 0;
21 (void)width;
/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.h25 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
26 GrAssert(width >= 0);
32 int width() const { return fWidth; } function in class:GrRectanizer
35 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
47 static GrRectanizer* Factory(int width, int height);
/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/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/harfbuzz_ng/util/
H A Dansi-print.hh34 unsigned int 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);

Completed in 583 milliseconds

1234567891011>>