/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)); }
|
/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...] |
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...] |
/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/android/ |
RenderThemeAndroid.cpp | 184 style->setMarginLeft(Length(m, Fixed)); 186 style->setMarginRight(Length(m, Fixed)); 191 style->setMarginTop(Length(m, Fixed)); 193 style->setMarginBottom(Length(m, Fixed)); 217 style->setPaddingLeft(Length(paddingHoriz, Fixed)); 218 style->setPaddingRight(Length(paddingHoriz, Fixed)); 219 style->setPaddingTop(Length(paddingVert, Fixed)); 220 style->setPaddingBottom(Length(paddingVert, Fixed)); 223 style->setMinHeight(Length(15, Fixed)); 366 o->style()->setWidth(Length(sliderThumbWidth, Fixed)); [all...] |
/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/llvm/include/llvm/Bitcode/ |
BitCodes.h | 90 Fixed = 1, // A fixed width field, Val specifies number of bits. 93 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));
|
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));
|
/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/clang/lib/Serialization/ |
ASTWriterDecl.cpp | [all...] |
/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...] |