Home
last modified time | relevance | path

Searched refs:aDT (Results 1 – 25 of 413) sorted by relevance

12345678910>>...17

/dports/www/firefox-esr/firefox-91.8.0/gfx/layers/basic/
H A DBasicLayersImpl.cpp76 aDT->PushClipRect(aRect); in FillRectWithMask()
81 aDT->SetTransform(oldTransform); in FillRectWithMask()
82 aDT->PopClip(); in FillRectWithMask()
108 aDT->PushClipRect(aRect); in FillRectWithMask()
125 aDT->PopClip(); in FillRectWithMask()
129 aDT->FillRect( in FillRectWithMask()
158 aDT->PushClipRect(aClipRect); in FillPathWithMask()
164 aDT->PopClip(); in FillPathWithMask()
177 aDT->PushClipRect(aClipRect); in FillPathWithMask()
193 aDT->PopClip(); in FillPathWithMask()
[all …]
H A DBasicCanvasLayer.cpp30 void BasicCanvasLayer::Paint(DrawTarget* aDT, const Point& aDeviceOffset, in Paint() argument
45 oldTM = Some(aDT->GetTransform()); in Paint()
46 aDT->SetTransform(Matrix(*oldTM) in Paint()
52 aDT, aDeviceOffset, Rect(0, 0, mBounds.Width(), mBounds.Height()), in Paint()
58 aDT->SetTransform(*oldTM); in Paint()
H A DBasicColorLayer.cpp44 void Paint(DrawTarget* aDT, const gfx::Point& aDeviceOffset, in Paint() argument
51 MaybeSnapToDevicePixels(snapped, *aDT, true); in Paint()
54 aDT->PushClipRect(snapped); in Paint()
56 aDT, aDeviceOffset, snapped, mColor, in Paint()
59 aDT->PopClip(); in Paint()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/layers/basic/
H A DBasicLayersImpl.cpp76 aDT->PushClipRect(aRect); in FillRectWithMask()
81 aDT->SetTransform(oldTransform); in FillRectWithMask()
82 aDT->PopClip(); in FillRectWithMask()
108 aDT->PushClipRect(aRect); in FillRectWithMask()
125 aDT->PopClip(); in FillRectWithMask()
129 aDT->FillRect( in FillRectWithMask()
158 aDT->PushClipRect(aClipRect); in FillPathWithMask()
164 aDT->PopClip(); in FillPathWithMask()
177 aDT->PushClipRect(aClipRect); in FillPathWithMask()
193 aDT->PopClip(); in FillPathWithMask()
[all …]
H A DBasicColorLayer.cpp44 void Paint(DrawTarget* aDT, const gfx::Point& aDeviceOffset, in Paint() argument
51 MaybeSnapToDevicePixels(snapped, *aDT, true); in Paint()
54 aDT->PushClipRect(snapped); in Paint()
56 aDT, aDeviceOffset, snapped, mColor, in Paint()
59 aDT->PopClip(); in Paint()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/layers/basic/
H A DBasicLayersImpl.cpp76 aDT->PushClipRect(aRect); in FillRectWithMask()
81 aDT->SetTransform(oldTransform); in FillRectWithMask()
82 aDT->PopClip(); in FillRectWithMask()
108 aDT->PushClipRect(aRect); in FillRectWithMask()
125 aDT->PopClip(); in FillRectWithMask()
129 aDT->FillRect( in FillRectWithMask()
158 aDT->PushClipRect(aClipRect); in FillPathWithMask()
164 aDT->PopClip(); in FillPathWithMask()
177 aDT->PushClipRect(aClipRect); in FillPathWithMask()
193 aDT->PopClip(); in FillPathWithMask()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/layers/basic/
H A DBasicLayersImpl.cpp75 aDT->PushClipRect(aRect); in FillRectWithMask()
80 aDT->SetTransform(oldTransform); in FillRectWithMask()
81 aDT->PopClip(); in FillRectWithMask()
107 aDT->PushClipRect(aRect); in FillRectWithMask()
124 aDT->PopClip(); in FillRectWithMask()
128 aDT->FillRect( in FillRectWithMask()
157 aDT->PushClipRect(aClipRect); in FillPathWithMask()
163 aDT->PopClip(); in FillPathWithMask()
176 aDT->PushClipRect(aClipRect); in FillPathWithMask()
192 aDT->PopClip(); in FillPathWithMask()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/2d/
H A DBorrowedContext.h35 explicit BorrowedCairoContext(DrawTarget* aDT) : mDT(aDT) { in BorrowedCairoContext() argument
42 cairo_t* Init(DrawTarget* aDT) { in Init() argument
44 mDT = aDT; in Init()
87 explicit BorrowedXlibDrawable(DrawTarget* aDT) in BorrowedXlibDrawable() argument
94 Init(aDT); in BorrowedXlibDrawable()
100 bool Init(DrawTarget* aDT);
143 explicit BorrowedCGContext(DrawTarget* aDT) : mDT(aDT) { in BorrowedCGContext() argument
145 cg = BorrowCGContextFromDrawTarget(aDT); in BorrowedCGContext()
151 CGContextRef Init(DrawTarget* aDT) { in Init() argument
154 mDT = aDT; in Init()
[all …]
H A DDrawCommands.h261 aDT->ClearRect(mRect); in ExecuteOnDT()
502 aDT->Fill(mPath, mPattern, mOptions); in ExecuteOnDT()
670 aDT->Mask(mSource, mMask, mOptions); in ExecuteOnDT()
738 aDT->PushClip(mPath); in ExecuteOnDT()
763 aDT->PushClipRect(mRect); in ExecuteOnDT()
834 aDT->PopClip(); in ExecuteOnDT()
854 aDT->PopLayer(); in ExecuteOnDT()
880 aDT->SetTransform(mTransform); in ExecuteOnDT()
937 aDT->Flush(); in ExecuteOnDT()
957 aDT->Blur(mBlur); in ExecuteOnDT()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/2d/
H A DBorrowedContext.h35 explicit BorrowedCairoContext(DrawTarget* aDT) : mDT(aDT) { in BorrowedCairoContext() argument
42 cairo_t* Init(DrawTarget* aDT) { in Init() argument
44 mDT = aDT; in Init()
87 explicit BorrowedXlibDrawable(DrawTarget* aDT) in BorrowedXlibDrawable() argument
94 Init(aDT); in BorrowedXlibDrawable()
100 bool Init(DrawTarget* aDT);
143 explicit BorrowedCGContext(DrawTarget* aDT) : mDT(aDT) { in BorrowedCGContext() argument
145 cg = BorrowCGContextFromDrawTarget(aDT); in BorrowedCGContext()
151 CGContextRef Init(DrawTarget* aDT) { in Init() argument
154 mDT = aDT; in Init()
[all …]
H A DDrawCommands.h261 aDT->ClearRect(mRect); in ExecuteOnDT()
502 aDT->Fill(mPath, mPattern, mOptions); in ExecuteOnDT()
670 aDT->Mask(mSource, mMask, mOptions); in ExecuteOnDT()
738 aDT->PushClip(mPath); in ExecuteOnDT()
763 aDT->PushClipRect(mRect); in ExecuteOnDT()
834 aDT->PopClip(); in ExecuteOnDT()
854 aDT->PopLayer(); in ExecuteOnDT()
880 aDT->SetTransform(mTransform); in ExecuteOnDT()
937 aDT->Flush(); in ExecuteOnDT()
957 aDT->Blur(mBlur); in ExecuteOnDT()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/2d/
H A DBorrowedContext.h35 explicit BorrowedCairoContext(DrawTarget* aDT) : mDT(aDT) { in BorrowedCairoContext() argument
42 cairo_t* Init(DrawTarget* aDT) { in Init() argument
44 mDT = aDT; in Init()
87 explicit BorrowedXlibDrawable(DrawTarget* aDT) in BorrowedXlibDrawable() argument
94 Init(aDT); in BorrowedXlibDrawable()
100 bool Init(DrawTarget* aDT);
143 explicit BorrowedCGContext(DrawTarget* aDT) : mDT(aDT) { in BorrowedCGContext() argument
145 cg = BorrowCGContextFromDrawTarget(aDT); in BorrowedCGContext()
151 CGContextRef Init(DrawTarget* aDT) { in Init() argument
154 mDT = aDT; in Init()
[all …]
H A DDrawCommands.h261 aDT->ClearRect(mRect); in ExecuteOnDT()
502 aDT->Fill(mPath, mPattern, mOptions); in ExecuteOnDT()
670 aDT->Mask(mSource, mMask, mOptions); in ExecuteOnDT()
738 aDT->PushClip(mPath); in ExecuteOnDT()
763 aDT->PushClipRect(mRect); in ExecuteOnDT()
834 aDT->PopClip(); in ExecuteOnDT()
854 aDT->PopLayer(); in ExecuteOnDT()
880 aDT->SetTransform(mTransform); in ExecuteOnDT()
937 aDT->Flush(); in ExecuteOnDT()
957 aDT->Blur(mBlur); in ExecuteOnDT()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/2d/
H A DBorrowedContext.h35 explicit BorrowedCairoContext(DrawTarget *aDT) : mDT(aDT) { in BorrowedCairoContext() argument
42 cairo_t *Init(DrawTarget *aDT) { in Init() argument
44 mDT = aDT; in Init()
87 explicit BorrowedXlibDrawable(DrawTarget *aDT) in BorrowedXlibDrawable() argument
94 Init(aDT); in BorrowedXlibDrawable()
100 bool Init(DrawTarget *aDT);
143 explicit BorrowedCGContext(DrawTarget *aDT) : mDT(aDT) { in BorrowedCGContext() argument
145 cg = BorrowCGContextFromDrawTarget(aDT); in BorrowedCGContext()
151 CGContextRef Init(DrawTarget *aDT) { in Init() argument
154 mDT = aDT; in Init()
[all …]
H A DDrawCommands.h249 aDT->ClearRect(mRect); in ExecuteOnDT()
276 virtual void ExecuteOnDT(DrawTarget* aDT, in ExecuteOnDT() argument
429 aDT->Fill(mPath, mPattern, mOptions); in ExecuteOnDT()
646 aDT->Mask(mSource, mMask, mOptions); in ExecuteOnDT()
712 aDT->PushClip(mPath); in ExecuteOnDT()
736 aDT->PushClipRect(mRect); in ExecuteOnDT()
804 aDT->PopClip(); in ExecuteOnDT()
822 aDT->PopLayer(); in ExecuteOnDT()
847 aDT->SetTransform(mTransform); in ExecuteOnDT()
900 aDT->Flush(); in ExecuteOnDT()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/2d/
H A DBorrowedContext.h38 explicit BorrowedCairoContext(DrawTarget *aDT) in BorrowedCairoContext() argument
39 : mDT(aDT) in BorrowedCairoContext()
47 cairo_t *Init(DrawTarget *aDT) in Init() argument
50 mDT = aDT; in Init()
105 Init(aDT); in BorrowedXlibDrawable()
111 bool Init(DrawTarget *aDT);
161 : mDT(aDT) in BorrowedCGContext()
164 cg = BorrowCGContextFromDrawTarget(aDT); in BorrowedCGContext()
170 CGContextRef Init(DrawTarget *aDT) in Init() argument
174 mDT = aDT; in Init()
[all …]
H A DDrawCommand.h186 aDT->ClearRect(mRect); in ExecuteOnDT()
237 aDT->FillRect(mRect, mPattern, mOptions); in ExecuteOnDT()
330 aDT->Fill(mPath, mPattern, mOptions); in ExecuteOnDT()
468 aDT->Mask(mSource, mMask, mOptions); in ExecuteOnDT()
494 aDT->MaskSurface(mSource, mMask, mOffset, mOptions); in ExecuteOnDT()
515 aDT->PushClip(mPath); in ExecuteOnDT()
533 aDT->PushClipRect(mRect); in ExecuteOnDT()
550 aDT->PopClip(); in ExecuteOnDT()
566 aDT->SetTransform(mTransform * (*aMatrix)); in ExecuteOnDT()
568 aDT->SetTransform(mTransform); in ExecuteOnDT()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/layers/basic/
H A DBasicLayersImpl.cpp76 FillRectWithMask(DrawTarget* aDT, in FillRectWithMask() argument
84 aDT->PushClipRect(aRect); in FillRectWithMask()
89 aDT->SetTransform(oldTransform); in FillRectWithMask()
90 aDT->PopClip(); in FillRectWithMask()
97 FillRectWithMask(DrawTarget* aDT, in FillRectWithMask() argument
115 FillRectWithMask(DrawTarget* aDT, in FillRectWithMask() argument
126 aDT->PushClipRect(aRect); in FillRectWithMask()
141 aDT->SetTransform(oldTransform); in FillRectWithMask()
142 aDT->PopClip(); in FillRectWithMask()
146 aDT->FillRect(aRect, in FillRectWithMask()
[all …]
/dports/www/firefox/firefox-99.0/gfx/2d/
H A DBorrowedContext.h37 explicit BorrowedXlibDrawable(DrawTarget* aDT) in BorrowedXlibDrawable() argument
43 Init(aDT); in BorrowedXlibDrawable()
49 bool Init(DrawTarget* aDT);
89 explicit BorrowedCGContext(DrawTarget* aDT) : mDT(aDT) { in BorrowedCGContext() argument
90 MOZ_ASSERT(aDT, "Caller should check for nullptr"); in BorrowedCGContext()
91 cg = BorrowCGContextFromDrawTarget(aDT); in BorrowedCGContext()
97 CGContextRef Init(DrawTarget* aDT) { in Init() argument
98 MOZ_ASSERT(aDT, "Caller should check for nullptr"); in Init()
100 mDT = aDT; in Init()
101 cg = BorrowCGContextFromDrawTarget(aDT); in Init()
[all …]
/dports/www/firefox/firefox-99.0/dom/canvas/
H A DSourceSurfaceWebgl.cpp21 bool SourceSurfaceWebgl::Init(DrawTargetWebgl* aDT) { in Init() argument
23 MOZ_ASSERT(aDT); in Init()
24 mDT = aDT; in Init()
25 mSharedContext = aDT->mSharedContext; in Init()
26 mSize = aDT->GetSize(); in Init()
27 mFormat = aDT->GetFormat(); in Init()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/src/
H A DFilterSupport.cpp102 Unpremultiply(DrawTarget* aDT, FilterNode* aInput)
113 Premultiply(DrawTarget* aDT, FilterNode* aInput)
124 LinearRGBToSRGB(DrawTarget* aDT, FilterNode* aInput)
142 SRGBToLinearRGB(DrawTarget* aDT, FilterNode* aInput)
212 Clear(DrawTarget* aDT)
223 ForSurface(DrawTarget* aDT, SourceSurface* aSurface, in proto_reg_handoff_ipsictl()
237 ToAlpha(DrawTarget* aDT, FilterNode* aInput)
271 FilterCachedColorModels(DrawTarget* aDT,
296 : mDT(aDT)
701 DrawTarget* aDT,
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/src/
H A DFilterSupport.cpp117 aDT->CreateFilter(FilterType::DISCRETE_TRANSFER); in LinearRGBToSRGB()
138 aDT->CreateFilter(FilterType::DISCRETE_TRANSFER); in SRGBToLinearRGB()
156 static already_AddRefed<FilterNode> Crop(DrawTarget* aDT, in Crop() argument
221 DrawTarget* aDT, SourceSurface* aSurface, in ForSurface() argument
238 aDT->CreateFilter(FilterType::DISCRETE_TRANSFER); in ToAlpha()
294 : mDT(aDT), mOriginalColorModel(aOriginalColorModel) { in FilterCachedColorModels()
663 filter = aDT->CreateFilter(FilterType::BLEND); in FilterNodeFromPrimitiveDescription()
833 return FilterWrappers::Offset(aDT, aSources[0], in FilterNodeFromPrimitiveDescription()
886 return FilterWrappers::Offset(aDT, filter, in FilterNodeFromPrimitiveDescription()
1094 return FilterWrappers::ToAlpha(aDT, aSources[0]); in FilterNodeFromPrimitiveDescription()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/ucb/source/ucp/webdav/
H A DDateTimeHelper.cxx33 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in ISO8601_To_DateTime() local
39 int n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lfZ", in ISO8601_To_DateTime()
48 n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lf+%02d:%02d", in ISO8601_To_DateTime()
58 n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lf-%02d:%02d", in ISO8601_To_DateTime()
174 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in RFC2068_To_DateTime() local
177 found = sscanf (aDT.getStr(), "%3s, %2d %3s %4d %2d:%2d:%2d GMT", in RFC2068_To_DateTime()
182 found = sscanf (aDT.getStr(), "%3s, %2d-%3s-%2d %2d:%2d:%2d GMT", in RFC2068_To_DateTime()
189 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in RFC2068_To_DateTime() local
192 found = sscanf (aDT.getStr(), "%3s %3s %d %2d:%2d:%2d %4d", in RFC2068_To_DateTime()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/ucb/source/ucp/webdav-neon/
H A DDateTimeHelper.cxx42 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in ISO8601_To_DateTime() local
48 int n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lfZ", in ISO8601_To_DateTime()
57 n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lf+%02d:%02d", in ISO8601_To_DateTime()
67 n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lf-%02d:%02d", in ISO8601_To_DateTime()
161 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in RFC2068_To_DateTime() local
164 found = sscanf (aDT.getStr(), "%3s, %2d %3s %4d %2d:%2d:%2d GMT", in RFC2068_To_DateTime()
169 found = sscanf (aDT.getStr(), "%3s, %2d-%3s-%2d %2d:%2d:%2d GMT", in RFC2068_To_DateTime()
176 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in RFC2068_To_DateTime() local
179 found = sscanf (aDT.getStr(), "%3s %3s %d %2d:%2d:%2d %4d", in RFC2068_To_DateTime()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/ucb/source/ucp/webdav/
H A DDateTimeHelper.cxx33 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in ISO8601_To_DateTime() local
39 int n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lfZ", in ISO8601_To_DateTime()
48 n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lf+%02d:%02d", in ISO8601_To_DateTime()
58 n = sscanf( aDT.getStr(), "%04d-%02d-%02dT%02d:%02d:%lf-%02d:%02d", in ISO8601_To_DateTime()
174 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in RFC2068_To_DateTime() local
177 found = sscanf (aDT.getStr(), "%3s, %2d %3s %4d %2d:%2d:%2d GMT", in RFC2068_To_DateTime()
182 found = sscanf (aDT.getStr(), "%3s, %2d-%3s-%2d %2d:%2d:%2d GMT", in RFC2068_To_DateTime()
189 OString aDT (s.getStr(), s.getLength(), RTL_TEXTENCODING_ASCII_US); in RFC2068_To_DateTime() local
192 found = sscanf (aDT.getStr(), "%3s %3s %d %2d:%2d:%2d %4d", in RFC2068_To_DateTime()

12345678910>>...17