HomeSort by relevance Sort by last modified time
    Searched refs:Fixed (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/webkit/Source/WebCore/rendering/
RenderThemeSafari.cpp 380 style->setWidth(Length(size.width(), Fixed));
382 style->setHeight(Length(size.height(), Fixed));
499 style->setPaddingLeft(Length(padding, Fixed));
500 style->setPaddingRight(Length(padding, Fixed));
501 style->setPaddingTop(Length(0, Fixed));
502 style->setPaddingBottom(Length(0, Fixed));
541 style->setMinHeight(Length(15, Fixed));
    [all...]
RenderThemeChromiumSkia.cpp 258 style->setWidth(Length(cancelButtonSize, Fixed));
259 style->setHeight(Length(cancelButtonSize, Fixed));
303 style->setWidth(Length(emptySize.width(), Fixed));
304 style->setHeight(Length(emptySize.height(), Fixed));
313 style->setWidth(Length(magnifierSize, Fixed));
314 style->setHeight(Length(magnifierSize, Fixed));
348 style->setWidth(Length(magnifierWidth, Fixed));
349 style->setHeight(Length(magnifierHeight, Fixed));
519 style->setWidth(Length(size.width(), Fixed));
521 style->setHeight(Length(size.height(), Fixed));
    [all...]
RenderThemeChromiumLinux.cpp 151 o->style()->setWidth(Length(size.width(), Fixed));
152 o->style()->setHeight(Length(size.height(), Fixed));
154 o->style()->setWidth(Length(size.height(), Fixed));
155 o->style()->setHeight(Length(size.width(), Fixed));
309 style->setWidth(Length(size.width(), Fixed));
310 style->setMinWidth(Length(size.width(), Fixed));
RenderMarquee.cpp 246 s->setHeight(Length(s->fontSize(), Fixed));
248 s->setHeight(Length(200, Fixed));
RenderMediaControls.cpp 102 o->style()->setWidth(Length(static_cast<int>(size.width * zoomLevel), Fixed));
103 o->style()->setHeight(Length(static_cast<int>(size.height * zoomLevel), Fixed));
RenderThemeMac.mm 678 style->setWidth(Length(size.width(), Fixed));
680 style->setHeight(Length(size.height(), Fixed));
    [all...]
RenderMenuList.cpp 89 innerStyle->setPaddingLeft(Length(theme()->popupInternalPaddingLeft(style()), Fixed));
90 innerStyle->setPaddingRight(Length(theme()->popupInternalPaddingRight(style()), Fixed));
91 innerStyle->setPaddingTop(Length(theme()->popupInternalPaddingTop(style()), Fixed));
92 innerStyle->setPaddingBottom(Length(theme()->popupInternalPaddingBottom(style()), Fixed));
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 463 renderStyle->setPaddingLeft(Length(padding, Fixed));
464 renderStyle->setPaddingRight(Length(padding, Fixed));
465 renderStyle->setPaddingTop(Length(padding, Fixed));
466 renderStyle->setPaddingBottom(Length(padding, Fixed));
530 renderStyle->setWidth(Length(size.width(), Fixed));
532 renderStyle->setHeight(Length(size.height(), Fixed));
571 #ifdef Q_WS_MAC // Use fixed font size and family on Mac (like Safari does)
626 style->setPaddingLeft(Length(paddingLeft, Fixed));
627 style->setPaddingRight(Length(paddingRight, Fixed));
628 style->setPaddingTop(Length(paddingTop, Fixed));
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRoot.cpp 228 style()->setPaddingBottom(Length(static_cast<int>(gRootBottomPadding * style()->fontSize()), Fixed));
243 style()->setPaddingLeft(Length(indexShift, Fixed));
245 style()->setPaddingTop(Length(rootMarginTop + static_cast<int>(gRootPadding * style()->fontSize()), Fixed));
251 indexBox->style()->setBottom(Length(radicalHeight + style()->paddingBottom().value(), Fixed));
RenderMathMLSubSup.cpp 76 scriptsStyle->setMarginLeft(Length(gSubsupScriptMargin, Fixed));
124 top->style()->setMarginTop(Length(-topAdjust, Fixed));
125 top->style()->setMarginBottom(Length(height - topHeight + topAdjust, Fixed));
167 base->style()->setPaddingTop(Length(heightDiff, Fixed));
RenderMathMLOperator.cpp 134 // If the operator is fixed, it will be contained in m_operator
295 newStyle->setLineHeight(Length(gGlyphLineHeight, Fixed));
299 newStyle->setMaxHeight(Length(size, Fixed));
304 newStyle->setTop(Length(topRelative, Fixed));
322 charStyle->setTop(Length(charRelative, Fixed));
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 174 // 7-bit fixed width VST_CODE_ENTRY strings.
177 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
180 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
251 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
259 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
262 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
270 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
272 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
286 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
288 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TranslateTransformOperation.h 37 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type));
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 210 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
217 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
219 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
226 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
228 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
242 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
244 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
252 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
457 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
459 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Constant
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 201 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
209 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
212 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
219 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
221 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
235 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ispacked
237 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
245 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
450 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
452 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Constant
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 74 // FIXME: After the referenced bug is fixed on all supported platforms, remove
221 result.setWidth(Length(controlSize.width(), Fixed));
223 result.setHeight(Length(controlSize.height(), Fixed));
703 return LengthSize(Length(Fixed), Length(Fixed));
720 return LengthSize(Length(0, Fixed), Length(static_cast<int>(15 * zoomFactor), Fixed));
723 return LengthSize(Length(Fixed), Length(Fixed));
726 return LengthSize(Length(static_cast<int>(base.width() * zoomFactor), Fixed),
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
ThemeMac.mm 108 result.setWidth(Length(controlSize.width(), Fixed));
110 result.setHeight(Length(controlSize.height(), Fixed));
612 return LengthSize(Length(Fixed), Length(Fixed));
629 return LengthSize(Length(0, Fixed), Length(static_cast<int>(15 * zoomFactor), Fixed));
632 return LengthSize(Length(Fixed), Length(Fixed));
635 return LengthSize(Length(static_cast<int>(base.width() * zoomFactor), Fixed),
636 Length(static_cast<int>(base.height() * zoomFactor), Fixed));
    [all...]
  /external/libpng/
CHANGES 6 fixed small problems in stub file
14 fixed some bugs in writer
24 fixed various bugs
32 fixed many reading and writing bugs
49 fixed error in libpng.txt and example.c
77 fixed some bugs (16 bit, 4 bit interlaced, etc.)
81 fixed bugs
85 fixed medium model bugs
86 fixed other bugs introduced in 0.85 and 0.86
90 fixed progressive bug
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk.cpp 287 style->setWidth(Length(fontSize, Fixed));
288 style->setHeight(Length(fontSize, Fixed));
293 style->setWidth(Length(width, Fixed));
294 style->setHeight(Length(height, Fixed));
474 renderObject->style()->setWidth(Length(m_mediaSliderThumbWidth, Fixed));
475 renderObject->style()->setHeight(Length(m_mediaSliderThumbHeight, Fixed));
RenderThemeGtk2.cpp 153 style->setWidth(Length(indicatorSize, Fixed));
155 style->setHeight(Length(indicatorSize, Fixed));
545 o->style()->setWidth(Length(length, Fixed));
546 o->style()->setHeight(Length(width, Fixed));
550 o->style()->setWidth(Length(width, Fixed));
551 o->style()->setHeight(Length(length, Fixed));
588 style->setWidth(Length(width, Fixed));
589 style->setMinWidth(Length(width, Fixed));
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 74 // Fixed type is not defined on non-CG and Windows platforms. |version| in sfntHeader
75 // and headTable and |fontRevision| in headTable are of Fixed, but they're
77 // the size (4 bytes). For the definition of Fixed type, see
79 typedef int32_t Fixed;
83 Fixed version;
128 Fixed version;
129 Fixed fontRevision;
  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 6 * Fixed point maths class. This can be tailored for specific needs by
11 * <p><a href="http://blog.numfum.com/2007/09/java-fixed-point-maths.html">
12 * http://blog.numfum.com/2007/09/java-fixed-point-maths.html</a></p>
21 public final class Fixed {
28 * Decimal one as represented by the Fixed class.
32 * Half in fixed point.
47 * 16.16 format used for the rest of the fixed point maths. The table
48 * values are then shifted to match the actual fixed point used.
68 * One quarter sine wave as fixed point values.
94 // Scale the values to the fixed point format used
    [all...]
  /system/bluetooth/data/
auto_pairing.conf 21 // Fixed PIN keyboard blacklist. Keyboards should have variable PIN
22 // The keyboards below have a fixed PIN of 0000, so we will auto pair.
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /external/webkit/Source/WebCore/platform/
Length.cpp 75 return Length(r, Fixed);

Completed in 1106 milliseconds

12 3 4