Searched refs:isFixed (Results 1 - 25 of 47) sorted by relevance

12

/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventData.h391 #define IOHIDEventValueFloat(value, isFixed) (isFixed ? value : value>>16)
392 #define IOHIDEventValueFixed(value, isFixed) (isFixed ? value : value<<16)
396 #define IOHIDEventValueFloat(value, isFixed) (isFixed ? value : value / 65536.0)
397 #define IOHIDEventValueFixed(value, isFixed) (isFixed ? value : value * 65536)
405 #define GET_EVENTDATA_VALUE(eventData, fieldEvType, fieldOffset, value, isFixed)\
457 value = IOHIDEventValueFloat(character->quality, isFixed); \
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderIFrame.cpp82 if (style().width().isFixed() && style().height().isFixed()) {
105 layoutWithFlattening(style().width().isFixed(), style().height().isFixed());
H A DRenderSlider.cpp84 if (style().width().isFixed() && style().width().value() > 0)
89 if (style().minWidth().isFixed() && style().minWidth().value() > 0) {
94 if (style().maxWidth().isFixed()) {
H A DFixedTableLayout.cpp101 if (colStyleLogicalWidth.isFixed() && colStyleLogicalWidth.value() > 0)
120 if ((colStyleLogicalWidth.isFixed() || colStyleLogicalWidth.isPercent()) && colStyleLogicalWidth.isPositive()) {
144 if (logicalWidth.isFixed() && logicalWidth.isPositive()) {
180 if (tableLogicalWidth.isFixed() && tableLogicalWidth.isPositive())
225 if (m_width[i].isFixed()) {
248 if (m_width[i].isFixed()) {
H A DRenderLineBreak.cpp232 bool isFixed = false; local
233 IntRect absRect = localToAbsoluteQuad(FloatRect(rect), false, &isFixed).enclosingBoundingBox();
245 rects.append(SelectionRect(absRect, box->direction(), extentsRect.x(), extentsRect.maxX(), extentsRect.maxY(), 0, box->isLineBreak(), isFirstOnLine, isLastOnLine, false, false, boxIsHorizontal, isFixed, containingBlock->isRubyText(), view().pageNumberForBlockProgressionOffset(absRect.x())));
H A DRenderTextControl.cpp212 if (style().logicalWidth().isFixed() && style().logicalWidth().value() >= 0)
217 if (style().logicalMinWidth().isFixed() && style().logicalMinWidth().value() > 0) {
222 if (style().logicalMaxWidth().isFixed()) {
H A DAutoTableLayout.cpp96 if (columnLayout.logicalWidth.isFixed()) {
132 if (columnLayout.logicalWidth.isFixed()) {
161 if ((colLogicalWidth.isFixed() || colLogicalWidth.isPercent()) && colLogicalWidth.isZero())
167 if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].maxLogicalWidth < colLogicalWidth.value())
254 if (tableLogicalWidth.isFixed() && tableLogicalWidth.isPositive())
406 if (m_layoutStruct[pos].logicalWidth.isFixed() && haveAuto && fixedWidth <= cellMinLogicalWidth) {
417 if (!(m_layoutStruct[pos].logicalWidth.isFixed() && haveAuto && fixedWidth <= cellMinLogicalWidth)) {
571 if (logicalWidth.isFixed() && logicalWidth.value() > m_layoutStruct[i].computedLogicalWidth) {
609 if (logicalWidth.isFixed()) {
711 if (logicalWidth.isFixed())
[all...]
H A DRenderFileUploadControl.cpp227 if (style().width().isFixed() && style().width().value() > 0)
232 if (style().minWidth().isFixed() && style().minWidth().value() > 0) {
237 if (style().maxWidth().isFixed()) {
H A DRenderFieldset.cpp51 if (legendMarginLeft.isFixed())
54 if (legendMarginRight.isFixed())
H A DRenderDeprecatedFlexibleBox.cpp139 if (marginLeft.isFixed())
141 if (marginRight.isFixed())
212 if (style().width().isFixed() && style().width().value() > 0)
217 if (style().minWidth().isFixed() && style().minWidth().value() > 0) {
222 if (style().maxWidth().isFixed()) {
1074 if (!child->style().maxWidth().isUndefined() && child->style().maxWidth().isFixed())
1087 if (!child->style().maxHeight().isUndefined() && child->style().maxHeight().isFixed())
1099 if (child->style().minWidth().isFixed())
1112 if (minHeight.isFixed() || minHeight.isAuto()) {
H A DRenderFrameSet.cpp201 if (grid[i].isFixed()) {
231 if (grid[i].isFixed()) {
305 if (grid[i].isFixed()) {
337 if (grid[i].isFixed()) {
566 bool fixedWidth = frameSetElement().colLengths() && frameSetElement().colLengths()[c].isFixed();
567 bool fixedHeight = frameSetElement().rowLengths() && frameSetElement().rowLengths()[r].isFixed();
H A DRenderMenuList.cpp339 if (style().width().isFixed() && style().width().value() > 0)
344 if (style().minWidth().isFixed() && style().minWidth().value() > 0) {
349 if (style().maxWidth().isFixed()) {
H A DRenderRegion.cpp401 if (styleToUse.logicalWidth().isFixed() && styleToUse.logicalWidth().value() > 0)
406 if (styleToUse.logicalMinWidth().isFixed() && styleToUse.logicalMinWidth().value() > 0) {
411 if (styleToUse.logicalMaxWidth().isFixed()) {
H A DTextAutoSizing.cpp195 if (!lineHeightLength.isFixed() || lineHeightLength.value() != lineHeight) {
H A DRenderReplaced.cpp490 if (styleToUse.logicalMinWidth().isFixed() && styleToUse.logicalMinWidth().value() > 0) {
495 if (styleToUse.logicalMaxWidth().isFixed()) {
/macosx-10.10/WebCore-7600.1.25/platform/graphics/transforms/
H A DPerspectiveTransformOperation.h62 ASSERT(p.isFixed());
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLAppletElement.cpp119 LayoutUnit contentWidth = renderer->style().width().isFixed() ? LayoutUnit(renderer->style().width().value()) :
121 LayoutUnit contentHeight = renderer->style().height().isFixed() ? LayoutUnit(renderer->style().height().value()) :
/macosx-10.10/WebCore-7600.1.25/platform/
H A DLength.h84 bool isFixed() const;
311 inline bool Length::isFixed() const function in class:WebCore::Length
392 return isFixed() || isPercent();
/macosx-10.10/WebCore-7600.1.25/svg/graphics/
H A DSVGImage.cpp314 if (intrinsicRatio.isEmpty() && intrinsicWidth.isFixed() && intrinsicHeight.isFixed())
/macosx-10.10/WebCore-7600.1.25/style/
H A DStyleResolveTree.cpp825 if ((width.isFixed() && width.value() <= 0) || (height.isFixed() && height.value() <= 0))
830 if (left.isFixed() && width.isFixed() && -left.value() >= width.value())
833 if (top.isFixed() && height.isFixed() && -top.value() >= height.value())
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSToStyleMap.cpp582 if (image.borderSlices().top().isFixed())
584 if (image.borderSlices().right().isFixed())
586 if (image.borderSlices().bottom().isFixed())
588 if (image.borderSlices().left().isFixed())
H A DCSSComputedStyleDeclaration.cpp456 if (length.isFixed())
606 if (length.isFixed())
681 if (l.isFixed())
1516 if (!renderer || !renderer->isBox() || unzoomzedLength.isFixed())
1526 return !(style && (style->*lengthGetter)().isFixed());
1548 return !(style && style->marginTop().isFixed() && style->marginRight().isFixed()
1549 && style->marginBottom().isFixed() && style->marginLeft().isFixed());
1562 return !(style && style->paddingTop().isFixed()
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/coordinated/
H A DCoordinatedGraphicsLayer.cpp579 void CoordinatedGraphicsLayer::setFixedToViewport(bool isFixed) argument
581 if (m_fixedToViewport == isFixed)
584 m_fixedToViewport = isFixed;
585 m_layerState.fixedToViewport = isFixed;
H A DCoordinatedGraphicsLayer.h128 void setFixedToViewport(bool isFixed);
/macosx-10.10/WebCore-7600.1.25/dom/
H A DRange.cpp1626 bool isFixed = false; local
1632 rects.appendVector(toRenderText(r)->absoluteRectsForRange(startOffset, endOffset, useSelectionHeight, &isFixed));
1635 allFixed &= isFixed;
1636 someFixed |= isFixed;
1662 bool isFixed = false; local
1664 r->absoluteQuads(quads, &isFixed);
1668 quads.appendVector(toRenderText(r)->absoluteQuadsForRange(startOffset, endOffset, useSelectionHeight, &isFixed));
1671 allFixed &= isFixed;
1672 someFixed |= isFixed;

Completed in 482 milliseconds

12