Home
last modified time | relevance | path

Searched refs:foreground (Results 1 – 25 of 187) sorted by relevance

12345678

/external/python/cpython3/Lib/idlelib/
Dconfig-highlight.def5 normal-foreground= #000000
7 keyword-foreground= #ff7700
9 builtin-foreground= #900090
11 comment-foreground= #dd0000
13 string-foreground= #00aa00
15 definition-foreground= #0000ff
17 hilite-foreground= #000000
19 break-foreground= black
21 hit-foreground= #ffffff
23 error-foreground= #000000
[all …]
Dsidebar.py74 self._update_colors(foreground=colors['foreground'],
77 def _update_colors(self, foreground, background): argument
79 fg=foreground, bg=background,
80 selectforeground=foreground, selectbackground=background,
282 self._update_colors(foreground=colors['foreground'],
/external/python/cpython2/Lib/idlelib/
Dconfig-highlight.def5 normal-foreground= #000000
7 keyword-foreground= #ff7700
9 builtin-foreground= #900090
11 comment-foreground= #dd0000
13 string-foreground= #00aa00
15 definition-foreground= #0000ff
17 hilite-foreground= #000000
19 break-foreground= black
21 hit-foreground= #ffffff
23 error-foreground= #000000
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/offline/
DDownloadService.java296 boolean foreground) { in buildAddDownloadIntent() argument
297 return buildAddDownloadIntent(context, clazz, downloadRequest, STOP_REASON_NONE, foreground); in buildAddDownloadIntent()
316 boolean foreground) { in buildAddDownloadIntent() argument
317 return getIntent(context, clazz, ACTION_ADD_DOWNLOAD, foreground) in buildAddDownloadIntent()
332 Context context, Class<? extends DownloadService> clazz, String id, boolean foreground) { in buildRemoveDownloadIntent() argument
333 return getIntent(context, clazz, ACTION_REMOVE_DOWNLOAD, foreground) in buildRemoveDownloadIntent()
346 Context context, Class<? extends DownloadService> clazz, boolean foreground) { in buildRemoveAllDownloadsIntent() argument
347 return getIntent(context, clazz, ACTION_REMOVE_ALL_DOWNLOADS, foreground); in buildRemoveAllDownloadsIntent()
359 Context context, Class<? extends DownloadService> clazz, boolean foreground) { in buildResumeDownloadsIntent() argument
360 return getIntent(context, clazz, ACTION_RESUME_DOWNLOADS, foreground); in buildResumeDownloadsIntent()
[all …]
/external/skqp/src/effects/imagefilters/
DSkXfermodeImageFilter.cpp49 sk_sp<SkSpecialImage> foreground,
77 sk_sp<SkImageFilter> foreground, in Make() argument
79 sk_sp<SkImageFilter> inputs[2] = { std::move(background), std::move(foreground) }; in Make()
118 sk_sp<SkSpecialImage> foreground(this->filterInput(1, source, ctx, &foregroundOffset)); in onFilterImage() local
121 if (foreground) { in onFilterImage()
123 foreground->width(), foreground->height()); in onFilterImage()
149 foreground, foregroundOffset, in onFilterImage()
173 this->drawForeground(canvas, foreground.get(), foregroundBounds); in onFilterImage()
227 auto foreground = xformer->apply(this->getInput(1)); in onMakeColorSpace() local
228 if (background.get() != this->getInput(0) || foreground.get() != this->getInput(1)) { in onMakeColorSpace()
[all …]
DSkArithmeticImageFilter.cpp65 sk_sp<SkSpecialImage> foreground,
172 sk_sp<SkSpecialImage> foreground(this->filterInput(1, source, ctx, &foregroundOffset)); in onFilterImage() local
175 if (foreground) { in onFilterImage()
177 foreground->width(), foreground->height()); in onFilterImage()
201 return this->filterImageGPU(source, background, backgroundOffset, foreground, in onFilterImage()
224 this->drawForeground(canvas, foreground.get(), foregroundBounds); in onFilterImage()
289 sk_sp<SkSpecialImage> foreground, in filterImageGPU() argument
303 if (foreground) { in filterImageGPU()
304 foregroundProxy = foreground->asTextureProxyRef(context); in filterImageGPU()
328 SkIRect fgSubset = foreground->subset(); in filterImageGPU()
[all …]
/external/skia/src/effects/imagefilters/
DSkBlendImageFilter.cpp48 sk_sp<SkSpecialImage> foreground,
70 sk_sp<SkImageFilter> foreground, in Blend() argument
72 sk_sp<SkImageFilter> inputs[2] = { std::move(background), std::move(foreground) }; in Blend()
112 sk_sp<SkSpecialImage> foreground(this->filterInput(1, ctx, &foregroundOffset)); in onFilterImage() local
115 if (foreground) { in onFilterImage()
117 foreground->width(), foreground->height()); in onFilterImage()
142 foreground, foregroundOffset, bounds); in onFilterImage()
165 this->drawForeground(canvas, foreground.get(), foregroundBounds); in onFilterImage()
237 sk_sp<SkSpecialImage> foreground, in filterImageGPU() argument
250 if (foreground) { in filterImageGPU()
[all …]
DSkArithmeticImageFilter.cpp53 sk_sp<SkSpecialImage> foreground,
78 sk_sp<SkImageFilter> background, sk_sp<SkImageFilter> foreground, in Arithmetic() argument
99 std::move(foreground), cropRect); in Arithmetic()
102 sk_sp<SkImageFilter> inputs[2] = {std::move(background), std::move(foreground)}; in Arithmetic()
197 sk_sp<SkSpecialImage> foreground(this->filterInput(1, ctx, &foregroundOffset)); in onFilterImage() local
200 if (foreground) { in onFilterImage()
202 foreground->width(), foreground->height()); in onFilterImage()
226 return this->filterImageGPU(ctx, background, backgroundOffset, foreground, in onFilterImage()
249 this->drawForeground(canvas, foreground.get(), foregroundBounds); in onFilterImage()
314 sk_sp<SkSpecialImage> foreground, in filterImageGPU() argument
[all …]
/external/skia/modules/svg/src/
DSkSVGFeComposite.cpp52 const sk_sp<SkImageFilter> foreground = fctx.resolveInput(ctx, this->getIn(), colorspace); in onMakeImageFilter() local
56 fK1, fK2, fK3, fK4, enforcePMColor, background, foreground, cropRect); in onMakeImageFilter()
59 BlendModeForOperator(fOperator), background, foreground, cropRect); in onMakeImageFilter()
DSkSVGFeBlend.cpp44 const sk_sp<SkImageFilter> foreground = fctx.resolveInput(ctx, this->getIn(), colorspace); in onMakeImageFilter() local
45 return SkImageFilters::Blend(blendMode, background, foreground, cropRect); in onMakeImageFilter()
/external/libfuse/lib/
Dhelper.c39 FUSE_HELPER_OPT("-d", foreground),
40 FUSE_HELPER_OPT("debug", foreground),
43 FUSE_HELPER_OPT("-f", foreground),
225 int fuse_daemonize(int foreground) in fuse_daemonize() argument
227 if (!foreground) { in fuse_daemonize()
327 if (fuse_daemonize(opts.foreground) != 0) { in fuse_main_real()
/external/skia/experimental/sktext/src/
DProcessor.cpp83 …onst char* text, SkCanvas* canvas, TextFormatStyle textFormat, SkColor foreground, SkColor backgro… in drawText() argument
84 …return drawText(text, canvas, textFormat, foreground, background, fontFamily, fontSize, fontStyle,… in drawText()
88 …TextFormatStyle textFormat, SkColor foreground, SkColor background, const SkString& fontFamily, Sk… in drawText() argument
108 SkPaint foregroundPaint; foregroundPaint.setColor(foreground); in drawText()
129 SkPaint* foreground = new SkPaint(); in sortDecorBlocks() local
130 foreground->setColor(SK_ColorBLACK); in sortDecorBlocks()
132 defaultBlocks.emplace(foreground, nullptr, TextRange(0, fText.size())); in sortDecorBlocks()
/external/skqp/tests/
DImageFilterTest.cpp1872 sk_sp<SkImageFilter> foreground(new FixedBoundsImageFilter(foreground_rect)); in DEF_TEST() local
1896 background, foreground, nullptr)); in DEF_TEST()
1929 sk_sp<SkImageFilter> foreground, in test_arithmetic_bounds() argument
1932 SkArithmeticImageFilter::Make(k1, k2, k3, k4, false, background, foreground, crop)); in test_arithmetic_bounds()
1943 sk_sp<SkImageFilter> foreground(new FixedBoundsImageFilter(foreground_rect)); in test_arithmetic_combinations() local
1950 test_arithmetic_bounds(reporter, 0, 0, 0, 0, background, foreground, nullptr, in test_arithmetic_combinations()
1952 test_arithmetic_bounds(reporter, 0, 0, 0, v, background, foreground, nullptr, union_rect); in test_arithmetic_combinations()
1953 test_arithmetic_bounds(reporter, 0, 0, v, 0, background, foreground, nullptr, background_rect); in test_arithmetic_combinations()
1954 test_arithmetic_bounds(reporter, 0, 0, v, v, background, foreground, nullptr, union_rect); in test_arithmetic_combinations()
1955 test_arithmetic_bounds(reporter, 0, v, 0, 0, background, foreground, nullptr, foreground_rect); in test_arithmetic_combinations()
[all …]
/external/skia/tests/
DImageFilterTest.cpp1816 sk_sp<SkImageFilter> foreground(new FixedBoundsImageFilter(foreground_rect)); in DEF_TEST() local
1840 background, foreground, nullptr)); in DEF_TEST()
1873 sk_sp<SkImageFilter> foreground, in test_arithmetic_bounds() argument
1876 SkImageFilters::Arithmetic(k1, k2, k3, k4, false, background, foreground, crop)); in test_arithmetic_bounds()
1887 sk_sp<SkImageFilter> foreground(new FixedBoundsImageFilter(fgRect)); in test_arithmetic_combinations() local
1894 test_arithmetic_bounds(reporter, 0, 0, 0, 0, background, foreground, nullptr, in test_arithmetic_combinations()
1896 test_arithmetic_bounds(reporter, 0, 0, 0, v, background, foreground, nullptr, unionRect); in test_arithmetic_combinations()
1897 test_arithmetic_bounds(reporter, 0, 0, v, 0, background, foreground, nullptr, bgRect); in test_arithmetic_combinations()
1898 test_arithmetic_bounds(reporter, 0, 0, v, v, background, foreground, nullptr, unionRect); in test_arithmetic_combinations()
1899 test_arithmetic_bounds(reporter, 0, v, 0, 0, background, foreground, nullptr, fgRect); in test_arithmetic_combinations()
[all …]
/external/skia/experimental/sktext/include/
DProcessor.h51 DecorBlock(const SkPaint* foreground, const SkPaint* background, TextRange range) in DecorBlock() argument
53 , fForegroundColor(foreground) in DecorBlock()
162 …onst char* text, SkCanvas* canvas, TextFormatStyle textFormat, SkColor foreground, SkColor backgro…
164 …TextFormatStyle textFormat, SkColor foreground, SkColor background, const SkString& fontFamily, Sk…
/external/fmtlib/include/fmt/
Dcolor.h329 friend FMT_CONSTEXPR_DECL text_style fg(detail::color_type foreground)
341 FMT_CONSTEXPR text_style fg(detail::color_type foreground) FMT_NOEXCEPT { in fg() argument
342 return text_style(/*is_foreground=*/true, foreground); in fg()
432 detail::color_type foreground) FMT_NOEXCEPT { in make_foreground_color() argument
433 return ansi_color_escape<Char>(foreground, detail::data::foreground_color); in make_foreground_color()
484 auto foreground = detail::make_foreground_color<Char>(ts.get_foreground()); in vformat_to() local
485 buf.append(foreground.begin(), foreground.end()); in vformat_to()
/external/perfetto/test/trace_processor/memory/
Dandroid_mem_by_priority.out52 priority: "foreground"
127 priority: "foreground"
/external/python/cpython2/Demo/tkinter/matt/
Dcanvas-mult-item-sel.py46 self.QUIT = Button(self, text='QUIT', foreground='red',
57 self.button = Button(self, text="make a new dot", foreground="blue",
/external/python/cpython2/Tools/pynche/
DTextViewer.py42 foreground=optiondb.get('TEXTFG', 'white'),
140 l.configure(foreground=fg)
168 text.configure(foreground=colorname)
/external/python/cpython3/Tools/pynche/
DTextViewer.py42 foreground=optiondb.get('TEXTFG', 'white'),
140 l.configure(foreground=fg)
168 text.configure(foreground=colorname)
/external/skia/gm/
Dxfermodeimagefilter.cpp122 sk_sp<SkImageFilter> foreground(SkImageFilters::Image(std::move(bitmapImage))); in onDraw() local
123 sk_sp<SkImageFilter> offsetForeground(SkImageFilters::Offset(4, -4, foreground)); in onDraw()
166 sk_sp<SkImageFilter> cropped(SkImageFilters::Offset(0, 0, foreground, &cropRect)); in onDraw()
/external/crosvm/ci/vm_tools/
Dwait_for_vm_with_timeout6 if ! timeout --foreground 180s ${0%/*}/wait_for_vm; then
/external/antlr/runtime/JavaScript/tests/functional/
Drhino-python.input39 styles.add('error', parent=basic, foreground=colors.red)
40 styles.add('output', parent=basic, foreground=colors.blue)
41 styles.add('input', parent=basic, foreground=colors.black)
42 styles.add('prompt', parent=basic, foreground=colors.purple)
/external/skqp/gm/
Dxfermodeimagefilter.cpp116 sk_sp<SkImageFilter> foreground(SkImageSource::Make(std::move(bitmapImage))); in onDraw() local
119 foreground)); in onDraw()
172 sk_sp<SkImageFilter> cropped(SkOffsetImageFilter::Make(0, 0, foreground, &cropRect)); in onDraw()
/external/perfetto/
Dtraced_perf.rc22 # * foreground task group as unwinding based on minidebug info is a heavyweight action.
30 writepid /dev/cpuset/foreground/tasks

12345678