Home
last modified time | relevance | path

Searched refs:brush (Results 1 – 24 of 24) sorted by relevance

/external/pdfium/core/src/fxge/Microsoft SDK/include/
DGdiPlusBrush.h37 GpBrush *brush = NULL; in Clone() local
39 SetStatus(DllExports::GdipCloneBrush(nativeBrush, &brush)); in Clone()
41 Brush *newBrush = new Brush(brush, lastResult); in Clone()
45 DllExports::GdipDeleteBrush(brush); in Clone()
78 Brush(const Brush& brush);
79 Brush& operator=(const Brush& brush);
84 Brush(const Brush& brush)
86 brush;
90 Brush& operator=(const Brush& brush)
92 brush;
[all …]
DGdiPlusFlat.h533 GdipCloneBrush(GpBrush *brush, GpBrush **cloneBrush);
536 GdipDeleteBrush(GpBrush *brush);
539 GdipGetBrushType(GpBrush *brush, GpBrushType *type);
547 ARGB backcol, GpHatch **brush);
550 GdipGetHatchStyle(GpHatch *brush, GpHatchStyle *hatchstyle);
553 GdipGetHatchForegroundColor(GpHatch *brush, ARGB* forecol);
556 GdipGetHatchBackgroundColor(GpHatch *brush, ARGB* backcol);
586 GdipGetTextureTransform(GpTexture *brush, GpMatrix *matrix);
589 GdipSetTextureTransform(GpTexture *brush, GDIPCONST GpMatrix *matrix);
592 GdipResetTextureTransform(GpTexture* brush);
[all …]
DGdiPlusPen.h41 Pen(IN const Brush* brush,
46 lastResult = DllExports::GdipCreatePen2(brush->nativeBrush,
304 Status SetBrush(IN const Brush* brush) in SetBrush() argument
307 brush->nativeBrush)); in SetBrush()
340 Brush* brush = NULL; in GetBrush() local
345 brush = new SolidBrush(); in GetBrush()
349 brush = new HatchBrush(); in GetBrush()
353 brush = new TextureBrush(); in GetBrush()
357 brush = new Brush(); in GetBrush()
361 brush = new LinearGradientBrush(); in GetBrush()
[all …]
DGdiPlusGraphics.h1010 Status FillRectangle(IN const Brush* brush, in FillRectangle() argument
1013 return FillRectangle(brush, rect.X, rect.Y, rect.Width, rect.Height); in FillRectangle()
1016 Status FillRectangle(IN const Brush* brush, in FillRectangle() argument
1023 brush->nativeBrush, x, y, in FillRectangle()
1027 Status FillRectangles(IN const Brush* brush, in FillRectangles() argument
1032 brush->nativeBrush, in FillRectangles()
1037 Status FillRectangle(IN const Brush* brush, in FillRectangle() argument
1040 return FillRectangle(brush, in FillRectangle()
1047 Status FillRectangle(IN const Brush* brush, in FillRectangle() argument
1054 brush->nativeBrush, in FillRectangle()
[all …]
DGdiPlusPath.h1230 GpPathGradient *brush = NULL; variable
1234 wrapMode, &brush);
1235 SetNativeBrush(brush);
1243 GpPathGradient *brush = NULL; variable
1247 wrapMode, &brush);
1249 SetNativeBrush(brush);
1256 GpPathGradient *brush = NULL; in PathGradientBrush() local
1259 path->nativePath, &brush); in PathGradientBrush()
1260 SetNativeBrush(brush); in PathGradientBrush()
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
Dmain_wnd.cc273 HBRUSH brush = ::CreateSolidBrush(RGB(0, 0, 0)); in OnPaint() local
275 ::FillRect(dc_mem, &logical_rect, brush); in OnPaint()
276 ::DeleteObject(brush); in OnPaint()
306 HBRUSH brush = ::CreateSolidBrush(RGB(0, 0, 0)); in OnPaint() local
307 ::FillRect(ps.hdc, &rc, brush); in OnPaint()
308 ::DeleteObject(brush); in OnPaint()
325 HBRUSH brush = ::CreateSolidBrush(::GetSysColor(COLOR_WINDOW)); in OnPaint() local
326 ::FillRect(ps.hdc, &rc, brush); in OnPaint()
327 ::DeleteObject(brush); in OnPaint()
/external/chromium_org/content/test/plugin/
Dplugin_windowed_test.cc132 HBRUSH brush = CreateSolidBrush(RGB(255, 0, 0)); in WindowProc() local
133 HGDIOBJ orig = SelectObject(hdc, brush); in WindowProc()
138 DeleteObject(brush); in WindowProc()
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DSchedGui.py91 brush = wx.Brush(top_color, wx.SOLID)
92 dc.SetBrush(brush)
99 brush = wx.Brush(color, wx.SOLID)
100 dc.SetBrush(brush)
/external/chromium_org/chrome/browser/ui/views/frame/
Dbrowser_desktop_window_tree_host_win.cc231 HBRUSH brush = CreateSolidBrush(0); in PostHandleMSG() local
233 FillRect(dc, &rect, brush); in PostHandleMSG()
234 DeleteObject(brush); in PostHandleMSG()
/external/chromium_org/printing/
Demf_win_unittest.cc213 HBRUSH brush = static_cast<HBRUSH>(GetStockObject(BLACK_BRUSH)); in TEST() local
216 FillRect(emf.context(), &rect, brush); in TEST()
/external/chromium_org/skia/ext/
Dvector_platform_device_emf_win.cc756 LOGBRUSH brush = {0}; in CreatePen() local
757 brush.lbStyle = BS_SOLID; in CreatePen()
758 brush.lbColor = color; in CreatePen()
759 brush.lbHatch = 0; in CreatePen()
760 HPEN pen = ExtCreatePen(pen_style, stroke_width, &brush, 0, NULL); in CreatePen()
/external/pdfium/core/src/fxge/win32/
Dfx_win32_gdipext.cpp193 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreateSolidFill)(ARGB color, GpSolidFill **brush);
194 typedef GpStatus (WINGDIPAPI *FuncType_GdipFillPath)(GpGraphics *graphics, GpBrush *brush, GpPath *…
195 typedef GpStatus (WINGDIPAPI *FuncType_GdipDeleteBrush)(GpBrush *brush);
212 typedef GpStatus (WINGDIPAPI *FuncType_GdipFillRectangle)(GpGraphics *graphics, GpBrush *brush, REA…
243 …ONST UINT16 *text, INT length, GDIPCONST GpFont *font, GDIPCONST GpBrush *brush, GDIPCONST PointF …
260 …nt, GDIPCONST RectF *layoutRect, GDIPCONST GpStringFormat *stringFormat, GDIPCONST GpBrush *brush);
610 void *font, void* brush, void *positions, int flags, const void *matrix) in GdipDrawDriverString() argument
613 …aphics, (GDIPCONST UINT16 *)text, (INT)length, (GDIPCONST GpFont *)font, (GDIPCONST GpBrush*)brush, in GdipDrawDriverString()
Dwin32_int.h37 …ring(void *graphics, unsigned short *text, int length, void *font, void* brush, void *positions, …
/external/chromium_org/third_party/skia/src/device/xps/
DSkXPSDevice.cpp974 IXpsOMBrush** brush, in createXpsBrush() argument
978 HR(this->createXpsSolidColorBrush(skPaint.getColor(), 0xFF, brush)); in createXpsBrush()
998 HR(this->createXpsSolidColorBrush(color, alpha, brush)); in createXpsBrush()
1004 HR(this->createXpsSolidColorBrush(color, 0xFF, brush)); in createXpsBrush()
1017 HR(this->createXpsSolidColorBrush(color, alpha, brush)); in createXpsBrush()
1033 brush)); in createXpsBrush()
1042 brush)); in createXpsBrush()
1079 HRM(tileBrush->QueryInterface<IXpsOMBrush>(brush), "QI failed."); in createXpsBrush()
1090 HR(this->createXpsSolidColorBrush(skPaint.getColor(), 0xFF, brush)); in createXpsBrush()
/external/skia/src/device/xps/
DSkXPSDevice.cpp975 IXpsOMBrush** brush, in createXpsBrush() argument
979 HR(this->createXpsSolidColorBrush(skPaint.getColor(), 0xFF, brush)); in createXpsBrush()
999 HR(this->createXpsSolidColorBrush(color, alpha, brush)); in createXpsBrush()
1005 HR(this->createXpsSolidColorBrush(color, 0xFF, brush)); in createXpsBrush()
1018 HR(this->createXpsSolidColorBrush(color, alpha, brush)); in createXpsBrush()
1034 brush)); in createXpsBrush()
1043 brush)); in createXpsBrush()
1080 HRM(tileBrush->QueryInterface<IXpsOMBrush>(brush), "QI failed."); in createXpsBrush()
1091 HR(this->createXpsSolidColorBrush(skPaint.getColor(), 0xFF, brush)); in createXpsBrush()
/external/chromium_org/remoting/host/
Ddisconnect_window_win.cc216 base::win::ScopedSelectObject brush(hdc, GetStockObject(NULL_BRUSH)); in OnDialogMessage() local
/external/chromium_org/ui/native_theme/
Dnative_theme_win.cc789 HBRUSH brush = GetSysColorBrush(COLOR_3DDKSHADOW); in PaintButton() local
790 if (brush) { in PaintButton()
791 FrameRect(hdc, rect, brush); in PaintButton()
/external/chromium_org/third_party/d3/src/
Dd3.js8824 d3.svg.brush = function() { function
8825 …var event = d3_eventDispatch(brush, "brushstart", "brush", "brushend"), x = null, y = null, xExten…
8826 function brush(g) { function
8843 resize.style("display", brush.empty() ? "none" : null);
8858 brush.event = function(g) {
9024 …g.style("pointer-events", "all").selectAll(".resize").style("display", brush.empty() ? "none" : nu…
9033 brush.x = function(z) {
9037 return brush;
9039 brush.y = function(z) {
9043 return brush;
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/
Den-US_klex.pkb187 )8J!+L'FQbroadA broadcastsebroader"broke3bronzeA brownies )8J!7FAQ browningFbrush…
/external/chromium_org/third_party/sqlite/src/test/
Dfts1porter.test2699 brush brush
2700 brushes brush
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/
Den-US_lexpos.utf3426 N^V "brush" :G2P
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-GB/
Den-GB_lexpos.utf3860 N^V "brush" :G2P
/external/guava/guava-tests/test/com/google/common/io/testdata/
Dalice_in_wonderland.txt2058 Seven flung down his brush, and had just begun `Well, of all
/external/srec/config/en.us/dictionary/
Dlarge.ok3817 brush bruS