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

1 2 3 4 5 6

  /toolchain/binutils/binutils-2.25/gold/testsuite/
exclude_libs_test.sh 34 vis=$3
42 match_vis=`grep " $sym\$" $file | grep " $vis "`
44 echo "Expected symbol $sym to have visibility $vis but found"
  /frameworks/base/services/core/java/com/android/server/policy/
BarController.java 108 public void adjustSystemUiVisibilityLw(int oldVis, int vis) {
110 (vis & mTransientFlag) == 0) {
114 } else if (mWin != null && (oldVis & mUnhideFlag) != 0 && (vis & mUnhideFlag) == 0) {
120 public int applyTranslucentFlagLw(WindowState win, int vis, int oldVis) {
126 vis |= mTranslucentFlag;
128 vis &= ~mTranslucentFlag;
131 vis |= mTransparentFlag;
133 vis &= ~mTransparentFlag;
136 vis = (vis & ~mTranslucentFlag) | (oldVis & mTranslucentFlag)
    [all...]
  /cts/tests/tests/systemui/src/android/systemui/cts/
LightStatusBarActivity.java 42 int vis = getWindow().getDecorView().getSystemUiVisibility(); local
44 vis |= View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
46 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
48 getWindow().getDecorView().setSystemUiVisibility(vis);
  /external/opencv3/samples/python2/
edge.py 44 vis = img.copy()
45 vis /= 2
46 vis[edge != 0] = (0, 255, 0)
47 cv2.imshow('edge', vis)
feature_homography.py 59 vis = np.zeros((h, w*2, 3), np.uint8)
60 vis[:h,:w] = self.frame
63 vis[:,w:] = target.image
64 draw_keypoints(vis[:,w:], target.keypoints)
66 cv2.rectangle(vis, (x0+w, y0), (x1+w, y1), (0, 255, 0), 2)
72 cv2.polylines(vis, [np.int32(tracked.quad)], True, (255, 255, 255), 2)
74 cv2.line(vis, (x0+w, y0), (x1, y1), (0, 255, 0))
75 draw_keypoints(vis, self.tracker.frame_points)
77 self.rect_sel.draw(vis)
78 cv2.imshow('plane', vis)
    [all...]
texture_flow.py 35 vis = img.copy() variable
36 vis[:] = (192 + np.uint32(vis)) / 2
41 cv2.line(vis, (x-vx, y-vy), (x+vx, y+vy), (0, 0, 0), 1, cv2.LINE_AA)
43 cv2.imshow('flow', vis)
mser.py 33 vis = img.copy() variable
37 cv2.polylines(vis, hulls, 1, (0, 255, 0))
39 cv2.imshow('img', vis)
distrans.py 44 vis = cm[np.uint8(labels)]
46 vis = cm[np.uint8(dist*2)]
47 vis[mark != 0] = 255
48 cv2.imshow('distrans', vis)
lk_homography.py 57 vis = frame.copy()
71 vis = cv2.addWeighted(vis, 0.5, overlay, 0.5, 0.0)
75 cv2.line(vis, (x0, y0), (x1, y1), (0, 128, 0))
76 cv2.circle(vis, (x1, y1), 2, (red, green)[good], -1)
77 draw_str(vis, (20, 20), 'track count: %d' % len(self.p1))
79 draw_str(vis, (20, 40), 'RANSAC')
84 cv2.circle(vis, (x, y), 2, green, -1)
85 draw_str(vis, (20, 20), 'feature count: %d' % len(p))
87 cv2.imshow('lk_homography', vis)
    [all...]
facedetect.py 50 vis = img.copy()
51 draw_rects(vis, rects, (0, 255, 0))
55 vis_roi = vis[y1:y2, x1:x2]
60 draw_str(vis, (20, 20), 'time: %.1f ms' % (dt*1000))
61 cv2.imshow('facedetect', vis)
plane_ar.py 63 vis = self.frame.copy()
67 cv2.polylines(vis, [np.int32(tr.quad)], True, (255, 255, 255), 2)
69 cv2.circle(vis, (x, y), 2, (255, 255, 255))
70 self.draw_overlay(vis, tr)
72 self.rect_sel.draw(vis)
73 cv2.imshow('plane', vis)
82 def draw_overlay(self, vis, tracked):
86 h, w = vis.shape[:2]
96 cv2.line(vis, (int(x0), int(y0)), (int(x1), int(y1)), (255, 255, 0), 2)
find_obj.py 73 vis = np.zeros((max(h1, h2), w1+w2), np.uint8)
74 vis[:h1, :w1] = img1
75 vis[:h2, w1:w1+w2] = img2
76 vis = cv2.cvtColor(vis, cv2.COLOR_GRAY2BGR)
81 cv2.polylines(vis, [corners], True, (255, 255, 255))
95 cv2.circle(vis, (x1, y1), 2, col, -1)
96 cv2.circle(vis, (x2, y2), 2, col, -1)
101 cv2.line(vis, (x1-r, y1-r), (x1+r, y1+r), col, thickness)
102 cv2.line(vis, (x1-r, y1+r), (x1+r, y1-r), col, thickness
    [all...]
camshift.py 76 vis = self.frame.copy()
90 vis_roi = vis[y0:y1, x0:x1]
92 vis[mask == 0] = 0
102 vis[:] = prob[...,np.newaxis]
104 cv2.ellipse(vis, track_box, (0, 0, 255), 2)
108 cv2.imshow('camshift', vis)
calibrate.py 56 vis = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR) variable
57 cv2.drawChessboardCorners(vis, pattern_size, corners, found)
59 cv2.imwrite('%s/%s_chess.bmp' % (debug_dir, name), vis)
turing.py 61 vis = a.copy() variable
62 draw_str(vis, (20, 20), 'frame %d' % frame_i)
63 cv2.imshow('a', vis)
color_histogram.py 49 vis = hsv_map*h[:,:,np.newaxis] / 255.0 variable
50 cv2.imshow('hist', vis)
lk_track.py 48 vis = frame.copy()
65 cv2.circle(vis, (x, y), 2, (0, 255, 0), -1)
67 cv2.polylines(vis, [np.int32(tr) for tr in self.tracks], False, (0, 255, 0))
68 draw_str(vis, (20, 20), 'track count: %d' % len(self.tracks))
83 cv2.imshow('lk_track', vis)
  /external/opencv3/modules/python/test/
tickets.py 34 vis = cv.CreateImage((1000,1000), 8, 3)
45 cv.Zero(vis)
48 cv.FillConvexPoly(vis, [xform(p) for p in d[:3]], cv.RGB(255,0,0))
52 cv.Line(vis, xform(a), xform(b), cv.RGB(0,128,0), 3)
56 cv.Line(vis, xform(a), xform(b), (255,255,255))
58 self.snap(vis)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
TvStatusBar.java 83 public void setSystemUiVisibility(int vis, int fullscreenStackVis, int dockedStackVis,
92 public void setImeWindowStatus(IBinder token, int vis, int backDisposition,
251 private void notifyUiVisibilityChanged(int vis) {
253 if (mLastDispatchedSystemUiVisibility != vis) {
254 mWindowManagerService.statusBarVisibilityChanged(vis);
255 mLastDispatchedSystemUiVisibility = vis;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
Util.java 159 public static final void setVisOrGone(View v, boolean vis) {
160 if (v == null || (v.getVisibility() == View.VISIBLE) == vis) return;
161 v.setVisibility(vis ? View.VISIBLE : View.GONE);
164 public static final void setVisOrInvis(View v, boolean vis) {
165 if (v == null || (v.getVisibility() == View.VISIBLE) == vis) return;
166 v.setVisibility(vis ? View.VISIBLE : View.INVISIBLE);
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBar.aidl 39 * @param vis the visibility flags except SYSTEM_UI_FLAG_LIGHT_STATUS_BAR which will be reported
49 void setSystemUiVisibility(int vis, int fullscreenStackVis, int dockedStackVis, int mask,
53 void setImeWindowStatus(in IBinder token, int vis, int backDisposition,
  /frameworks/base/core/tests/coretests/src/android/view/
StubbedView.java 34 findViewById(R.id.vis).setOnClickListener(new View.OnClickListener() {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/
AnimatedImageView.java 96 protected void onVisibilityChanged(View changedView, int vis) {
97 super.onVisibilityChanged(changedView, vis);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
SystemBarHelper.java 149 final int vis = view.getSystemUiVisibility(); local
150 view.setSystemUiVisibility(vis | flag);
171 final int vis = view.getSystemUiVisibility(); local
172 view.setSystemUiVisibility(vis & ~flag);
223 private static void addImmersiveFlagsToDecorView(final Window window, final int vis) {
227 addVisibilityFlag(decorView, vis);
233 private static void removeImmersiveFlagsFromDecorView(final Window window, final int vis) {
237 removeVisibilityFlag(decorView, vis);
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
OverlayRenderer.java 32 public void setVisible(boolean vis) {
33 mVisible = vis;

Completed in 1104 milliseconds

1 2 3 4 5 6