HomeSort by relevance Sort by last modified time
    Searched refs:foreground (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/chromium/chrome/browser/tabs/
tab_strip_model_delegate.h 42 virtual TabContentsWrapper* AddBlankTab(bool foreground) = 0;
43 virtual TabContentsWrapper* AddBlankTabAt(int index, bool foreground) = 0;
default_tab_handler.h 28 virtual TabContentsWrapper* AddBlankTab(bool foreground);
29 virtual TabContentsWrapper* AddBlankTabAt(int index, bool foreground);
61 bool foreground);
default_tab_handler.cc 37 TabContentsWrapper* DefaultTabHandler::AddBlankTab(bool foreground) {
39 return delegate_->AsBrowser()->AddBlankTab(foreground);
43 bool foreground) {
44 return delegate_->AsBrowser()->AddBlankTabAt(index, foreground);
139 bool foreground) {
140 delegate_->AsBrowser()->TabInsertedAt(contents, index, foreground);
tab_strip_model_order_controller.h 34 // transition and foreground flag to figure out how it was opened.
37 bool foreground);
tab_strip_model_observer.cc 9 bool foreground) {
tab_strip_model_observer.h 42 // index. |foreground| is whether or not it was opened in the foreground
46 bool foreground);
  /external/chromium_org/third_party/skia/src/effects/
