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

1 2 3 4 5

  /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);
tab_strip_model_order_controller.cc 26 bool foreground) {
35 if (foreground) {
36 // If the page was opened in the foreground by a link click in another
  /external/webkit/Source/WebCore/platform/
PopupMenuStyle.h 38 PopupMenuStyle(const Color& foreground, const Color& background, const Font& font, bool visible, bool isDisplayNone, Length textIndent, TextDirection textDirection, bool hasTextDirectionOverride)
39 : m_foregroundColor(foreground)
  /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);
cvbgfg_acmmm2003.cpp 42 // This file implements the foreground/background pixel
45 // Foreground Object Detection from Videos Containing Complex Background
47 // http://muq.org/~cynbe/bib/foreground-object-detection-from-videos-containing-complex-background.pdf
73 // Function cvCreateFGDStatModel initializes foreground detection process
157 CV_CALL( p_model->foreground = cvCreateImage(cvSize(first_frame->width, first_frame->height), IPL_DEPTH_8U, 1));
202 cvReleaseImage( &model->foreground );
213 // Function cvChangeDetection performs change detection for Foreground detection algorithm
324 // Function cvUpdateFGDStatModel updates statistical model and returns number of foreground regions
342 cvZero(model->foreground);
344 // From foreground pixel candidates using image differencin
    [all...]
cvbgfg_gaussmix.cpp 183 CV_CALL( bg_model->foreground = cvCreateImage(cvSize(first_frame->width,
260 cvReleaseImage( &bg_model->foreground );
316 //foreground filtering
321 //cvMorphologyEx( bg_model->foreground, bg_model->foreground, 0, 0, CV_MOP_OPEN, 1 );
322 //cvMorphologyEx( bg_model->foreground, bg_model->foreground, 0, 0, CV_MOP_CLOSE, 1 );
324 cvFindContours( bg_model->foreground, bg_model->storage, &first_seq, sizeof(CvContour), CV_RETR_LIST );
349 cvZero(bg_model->foreground);
350 cvDrawContours(bg_model->foreground, first_seq, CV_RGB(0, 0, 255), CV_RGB(0, 0, 255), 10, -1)
    [all...]
  /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/skia/src/effects/
SkBlendImageFilter.cpp 56 SkBlendImageFilter::SkBlendImageFilter(SkBlendImageFilter::Mode mode, SkImageFilter* background, SkImageFilter* foreground)
57 : INHERITED(background, foreground), fMode(mode)
80 SkBitmap background, foreground = src; local
87 if (foregroundInput && !foregroundInput->filterImage(proxy, src, ctm, &foreground, offset)) {
90 SkAutoLockPixels alp_foreground(foreground), alp_background(background);
91 if (!foreground.getPixels() || !background.getPixels()) {
108 canvas.drawBitmap(foreground, 0, 0, &paint);
146 GrTexture* foreground,
148 AutoEffectUnref effect(SkNEW_ARGS(GrBlendEffect, (mode, foreground, background)));
165 GrBlendEffect(SkBlendImageFilter::Mode mode, GrTexture* foreground, GrTexture* background)
183 GrTexture* foreground = (GrTexture*) foregroundBM.getTexture(); local
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
TestService.java 303 mForegroundThread = new RunnerThread("foreground", new Runnable() {
374 private void threadFinished(boolean foreground) {
376 if (foreground) {
429 void onInit(Context context, boolean foreground) {
560 void onInit(Context context, boolean foreground) {
585 void onInit(Context context, boolean foreground) {
605 void onInit(Context context, boolean foreground) {
650 void onInit(Context context, boolean foreground) {
668 void onInit(Context context, boolean foreground) {
686 void onInit(Context context, boolean foreground) {
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ActivityManager_RunningServiceInfoTest.java 37 mRunningServiceInfo.foreground = true;
64 assertTrue(values.foreground);
84 assertTrue(values.foreground);
  /external/skia/include/effects/
SkBlendImageFilter.h 23 SkBlendImageFilter(Mode mode, SkImageFilter* background, SkImageFilter* foreground = NULL);
  /external/chromium/chrome/browser/
aeropeek_manager.h 112 bool foreground);
151 // |foreground| is true if the tab is selected.
153 bool foreground);
  /external/chromium/chrome/browser/extensions/
extension_browser_event_router.h 62 bool foreground);
100 void TabCreatedAt(TabContents* contents, int index, bool foreground);
  /external/chromium/chrome/browser/chromeos/
tab_closeable_state_watcher.h 123 bool foreground);
  /external/webkit/Source/WebCore/rendering/
EllipsisBox.cpp 50 Color foreground = paintInfo.forceBlackText ? Color::black : renderer()->selectionForegroundColor(); local
51 if (foreground.isValid() && foreground != textColor)
52 context->setFillColor(foreground, style->colorSpace());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 295 // However, in this case we don't trust the foreground color
374 * Look up the background and foreground colors from the theme. May not find either
375 * the background or foreground or both, but will always return a pair of possibly
383 RGB foreground = null; local
387 return Pair.of(background, foreground);
402 foreground = resolveThemeColor(resources, "textColorPrimary"); //$NON-NLS-1$
405 // Ensure that the foreground color is suitably distinct from the background color
409 if (foreground == null) {
411 foreground = new RGB(255, 255, 255);
413 foreground = new RGB(0, 0, 0)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_strip_model_observer_bridge.h 29 bool foreground);
  /frameworks/base/core/java/android/widget/
FrameLayout.java 125 * Describes how the foreground is positioned.
127 * @return foreground gravity.
138 * Describes how the foreground is positioned. Defaults to START and TOP.
261 * Returns the drawable used as the foreground of this FrameLayout. The
262 * foreground drawable, if non-null, is always drawn on top of the children.
264 * @return A Drawable or null if no foreground was set.
334 // Check against our foreground's minimum height and width
470 final Drawable foreground = mForeground; local
487 Gravity.apply(mForegroundGravity, foreground.getIntrinsicWidth(),
488 foreground.getIntrinsicHeight(), selfBounds, overlayBounds
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
R.java 80 public static final int foreground = nextId++; field in class:R.color
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ColorResourceLoaderTest.java 43 assertThat(colorResourceLoader.getValue(R.color.foreground), equalTo(0xf5f5f5));

Completed in 470 milliseconds

1 2 3 4 5