HomeSort by relevance Sort by last modified time
    Searched defs:area (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/skia/src/gpu/
GrRectanizer_pow2.cpp 17 int32_t area = width * height; // computed here since height will be modified local
51 fAreaSoFar += area;
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Prototype.js 35 Square.prototype.area = Square_area;
37 shouldBe("s.area()", "9");
  /external/chromium_org/printing/
pdf_render_settings.h 16 // gfx::Rect - render area
24 PdfRenderSettings(gfx::Rect area, int dpi, bool autorotate)
25 : PdfRenderSettingsBase(area, dpi, autorotate) {}
28 const gfx::Rect& area() const { return a; } function in class:printing::PdfRenderSettings
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h 58 StorageArea* area() const { return m_storageArea.get(); } function in class:blink::FINAL
StorageArea.cpp 208 StorageArea* area = storage->area(); local
209 return area->m_storageArea == sourceAreaInstance;
  /external/chromium_org/third_party/skia/include/gpu/
GrRect.h 37 int area() const { return this->width() * this->height(); } function in struct:GrIRect16
  /external/chromium_org/third_party/skia/tests/
BitmapGetColorTest.cpp 30 // specify an area that doesn't touch (0,0) and may extend beyond the
33 const SkIRect area = { 1, 1, 3, 3 }; local
43 bm.eraseArea(area, gRec[i].fInColor);
RecordTest.cpp 16 // Sums the area of any DrawRect command it sees.
27 int area() const { return fArea; } function in class:AreaSummer
65 // Its area should be 100.
68 REPORTER_ASSERT(r, summer.area() == 100);
74 // Now its area should be 100 + 400.
76 REPORTER_ASSERT(r, summer.area() == 500);
  /external/iproute2/lib/
dnet_ntop.c 39 u_int16_t addr, area; local
45 area = addr >> 10;
55 if (do_digit(str + pos, &area, 10, &pos, len, &started))
58 if (do_digit(str + pos, &area, 1, &pos, len, &started))
dnet_pton.c 42 u_int16_t area = 0; local
46 pos = dnet_num(src, &area);
47 if ((pos == 0) || (area > 63) || (*(src + pos) != '.'))
53 addr = dn_htons((area << 10) | node);
  /external/opencv/cv/src/
_cvgeom.h 76 double area; /* area of the triangle */ member in struct:_CvTrianAttr
  /external/chromium_org/cc/output/
copy_output_request.h 47 // area is given, then the intersection of this rect (in layer space) with
49 void set_area(const gfx::Rect& area) {
51 area_ = area;
54 gfx::Rect area() const { return area_; } function in class:cc::CopyOutputRequest
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
SelfOrientingSashForm.java 22 * client area. This is done so that the sash form can be placed in a view that will sometimes be
125 Rectangle area; local
127 area = getClientArea();
128 if (area.width > 0 && area.height > 0) {
131 if (area.width < area.height) {
143 Rectangle area = getClientArea(); local
144 if (area.width > 0 && area.height > 0 && area.width < area.height)
    [all...]
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_common_unittest.cc 81 int area = overlap.width() * overlap.height(); variable
82 if (area > max_area) {
83 max_area = area;
  /external/chromium_org/components/autofill/core/browser/
validation.cc 153 // A SSN is of the form AAA-GG-SSSS (A = area number, G = group number, S =
154 // serial number). The validation we do here is simply checking if the area,
157 // Historically, the area number was assigned per state, with the group number
160 // group number assigned for a given area number. (This was something that
180 int area; local
183 &area)) {
186 if (area < 1 ||
187 area == 666 ||
188 area >= 900) {