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

1 2 3 4

  /external/webkit/Source/WebCore/platform/
LengthBox.h 42 : m_left(Length(v, Fixed))
43 , m_right(Length(v, Fixed))
44 , m_top(Length(v, Fixed))
45 , m_bottom(Length(v, Fixed))
58 : m_left(Length(l, Fixed))
59 , m_right(Length(r, Fixed))
60 , m_top(Length(t, Fixed))
61 , m_bottom(Length(b, Fixed))
Length.h 37 enum LengthType { Auto, Relative, Percent, Fixed, Intrinsic, MinIntrinsic };
103 setValue(Fixed, value);
115 *this = Length(value, Fixed);
122 case Fixed:
135 case Fixed:
151 case Fixed:
174 bool isFixed() const { return type() == Fixed; }
Theme.h 90 virtual LengthSize minimumControlSize(ControlPart, const Font&, float /*zoomFactor*/) const { return LengthSize(Length(0, Fixed), Length(0, Fixed)); }
  /gdk/samples/bitmap-plasma-llvm/jni/
libplasma.c 16 * For better performance on all platforms, we're going to use fixed-point
20 typedef int32_t Fixed;
29 #define FIXED_FROM_FLOAT(x) ((Fixed)((x)*FIXED_ONE))
41 #define FIXED_FROM_INT_FLOAT(x,f) (Fixed)((x)*(FIXED_ONE*(f)))
61 # define ANGLE_TO_FIXED(x) (Fixed)((x) << (FIXED_BITS - ANGLE_BITS))
64 # define ANGLE_TO_FIXED(x) (Fixed)((x) >> (ANGLE_BITS - FIXED_BITS))
67 static Fixed *angle_sin_tab;
68 //static Fixed angle_sin_tab[ANGLE_2PI+1];
70 static __inline__ Fixed angle_sin( Angle a )
75 static __inline__ Fixed angle_cos( Angle a
    [all...]
plasmaLLVM.cpp 50 * For better performance on all platforms, we're going to use fixed-point
54 typedef int32_t Fixed;
63 #define FIXED_FROM_FLOAT(x) ((Fixed)((x)*FIXED_ONE))
75 #define FIXED_FROM_INT_FLOAT(x,f) (Fixed)((x)*(FIXED_ONE*(f)))
95 # define ANGLE_TO_FIXED(x) (Fixed)((x) << (FIXED_BITS - ANGLE_BITS))
98 # define ANGLE_TO_FIXED(x) (Fixed)((x) >> (ANGLE_BITS - FIXED_BITS))
101 static Fixed angle_sin_tab[ANGLE_2PI+1];
112 static __inline__ Fixed angle_sin( Angle a )
117 static __inline__ Fixed angle_cos( Angle a )
122 static __inline__ Fixed fixed_sin( Fixed f
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
StyleSurroundData.cpp 28 : margin(Fixed)
29 , padding(Fixed)
BorderData.h 38 BorderData() : m_topLeft(Length(0, Fixed), Length(0, Fixed))
39 , m_topRight(Length(0, Fixed), Length(0, Fixed))
40 , m_bottomLeft(Length(0, Fixed), Length(0, Fixed))
41 , m_bottomRight(Length(0, Fixed), Length(0, Fixed))
StyleReflection.h 59 , m_offset(0, Fixed)
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 48 * For better performance on all platforms, we're going to use fixed-point
52 typedef int32_t Fixed;
61 #define FIXED_FROM_FLOAT(x) ((Fixed)((x)*FIXED_ONE))
73 #define FIXED_FROM_INT_FLOAT(x,f) (Fixed)((x)*(FIXED_ONE*(f)))
93 # define ANGLE_TO_FIXED(x) (Fixed)((x) << (FIXED_BITS - ANGLE_BITS))
96 # define ANGLE_TO_FIXED(x) (Fixed)((x) >> (ANGLE_BITS - FIXED_BITS))
99 static Fixed angle_sin_tab[ANGLE_2PI+1];
110 static __inline__ Fixed angle_sin( Angle a )
115 static __inline__ Fixed angle_cos( Angle a )
120 static __inline__ Fixed fixed_sin( Fixed f
    [all...]
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 53 * For better performance on all platforms, we're going to use fixed-point
57 typedef int32_t Fixed;
66 #define FIXED_FROM_FLOAT(x) ((Fixed)((x)*FIXED_ONE))
78 #define FIXED_FROM_INT_FLOAT(x,f) (Fixed)((x)*(FIXED_ONE*(f)))
98 # define ANGLE_TO_FIXED(x) (Fixed)((x) << (FIXED_BITS - ANGLE_BITS))
101 # define ANGLE_TO_FIXED(x) (Fixed)((x) >> (ANGLE_BITS - FIXED_BITS))
104 static Fixed angle_sin_tab[ANGLE_2PI+1];
115 static __inline__ Fixed angle_sin( Angle a )
120 static __inline__ Fixed angle_cos( Angle a )
125 static __inline__ Fixed fixed_sin( Fixed f
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFullScreen.cpp 62 fullscreenStyle->setLeft(Length(0, Fixed));
63 fullscreenStyle->setTop(Length(0, Fixed));
RenderMedia.cpp 78 controlsRenderer->style()->setHeight(Length(newSize.height(), Fixed));
79 controlsRenderer->style()->setWidth(Length(newSize.width(), Fixed));
RenderThemeWinCE.cpp 222 style->setWidth(Length(13, Fixed));
224 style->setHeight(Length(13, Fixed));
337 o->style()->setWidth(Length(sliderThumbHeight, Fixed));
338 o->style()->setHeight(Length(sliderThumbWidth, Fixed));
340 o->style()->setWidth(Length(sliderThumbWidth, Fixed));
341 o->style()->setHeight(Length(sliderThumbHeight, Fixed));
349 style->setPaddingTop(Length(1, Fixed));
350 style->setPaddingRight(Length(3, Fixed));
351 style->setPaddingBottom(Length(1, Fixed));
352 style->setPaddingLeft(Length(3, Fixed));
    [all...]
RenderInputSpeech.cpp 54 style->setWidth(Length(speechButtonSize, Fixed));
55 style->setHeight(Length(speechButtonSize, Fixed));
RenderThemeWin.cpp 126 // This is the fixed width IE and Firefox use for buttons on dropdown menus
687 style->setWidth(Length(width, Fixed));
688 style->setMinWidth(Length(width, Fixed));
718 style->setWidth(Length(13, Fixed));
720 style->setHeight(Length(13, Fixed));
766 style->setPaddingTop(Length(dropDownBoxPaddingTop, Fixed));
767 style->setPaddingRight(Length(dropDownBoxPaddingRight, Fixed));
768 style->setPaddingBottom(Length(dropDownBoxPaddingBottom, Fixed));
769 style->setPaddingLeft(Length(dropDownBoxPaddingLeft, Fixed));
778 style->setMinHeight(Length(minHeight, Fixed));
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/transforms/
PerspectiveTransformOperation.cpp 43 return PerspectiveTransformOperation::create(Length(clampToPositiveInteger(p), Fixed));
60 return PerspectiveTransformOperation::create(Length(clampToPositiveInteger(val), Fixed));
62 return PerspectiveTransformOperation::create(Length(0, Fixed));
  /external/webkit/Source/WebCore/platform/haiku/
RenderThemeHaiku.cpp 136 style->setWidth(Length(size, Fixed));
139 style->setHeight(Length(size, Fixed));
167 style->setPaddingRight(Length(22, Fixed));
169 style->setMinHeight(Length(minHeight, Fixed));
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
FixedPositioning.h 40 Percent, Fixed, Static, Intrinsic, MinIntrinsic };
56 type = Fixed;
68 case Fixed:
84 if (len.type() == WebCore::Fixed) {
85 length.type = SkLength::Fixed;
113 const IntPoint& renderLayerPos, // For undefined fixed position
152 // When fixed element is undefined or auto, the render layer's position
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 319 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
320 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
321 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
322 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
343 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
361 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Diag level.
363 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Category.
364 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Mapped Diag ID.
365 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Text size.
372 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Category ID
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 91 Fixed = 1, // A fixed width field, Val specifies number of bits.
94 Char6 = 4, // A 6-bit fixed field which maps to [a-zA-Z0-9._].
118 case Fixed:
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLUnderOver.cpp 167 base->style()->setMarginTop(Length(-overSpacing, Fixed));
169 base->style()->setMarginTop(Length(0, Fixed));
196 under->style()->setMarginTop(Length(-underSpacing, Fixed));
219 base->style()->setMarginTop(Length(-overSpacing, Fixed));
236 under->style()->setMarginTop(Length(-underSpacing, Fixed));
RenderMathMLFraction.cpp 98 lastChild()->style()->setPaddingTop(Length(static_cast<int>(m_lineThickness + style()->fontSize() * gDenominatorPad), Fixed));
107 Length pad(static_cast<int>(rowStyle->fontSize() * gHorizontalPad), Fixed);
114 rowStyle->setPaddingTop(Length(2, Fixed));
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp     [all...]
  /external/webkit/Source/WebCore/platform/wx/
RenderThemeWx.cpp 208 style->setMarginLeft(Length(m, Fixed));
211 style->setMarginRight(Length(m, Fixed));
216 style->setMarginTop(Length(m, Fixed));
219 style->setMarginBottom(Length(m, Fixed));
234 style->setWidth(Length(13, Fixed));
237 style->setHeight(Length(13, Fixed));
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 217 style->setMarginLeft(Length(m, Fixed));
219 style->setMarginRight(Length(m, Fixed));
224 style->setMarginTop(Length(m, Fixed));
226 style->setMarginBottom(Length(m, Fixed));
442 o->style()->setWidth(Length(sliderThumbWidth, Fixed));
443 o->style()->setHeight(Length(sliderThumbHeight, Fixed));
498 style->setWidth(Length(19, Fixed));
499 style->setHeight(Length(19, Fixed));
544 style->setPaddingLeft(Length(padding,Fixed));
545 style->setPaddingTop(Length(padding, Fixed));
    [all...]

Completed in 279 milliseconds

1 2 3 4