Searched defs:thickness (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/content/renderer/
H A Dwebscrollbarbehavior_impl_gtkoraura.cc38 const int thickness = isHorizontal ? noSnapRect.height() : noSnapRect.width(); local
40 (isHorizontal ? kOffEndMultiplier : kOffSideMultiplier) * -thickness,
41 (isHorizontal ? kOffSideMultiplier : kOffEndMultiplier) * -thickness);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbarThemeNonMacCommon.cpp75 int thickness = scrollbarThickness(scrollbar->controlSize()); local
81 return IntRect(scrollbar->x() + bs.width(), scrollbar->y(), scrollbar->width() - 2 * bs.width(), thickness);
85 return IntRect(scrollbar->x(), scrollbar->y() + bs.height(), thickness, scrollbar->height() - 2 * bs.height());
H A DScrollbar.cpp80 // scrollbar thickness and use it when sizing scrollbars (rather than leaving one dimension of the scrollbar
82 int thickness = m_theme->scrollbarThickness(controlSize); local
83 Widget::setFrameRect(IntRect(0, 0, thickness, thickness));
/external/chromium_org/chrome/browser/ui/views/
H A Ddetachable_toolbar_view.cc73 int thickness = views::NonClientFrameView::kClientEdgeThickness; local
74 int y = at_top ? 0 : (view->height() - thickness);
75 canvas->FillRect(gfx::Rect(0, y, view->width(), thickness), color);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DStrokeData.h61 float thickness() const { return m_thickness; } function in class:WebCore::StrokeData
62 void setThickness(float thickness) { m_thickness = thickness; } argument
H A DGraphicsContextState.cpp27 m_strokePaint.setStrokeWidth(SkFloatToScalar(m_strokeData.thickness()));
86 void GraphicsContextState::setStrokeThickness(float thickness) argument
88 m_strokeData.setThickness(thickness);
89 m_strokePaint.setStrokeWidth(SkFloatToScalar(thickness));
H A DGraphicsContext.h122 float strokeThickness() const { return immutableState()->strokeData().thickness(); }
123 void setStrokeThickness(float thickness) { mutableState()->setStrokeThickness(thickness); } argument
/external/chromium_org/third_party/skia/samplecode/
H A DSampleDither.cpp57 SkScalar thickness = p.getStrokeWidth(); local
63 path.lineTo(x + radius + thickness, y);
/external/chromium_org/ui/views/
H A Dborder.cc64 // A variation of SidedSolidBorder, where each side has the same thickness.
67 SolidBorder(int thickness, SkColor color) argument
68 : SidedSolidBorder(thickness, thickness, thickness, thickness, color) {
141 scoped_ptr<Border> Border::CreateSolidBorder(int thickness, SkColor color) { argument
142 return scoped_ptr<Border>(new SolidBorder(thickness, color));
/external/skia/samplecode/
H A DSampleDither.cpp57 SkScalar thickness = p.getStrokeWidth(); local
63 path.lineTo(x + radius + thickness, y);
/external/chromium_org/ash/frame/
H A Ddefault_header_painter.cc311 float thickness = 1 / canvas->image_scale(); local
312 SkScalar y = SkIntToScalar(height_) - SkFloatToScalar(thickness);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsvghelper.c477 double thickness = 0.075; local
479 thickness = 0.5;
483 thickness = 2.0;
488 time2pixels(i), SLOT_MULT/2, time2pixels(i), total_height, color, color, color, thickness);
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_font.cpp405 int thickness = EM_ADJUST(FXFT_Get_Face_UnitsPerEM(m_Face), FXFT_Get_Face_UnderLineThickness(m_Face)); local
406 return thickness;
/external/chromium_org/chrome/browser/ui/panels/
H A Dbase_panel_browser_test.cc58 int thickness; member in struct:__anon5053::MockDesktopBar
89 int thickness) OVERRIDE;
93 int thickness) OVERRIDE;
166 return mock_desktop_bars[static_cast<int>(alignment)].thickness;
180 DesktopBarAlignment alignment, bool enabled, int thickness) {
183 bar->thickness = thickness;
217 DesktopBarAlignment alignment, int thickness) {
221 if (thickness == bar->thickness)
179 EnableAutoHidingDesktopBar( DesktopBarAlignment alignment, bool enabled, int thickness) argument
216 SetDesktopBarThickness( DesktopBarAlignment alignment, int thickness) argument
[all...]
H A Ddocked_panel_collection.cc627 DisplaySettingsProvider::DesktopBarAlignment alignment, int thickness) {
626 OnAutoHidingDesktopBarThicknessChanged( DisplaySettingsProvider::DesktopBarAlignment alignment, int thickness) argument
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dopaque_browser_frame_view_layout.cc210 int thickness = FrameBorderThickness(restored); local
213 thickness -= kTabstripTopShadowThickness;
215 return thickness;
654 int thickness = FrameBorderThickness(false); local
655 leading_button_start_ = thickness;
656 trailing_button_start_ = thickness;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGInlineTextBox.cpp497 static inline float positionOffsetForDecoration(TextDecoration decoration, const FontMetrics& fontMetrics, float thickness)
502 return fontMetrics.floatAscent() + thickness * 1.5f;
504 return thickness;
585 float thickness = thicknessForDecoration(decoration, scaledFont); local
587 if (fragment.width <= 0 && thickness <= 0)
602 decorationOrigin.move(0, -scaledFontMetrics.floatAscent() + positionOffsetForDecoration(decoration, scaledFontMetrics, thickness));
605 path.addRect(FloatRect(decorationOrigin, FloatSize(width, thickness)));
/external/chromium_org/ui/gfx/
H A Drender_text_pango.cc52 int thickness = pango_font_metrics_get_underline_thickness(metrics); local
56 pango_quantize_line_geometry(&thickness, &position);
59 renderer->SetUnderlineMetrics(PANGO_PIXELS(thickness),
H A Drender_text.cc245 void SkiaTextRenderer::SetUnderlineMetrics(SkScalar thickness, argument
247 underline_thickness_ = thickness;
340 const int thickness = local
344 const int clip_height = height + 2 * thickness;
347 paint_.setStrokeWidth(thickness);
361 Rect(x, end.y() - thickness, pieces_[i].first, clip_height)),
/external/eigen/Eigen/src/OrderingMethods/
H A DEigen_Colamd.h146 Index thickness ; /* number of original columns represented by this */ member in union:internal::colamd_col::__anon20127
529 Col [col].shared1.thickness = 1 ;
985 Index col_thickness ; /* "thickness" (no. of columns in a supercol) */
1036 /* increment order count by column thickness */
1037 pivot_col_thickness = Col [pivot_col].shared1.thickness ;
1065 Col [pivot_col].shared1.thickness = -pivot_col_thickness ;
1087 col_thickness = Col [col].shared1.thickness ;
1091 Col [col].shared1.thickness = -col_thickness ;
1101 Col [pivot_col].shared1.thickness = pivot_col_thickness ;
1140 /* pivot row itself. The column ("thickness") itsel
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp1086 RenderObject::AppliedTextDecoration decoration, float thickness, bool antialiasDecoration, bool isPrinting)
1093 strokeWavyTextDecoration(context, start + FloatPoint(0, doubleOffset * wavyOffsetFactor), start + FloatPoint(width, doubleOffset * wavyOffsetFactor), thickness);
1142 // Update Underline thickness, in case we have Faulty Font Metrics calculating underline thickness by old method.
1266 // or decrease the underline thickness. The overlap is actually the most useful, and matches what AppKit does.
1085 paintAppliedDecoration(GraphicsContext* context, FloatPoint start, float width, float doubleOffset, int wavyOffsetFactor, RenderObject::AppliedTextDecoration decoration, float thickness, bool antialiasDecoration, bool isPrinting) argument
H A DRenderLayerScrollableArea.cpp241 static int cornerStart(const RenderStyle* style, int minX, int maxX, int thickness) argument
245 return maxX - thickness - style->borderRightWidth();
253 // FIXME: This isn't right. We need to know the thickness of custom scrollbars
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSettingsImpl.cpp704 void WebSettingsImpl::setPinchOverlayScrollbarThickness(int thickness) argument
706 m_settings->setPinchOverlayScrollbarThickness(thickness);
/external/opencv/cxcore/include/
H A Dcxcore.h1287 CvScalar color, int thickness CV_DEFAULT(1),
1291 if thickness<0 (e.g. thickness == CV_FILLED), the filled box is drawn */
1293 CvScalar color, int thickness CV_DEFAULT(1),
1300 CvScalar color, int thickness CV_DEFAULT(1),
1304 depending on <thickness>, <start_angle> and <end_angle> parameters. The resultant figure
1308 CvScalar color, int thickness CV_DEFAULT(1),
1312 int thickness CV_DEFAULT(1),
1320 0, 360, color, thickness, line_type, shift );
1333 int is_closed, CvScalar color, int thickness CV_DEFAUL
1390 int thickness; /* letters thickness */ member in struct:CvFont
[all...]
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp70 const void* color, int thickness, int line_type, int shift );
914 const void* color, int thickness, int line_type )
933 if( thickness >= 0 )
935 icvPolyLine( img, v, count, 0, color, thickness, line_type, XY_SHIFT );
1558 int thickness, int line_type, int flags, int shift )
1567 if( thickness <= 1 )
1591 thickness <<= XY_SHIFT - 1;
1595 r = thickness * cvInvSqrt( (float) r );
1620 icvCircle( img, center, thickness >> XY_SHIFT, color, 1 );
1624 icvEllipseEx( img, p0, cvSize(thickness, thicknes
912 icvEllipseEx( CvMat* img, CvPoint center, CvSize axes, int angle, int arc_start, int arc_end, const void* color, int thickness, int line_type ) argument
2204 int thickness, line_type; local
2308 cvInitFont( CvFont *font, int font_face, double hscale, double vscale, double shear, int thickness, int line_type ) argument
2415 cvDrawContours( void* img, CvSeq* contour, CvScalar externalColor, CvScalar holeColor, int maxLevel, int thickness, int line_type, CvPoint offset ) argument
[all...]

Completed in 3324 milliseconds

12