Searched refs:top (Results 351 - 375 of 2342) sorted by relevance

<<11121314151617181920>>

/external/opencv/otherlibs/highgui/
H A Dhighgui.h280 if( r.top > r.bottom )
282 t = r.top;
283 r.top = r.bottom;
294 return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top );
302 dr.top = sr.y;
315 roi.yOffset = r.top;
317 roi.height = r.bottom - r.top;
356 cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top ));
[all...]
/external/openssl/crypto/bn/
H A Dbn_rand.c119 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
142 /* make a random number and set the top and bottom bits */
178 if (top != -1)
180 if (top)
212 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
214 return bnrand(0, rnd, bits, top, bottom);
217 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
219 return bnrand(1, rnd, bits, top, bottom);
223 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
225 return bnrand(2, rnd, bits, top, botto
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DViewfinderView.java35 * This view is overlaid on top of the camera preview. It adds the viewfinder rectangle and partial
92 canvas.drawRect(0, 0, width, frame.top, paint);
93 canvas.drawRect(0, frame.top, frame.left, frame.bottom + 1, paint);
94 canvas.drawRect(frame.right + 1, frame.top, width, frame.bottom + 1, paint);
105 canvas.drawRect(frame.left, frame.top, frame.right + 1, frame.top + 2, paint);
106 canvas.drawRect(frame.left, frame.top + 2, frame.left + 2, frame.bottom - 1, paint);
107 canvas.drawRect(frame.right - 1, frame.top, frame.right + 1, frame.bottom - 1, paint);
114 int middle = frame.height() / 2 + frame.top;
124 int frameTop = frame.top;
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkIntersections.h70 int cubicVertical(const SkPoint a[4], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
74 return vertical(cubic, top, bottom, x, flipped);
120 int lineVertical(const SkPoint a[2], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
124 return vertical(line, top, bottom, x, flipped);
156 int quadVertical(const SkPoint a[3], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
160 return vertical(quad, top, bottom, x, flipped);
254 int vertical(const SkDLine&, double top, double bottom, double x, bool flipped);
255 int vertical(const SkDQuad&, double top, double bottom, double x, bool flipped);
256 int vertical(const SkDCubic&, double top, double bottom, double x, bool flipped);
257 int verticalCubic(const SkPoint a[4], SkScalar top, SkScala
[all...]
/external/skia/src/pathops/
H A DSkIntersections.h70 int cubicVertical(const SkPoint a[4], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
74 return vertical(cubic, top, bottom, x, flipped);
120 int lineVertical(const SkPoint a[2], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
124 return vertical(line, top, bottom, x, flipped);
156 int quadVertical(const SkPoint a[3], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
160 return vertical(quad, top, bottom, x, flipped);
254 int vertical(const SkDLine&, double top, double bottom, double x, bool flipped);
255 int vertical(const SkDQuad&, double top, double bottom, double x, bool flipped);
256 int vertical(const SkDCubic&, double top, double bottom, double x, bool flipped);
257 int verticalCubic(const SkPoint a[4], SkScalar top, SkScala
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dgaia.css9 border-top: 1px solid #c0c0c0;
25 background-image: -webkit-linear-gradient(top,
40 background-image: -webkit-linear-gradient(top,
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Ddestination_settings.css6 padding-top: 20px;
7 vertical-align: top;
13 margin-top: 8px;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/
H A Dchrome_shared.css24 padding-top: 13px;
34 top: 0;
51 top: 0;
74 border-top: 1px solid transparent;
88 border-top: 1px solid #8faad9;
95 border-top: 1px solid #8faad9;
107 top: 0;
155 top: 1px;
166 margin-top: 1px;
171 margin-top
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_utils.cc118 const BookmarkNode* top = node; local
119 while (top &&
120 std::find(root_folders.begin(), root_folders.end(), top) ==
122 top = top->parent();
124 return top;
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
H A DDependencyGraphBuilder.h45 // Returns NULL if the top set is empty.
49 TParentNodeSet *topSet = mNodeSets.top();
57 delete mNodeSets.top();
61 // Pops the top set and adds its contents to the new top set.
63 // If there is no set below the top set, the top set is just deleted.
67 TParentNodeSet *oldTopSet = mNodeSets.top();
72 TParentNodeSet *newTopSet = mNodeSets.top();
79 // Does nothing if there is no top se
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Drandom.c116 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) { argument
139 /* make a random number and set the top and bottom bits */
143 if (top != -1) {
144 if (top) {
177 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) { argument
178 return BN_rand(rnd, bits, top, bottom);
276 todo = sizeof(priv->d[0]) * priv->top;
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcpassthroughrender.h66 const float left, const float top,
78 float& left, float& top,
126 const float left, const float top,
140 const float left, const float top,
156 const float left, const float top,
166 const float left, const float top,
/external/chromium_org/third_party/polymer/components/paper-radio-button/
H A Dpaper-radio-button.css33 top: -16px;
46 top: 0px;
57 top: 0;
/external/chromium_org/third_party/polymer/components-chromium/paper-radio-button/
H A Dpaper-radio-button.css33 top: -16px;
46 top: 0px;
57 top: 0;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineUtilities.cpp91 void x_at(const _Point& p1, const _Point& p2, double top, double bottom, argument
106 if (topFlags && ((top <= p1.y && top >= p2.y)
107 || (top >= p1.y && top <= p2.y))) {
108 double x = p1.x + (top - p1.y) * slope;
/external/chromium_org/third_party/skia/src/core/
H A DSkEdge.h18 #define SkEdge_Compute_DY(top, y0) ((top << 6) + 32 - (y0))
114 int top = SkFDot6Round(y0);
118 if (top == bot) {
123 const int dy = SkEdge_Compute_DY(top, y0);
127 fFirstY = top;
/external/chromium_org/third_party/webrtc/modules/video_render/
H A Dvideo_render_impl.h72 const float left, const float top,
93 float& left, float& top,
177 const float left, const float top,
182 const float left, const float top,
192 const float left, const float top,
200 const float left, const float top,
/external/chromium_org/third_party/webrtc/modules/video_render/windows/
H A Dvideo_render_direct3d9.h124 const float top,
133 float& left, float& top,
155 const float left, const float top,
161 const float left, const float top,
176 const float left, const float top,
182 const float left, const float top,
/external/skia/experimental/Intersection/
H A DLineUtilities.cpp91 void x_at(const _Point& p1, const _Point& p2, double top, double bottom, argument
106 if (topFlags && ((top <= p1.y && top >= p2.y)
107 || (top >= p1.y && top <= p2.y))) {
108 double x = p1.x + (top - p1.y) * slope;
/external/chromium_org/remoting/webapp/
H A Dmain.css75 background-image: -webkit-gradient(linear, left top, left bottom,
84 background-image: -webkit-gradient(linear, left top, left bottom,
90 background: #f6f6f6 -webkit-gradient(linear,left top,left bottom,
112 background-image: -webkit-gradient(linear,left top,left bottom,
120 background-image: -webkit-gradient(linear,left top,left bottom,
126 background-image: -webkit-gradient(linear,left top,left bottom,
145 background-image: -webkit-gradient(linear,left top,left bottom,
161 padding-top:100px;
202 border-top: 1px solid #c0c0c0;
203 vertical-align: top;
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dabout_memory.js39 el.style.top = 0;
55 el.style.top = (event.pageY - height - 20) + 'px';
57 el.style.top = (event.pageY + 20) + 'px';
H A Dflags.css75 border-top: 1px solid rgb(181, 199, 222);
113 #top {
137 padding-top: 5px;
163 margin-top: 0.2em;
168 border-top: 1px solid rgb(181, 199, 222);
177 padding-top: 15px;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dselection_util.js134 * Finds the starting position (height from top and left width) of a
137 * @return {Array} The coordinates [top, left] of the selection.
150 var top = window.pageYOffset + clientRect.top;
152 return [top, left];
158 * @return {Array} The coordinates [top, left] of the node.
162 var top = 0;
167 top = obj.offsetTop;
172 top += obj.offsetTop;
177 return [top, lef
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dstep.js85 * @param {object} position Parameter with optional fields |top|,
90 ['top', 'right', 'bottom', 'left'].forEach(function(property) {
124 position: ['points-left', 'top']
128 position: ['points-right', 'top']
133 position: ['points-right', 'top']
138 position: ['points-left', 'top']
142 position: ['points-left', 'top']
231 var top = point[1] - totalOffset * this.direction_[1] - arrow[1];
241 top = Math.max(top, MINIMAL_SCREEN_OFFSE
[all...]
/external/chromium_org/chrome/test/chromedriver/js/
H A Dget_element_region.js31 'top': topY,
43 'top': Math.max(0, centerY - radius),
64 'top': minY,
74 'top': 0,
83 'top': clientRect.top - box.top,
85 'height': clientRect.bottom - clientRect.top

Completed in 699 milliseconds

<<11121314151617181920>>