Lines Matching defs:area

32  * Gets the left tab of the area.
34 * @return the left tab of the area
44 * Gets the right tab of the area.
46 * @return the right tab of the area
56 * Gets the top tab of the area.
66 * Gets the bottom tab of the area.
76 * Sets the left tab of the area.
78 * @param left the left tab of the area
95 * Sets the right tab of the area.
97 * @param right the right tab of the area
114 * Sets the top tab of the area.
131 * Sets the bottom tab of the area.
168 * The reluctance with which the area's content shrinks below its preferred size.
179 * The reluctance with which the area's content grows over its preferred size.
207 * Gets aspect ratio of the area's content.
217 * Sets aspect ratio of the area's content.
218 * May be different from the aspect ratio of the area.
255 * Gets left inset between area and its content.
269 * Gets top inset between area and its content.
283 * Gets right inset between area and its content.
297 * Gets bottom inset between area and its content.
355 * Sets left inset between area and its content.
366 * Sets top inset between area and its content.
377 * Sets right inset between area and its content.
388 * Sets bottom inset between area and its content.
415 * Sets the width of the area to be the same as the width of the given area
418 * @param area the area that should have the same width
422 Area::SetWidthAs(Area* area, float factor)
424 return fLS->AddConstraint(-1.0, fLeft, 1.0, fRight, factor, area->Left(),
425 -factor, area->Right(), kEQ, 0.0);
430 * Sets the height of the area to be the same as the height of the given area
433 * @param area the area that should have the same height
437 Area::SetHeightAs(Area* area, float factor)
439 return fLS->AddConstraint(-1.0, fTop, 1.0, fBottom, factor, area->Top(),
440 -factor, area->Bottom(), kEQ, 0.0);
469 * Removes the area from its specification.
547 // adds the two essential constraints of the area that make sure that the
569 * Perform layout on the area.