SkXfermodeImageFilter.cpp 24 SkImageFilter* foreground)
25 : INHERITED(background, foreground), fMode(mode) {
48 SkBitmap background = src, foreground = src; local
58 !foregroundInput->filterImage(proxy, src, ctm, &foreground, &foregroundOffset)) {
68 canvas.drawBitmap(foreground,
91 SkBitmap foreground; local
93 if (!SkImageFilterUtils::GetInputResultGPU(getInput(1), proxy, src, ctm, &foreground,
97 GrTexture* foregroundTex = foreground.getTexture();
  /external/chromium_org/ui/gfx/
color_utils.h 59 // |alpha| == 0) to |foreground| (for |alpha| == 255). The alpha channels of
62 UI_EXPORT SkColor AlphaBlend(SkColor foreground, SkColor background,
70 // Given an opaque foreground and background color, try to return a foreground
72 // foreground color and then picking whichever foreground color has higher
77 // NOTE: This won't do anything but waste time if the supplied foreground color
79 UI_EXPORT SkColor GetReadableColor(SkColor foreground, SkColor background);
color_utils.cc 209 SkColor AlphaBlend(SkColor foreground, SkColor background, SkAlpha alpha) {
213 return foreground;
215 int f_alpha = SkColorGetA(foreground);
225 double r = (SkColorGetR(foreground) * f_weight +
227 double g = (SkColorGetG(foreground) * f_weight +
229 double b = (SkColorGetB(foreground) * f_weight +
246 SkColor GetReadableColor(SkColor foreground, SkColor background) {
247 const SkColor foreground2 = LumaInvertColor(foreground);
249 return (ContrastRatio(RelativeLuminance(foreground), background_luminance) >=
251 foreground : foreground2
    [all...]
  /external/skia/src/effects/
SkXfermodeImageFilter.cpp 24 SkImageFilter* foreground)
25 : INHERITED(background, foreground), fMode(mode) {
48 SkBitmap background = src, foreground = src; local
58 !foregroundInput->filterImage(proxy, src, ctm, &foreground, &foregroundOffset)) {
68 canvas.drawBitmap(foreground,
91 SkBitmap foreground; local
93 if (!SkImageFilterUtils::GetInputResultGPU(getInput(1), proxy, src, ctm, &foreground,
97 GrTexture* foregroundTex = foreground.getTexture();
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_order_controller.h 23 // transition and foreground flag to figure out how it was opened.
25 bool foreground);
tab_strip_model_delegate.h 52 virtual void AddBlankTabAt(int index, bool foreground) = 0;
tab_strip_model_observer.cc 11 bool foreground) {
test_tab_strip_model_delegate.cc 16 void TestTabStripModelDelegate::AddBlankTabAt(int index, bool foreground) {
test_tab_strip_model_delegate.h 19 virtual void AddBlankTabAt(int index, bool foreground) OVERRIDE;
  /external/opencv/cvaux/src/
cvbgfg_common.cpp 50 IplImage* tmp_image = cvCreateImage(cvSize(bg_model->foreground->width,bg_model->foreground->height),
59 cvAnd(tmp_image, bg_model->foreground, tmp_image);
62 cvDrawContours( bg_model->foreground, &seq, CV_RGB(0, 0, 255), CV_RGB(0, 0, 255), 10, -1);
64 cvDrawContours( bg_model->foreground, &seq, CV_RGB(0, 0, 0), CV_RGB(0, 0, 0), 10, -1);
  /cts/tests/tests/widget/src/android/widget/cts/
FrameLayoutTest.java 76 final BitmapDrawable foreground local
78 compareScaledPixels(48, foreground.getIntrinsicHeight());
79 compareScaledPixels(48, foreground.getIntrinsicWidth());
80 assertTrue(mFrameLayout.getHeight() > foreground.getIntrinsicHeight());
81 assertTrue(mFrameLayout.getWidth() > foreground.getIntrinsicWidth());
86 mFrameLayout.setForeground(foreground);
90 assertSame(foreground, mFrameLayout.getForeground());
92 assertTrue(foreground.isVisible());
93 final Rect rect = foreground.getBounds();
94 // foreground has been stretche
130 final Drawable foreground = mActivity.getResources().getDrawable(R.drawable.size_48x48); local
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_tabstrip.h 29 void AddBlankTabAt(Browser* browser, int index, bool foreground);
browser_tab_strip_model_delegate.h 21 virtual void AddBlankTabAt(int index, bool foreground) OVERRIDE;
  /external/chromium_org/third_party/skia/include/effects/
SkXfermodeImageFilter.h 18 * This filter takes an xfermode, and uses it to composite the foreground
19 * over the background. If foreground or background is NULL, the input
25 SkImageFilter* foreground = NULL);
  /external/skia/include/effects/
SkXfermodeImageFilter.h 18 * This filter takes an xfermode, and uses it to composite the foreground
19 * over the background. If foreground or background is NULL, the input
25 SkImageFilter* foreground = NULL);
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
TestService.java 319 mForegroundThread = new RunnerThread("foreground", new Runnable() {
390 private void threadFinished(boolean foreground) {
392 if (foreground) {
445 void onInit(Context context, boolean foreground) {
576 void onInit(Context context, boolean foreground) {
601 void onInit(Context context, boolean foreground) {
621 void onInit(Context context, boolean foreground) {
666 void onInit(Context context, boolean foreground) {
684 void onInit(Context context, boolean foreground) {
702 void onInit(Context context, boolean foreground) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PopupMenuStyle.h 40 PopupMenuStyle(const Color& foreground, const Color& background, const Font& font, bool visible, bool isDisplayNone, Length textIndent, TextDirection textDirection, bool hasTextDirectionOverride, BackgroundColorType backgroundColorType = DefaultBackgroundColor, PopupMenuType menuType = SelectPopup)
41 : m_foregroundColor(foreground)
  /cts/tests/tests/app/src/android/app/cts/
ActivityManager_RunningServiceInfoTest.java 37 mRunningServiceInfo.foreground = true;
64 assertTrue(values.foreground);
84 assertTrue(values.foreground);
  /packages/apps/Settings/src/com/android/settings/accessibility/
ColorPreference.java 124 final Drawable foreground = swatch.getDrawable(); local
125 if (foreground instanceof ColorDrawable) {
126 ((ColorDrawable) foreground).setColor(argb);

Completed in 722 milliseconds

1 2 3 4 5 6 7