HomeSort by relevance Sort by last modified time
    Searched refs:isFixed (Results 1 - 25 of 36) sorted by null

1 2

  /external/webkit/WebCore/rendering/
RenderApplet.cpp 61 int contentWidth = style()->width().isFixed() ? style()->width().value() :
63 int contentHeight = style()->height().isFixed() ? style()->height().value() :
RenderPartObject.cpp 71 bool widthIsFixed = style()->width().isFixed();
72 bool heightIsFixed = style()->height().isFixed();
157 if (!scrolling && style()->width().isFixed())
191 if (!scrolling && style()->height().isFixed())
FixedTableLayout.cpp 102 if (w.isFixed() && w.value() > 0)
121 if ((w.isFixed() || w.isPercent()) && w.isPositive()) {
164 if (w.isFixed() && w.isPositive())
207 int tableWidth = m_table->style()->width().isFixed() ? m_table->style()->width().value() - bs : 0;
249 if (m_width[i].isFixed()) {
272 if (m_width[i].isFixed()) {
RenderDataGrid.cpp 96 if (style()->width().isFixed() && style()->width().value() > 0)
101 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
109 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) {
AutoTableLayout.cpp 102 if (l.width.isFixed()) {
144 if (l.width.isFixed()) {
180 if ((w.isFixed() || w.isPercent()) && w.isZero())
186 if (w.isFixed() && m_layoutStruct[cEffCol].maxWidth < w.value())
287 if (tw.isFixed() && tw.value() > 0) {
424 if (m_layoutStruct[pos].width.isFixed() && haveAuto && fixedWidth <= cMinWidth) {
435 if (!(m_layoutStruct[pos].width.isFixed() && haveAuto && fixedWidth <= cMinWidth)) {
592 if (width.isFixed() && width.value() > m_layoutStruct[i].calcWidth) {
631 if (width.isFixed()) {
728 if (width.isFixed())
    [all...]
RenderFlexibleBox.cpp 134 if (ml.isFixed())
136 if (mr.isFixed())
158 if (ml.isFixed())
160 if (mr.isFixed())
175 if (style()->width().isFixed() && style()->width().value() > 0)
188 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
193 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) {
    [all...]
RenderFileUploadControl.cpp 252 if (style()->width().isFixed() && style()->width().value() > 0)
262 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
270 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) {
RenderFrameSet.cpp 219 if (grid[i].isFixed()) {
249 if (grid[i].isFixed()) {
323 if (grid[i].isFixed()) {
356 if (grid[i].isFixed()) {
542 if (l.isFixed())
553 if (l.isFixed())
665 bool fixedWidth = frameSet()->colLengths() && frameSet()->colLengths()[c].isFixed();
666 bool fixedHeight = frameSet()->rowLengths() && frameSet()->rowLengths()[r].isFixed();
RenderSlider.cpp 240 if (style()->width().isFixed() && style()->width().value() > 0)
245 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
253 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) {
RenderFieldset.cpp 55 if (legendMarginLeft.isFixed())
58 if (legendMarginRight.isFixed())
RenderListBox.cpp 170 if (style()->width().isFixed() && style()->width().value() > 0)
178 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
186 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) {
RenderMenuList.cpp 245 if (style()->width().isFixed() && style()->width().value() > 0)
250 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
258 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) {
RenderTextControl.cpp 469 if (style()->width().isFixed() && style()->width().value() > 0)
477 if (style()->minWidth().isFixed() && style()->minWidth().value() > 0) {
485 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) {
RenderLayerCompositor.cpp 508 if (layer->isFixed())
550 if ((negZOrderList->at(j))->isFixed()) {
    [all...]
RenderMarquee.cpp 242 if (s->height().isFixed() && s->height().value() < s->fontSize())
RenderSVGRoot.cpp 68 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength)
RenderLayer.h 325 bool isFixed() const { return renderer()->isPositioned() && renderer()->style()->position() == FixedPosition; }
328 return !hasAutoZIndex() || renderer()->isRenderView() || (isComposited() && isFixed());
RenderListMarker.cpp     [all...]
RenderReplaced.cpp 202 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength)
RenderBlock.cpp 596 if (cb->style()->height().isFixed() || cb->isTableCell())
603 if (hasAutoHeight || ((style()->height().isFixed() || style()->height().isPercent()) && style()->height().isZero())) {
    [all...]
RenderTableCell.cpp 100 if (w.isFixed() && w.value() > 0)
118 if (!nowrap.isNull() && w.isFixed())
    [all...]
  /external/skia/include/core/
Sk64.h 42 SkBool isFixed() const;
51 SkASSERT(this->isFixed());
  /external/webkit/WebCore/platform/
Length.h 161 bool isFixed() const { return type() == Fixed; }
  /external/webkit/WebCore/platform/graphics/android/
LayerAndroid.h 165 bool isFixed() { return m_isFixed; }
  /external/skia/src/core/
Sk64.cpp 154 SkBool Sk64::isFixed() const

Completed in 517 milliseconds

1 2