HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 576 - 600 of 3817) sorted by null

<<21222324252627282930>>

  /external/pixman/pixman/
pixman-trap.c 383 pixman_line_fixed_edge_init (&l, bpp, t, &trap->left, x_off, y_off);
459 EXTEND(trap->left.p1.x);
460 EXTEND(trap->left.p2.x);
581 const pixman_point_fixed_t *top, *left, *right, *tmp; local
584 left = &tri->p2;
587 if (greater_y (top, left))
589 tmp = left;
590 left = top;
601 if (clockwise (top, right, left))
604 right = left;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
elementsPanel.css 31 padding-left: 0;
40 margin-left: 8px;
45 left: 1px;
88 margin-left: 3px;
89 padding-left: 2px;
155 .metrics .left {
192 margin-left: 0;
196 margin-left: -6px;
206 left: -36px; /* outdent to compensate for the top-level property indent */
232 margin-left: 5px
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
s3_pkt.c 35 * The word 'cryptographic' can be left out if the rouines from the library
133 int i,len,left; local
145 left = rb->left;
154 if (left == 0)
156 else if (align != 0 && left >= SSL3_RT_HEADER_LENGTH)
171 memmove (rb->buf+align,pkt,left);
185 if (left > 0 && n > left)
186 n = left;
    [all...]
  /external/openssl/ssl/
s3_pkt.c 35 * The word 'cryptographic' can be left out if the rouines from the library
133 int i,len,left; local
145 left = rb->left;
154 if (left == 0)
156 else if (align != 0 && left >= SSL3_RT_HEADER_LENGTH)
171 memmove (rb->buf+align,pkt,left);
185 if (left > 0 && n > left)
186 n = left;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_tools.hpp 70 // L - left argument
533 template <class Left, class Right>
534 predicate_result equal_impl( Left const& left, Right const& right )
536 return left == right;
541 predicate_result BOOST_TEST_DECL equal_impl( char const* left, char const* right );
542 inline predicate_result equal_impl( char* left, char const* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
543 inline predicate_result equal_impl( char const* left, char* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) );
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
PopupZoomer.java 85 // The time that was left for the outwards animation to finish.
326 float l = mTouch.x - mScale * (mTouch.x - mTargetBounds.left);
348 // to the left instead of right.
349 if (mClipRect.left < ZOOM_BOUNDS_MARGIN) {
350 mShiftX = ZOOM_BOUNDS_MARGIN - mClipRect.left;
351 mClipRect.left += mShiftX;
356 mClipRect.left += mShiftX;
374 if (mViewClipRect.left + mShiftX > mClipRect.left) {
375 mMaxScrollX = mViewClipRect.left - mClipRect.left
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Region_Delegate.java 182 int left, int top, int right, int bottom) {
189 regionDelegate.mArea.contains(left, top, right - left, bottom - top);
194 int left, int top, int right, int bottom) {
201 regionDelegate.mArea.intersects(left, top, right - left, bottom - top) == false;
297 int left, int top, int right, int bottom) {
303 dstRegion.mArea = new Area(new Rectangle2D.Float(left, top, right - left, bottom - top));
338 rect.left = rect.top = rect.right = rect.bottom = 0
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
AccelerometerTestRenderer.java 110 // left face
170 * @param left the left operand of the cross product
175 public static void crossProduct(float[] left, float[] right, float[] out) {
176 out[0] = left[1] * right[2] - left[2] * right[1];
177 out[1] = left[2] * right[0] - left[0] * right[2];
178 out[2] = left[0] * right[1] - left[1] * right[0]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
LayoutRect.h 97 m_location.move(-box.left(), -box.top());
98 m_size.expand(box.left() + box.right(), box.top() + box.bottom());
104 m_location.move(box.left(), box.top());
105 m_size.shrink(box.left() + box.right(), box.top() + box.bottom());
212 inline IntRect pixelSnappedIntRect(LayoutUnit left, LayoutUnit top, LayoutUnit width, LayoutUnit height)
214 return IntRect(left.round(), top.round(), snapSizeToPixel(width, left), snapSizeToPixel(height, top));
217 inline IntRect pixelSnappedIntRectFromEdges(LayoutUnit left, LayoutUnit top, LayoutUnit right, LayoutUnit bottom)
219 return IntRect(left.round(), top.round(), snapSizeToPixel(right - left, left), snapSizeToPixel(bottom - top, top))
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.h 66 int cubicHorizontal(const SkPoint a[4], SkScalar left, SkScalar right, SkScalar y,
70 return horizontal(cubic, left, right, y, flipped);
112 int lineHorizontal(const SkPoint a[2], SkScalar left, SkScalar right, SkScalar y,
116 return horizontal(line, left, right, y, flipped);
136 int quadHorizontal(const SkPoint a[3], SkScalar left, SkScalar right, SkScalar y,
140 return horizontal(quad, left, right, y, flipped);
201 int horizontal(const SkDLine&, double left, double right, double y, bool flipped);
202 int horizontal(const SkDQuad&, double left, double right, double y, bool flipped);
203 int horizontal(const SkDQuad&, double left, double right, double y, double tRange[2]);
205 int horizontal(const SkDCubic&, double left, double right, double y, bool flipped)
    [all...]
  /external/opencv/cv/src/
cvstereogc.cpp 399 cvReleaseMat( &state->left );
441 static void icvInitGraySubpix( const CvMat* left, const CvMat* right,
444 int k, x, y, rows = left->rows, cols = left->cols;
448 const CvMat* src = k == 0 ? left : right;
489 int x, y, x1, d, i, j, rows = state->left->rows, cols = state->left->cols, n = 0;
496 const uchar* lptr = state->left->data.ptr + state->left->step*y;
528 int x, y, rows = state->left->rows, cols = state->left->cols
534 const uchar* left = state->left->data.ptr; local
699 const uchar* left = left0 + step*y; local
852 CvMat lstub, *left = cvGetMat( _left, &lstub ); local
    [all...]
  /external/skia/src/pathops/
SkIntersections.h 66 int cubicHorizontal(const SkPoint a[4], SkScalar left, SkScalar right, SkScalar y,
70 return horizontal(cubic, left, right, y, flipped);
112 int lineHorizontal(const SkPoint a[2], SkScalar left, SkScalar right, SkScalar y,
116 return horizontal(line, left, right, y, flipped);
136 int quadHorizontal(const SkPoint a[3], SkScalar left, SkScalar right, SkScalar y,
140 return horizontal(quad, left, right, y, flipped);
201 int horizontal(const SkDLine&, double left, double right, double y, bool flipped);
202 int horizontal(const SkDQuad&, double left, double right, double y, bool flipped);
203 int horizontal(const SkDQuad&, double left, double right, double y, double tRange[2]);
205 int horizontal(const SkDCubic&, double left, double right, double y, bool flipped)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
random.c 158 size_t left; local
169 left = len;
170 while (left) {
176 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
179 left -= siz;
184 left = len;
185 while (left) {
195 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
    [all...]
  /build/tools/droiddoc/templates-sac/assets/css/
default.css 43 padding-left: 10px; }
63 margin-left: 190px;
78 float: left; }
86 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
110 float: left; }
170 float: left;
171 margin-left: 20px; }
173 margin-left: 0; }
426 margin-left:0;
459 left: -15px;
    [all...]
  /external/chromium_org/third_party/zlib/
infback.c 122 left = strm->avail_out; \
133 strm->avail_out = left; \
203 if (left == 0) { \
205 left = state->wsize; \
206 state->whave = left; \
207 if (out(out_desc, put, left)) { \
251 unsigned have, left; /* available input and output */ local
278 left = state->wsize;
337 if (copy > left) copy = left;
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
infback.c 122 left = strm->avail_out; \
133 strm->avail_out = left; \
203 if (left == 0) { \
205 left = state->wsize; \
206 state->whave = left; \
207 if (out(out_desc, put, left)) { \
251 unsigned have, left; /* available input and output */ local
278 left = state->wsize;
337 if (copy > left) copy = left;
    [all...]
  /external/zlib/src/
infback.c 131 left = strm->avail_out; \
142 strm->avail_out = left; \
212 if (left == 0) { \
214 left = state->wsize; \
215 state->whave = left; \
216 if (out(out_desc, put, left)) { \
260 unsigned have, left; /* available input and output */ local
287 left = state->wsize;
346 if (copy > left) copy = left;
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 129 status_t DisplayListRenderer::prepareDirty(float left, float top,
183 int DisplayListRenderer::saveLayer(float left, float top, float right, float bottom,
185 addStateOp(new (alloc()) SaveLayerOp(left, top, right, bottom, alpha, mode, flags));
224 bool DisplayListRenderer::clipRect(float left, float top, float right, float bottom,
226 addStateOp(new (alloc()) ClipRectOp(left, top, right, bottom, op));
227 return OpenGLRenderer::clipRect(left, top, right, bottom, op);
261 status_t DisplayListRenderer::drawBitmap(SkBitmap* bitmap, float left, float top, SkPaint* paint) {
265 addDrawOp(new (alloc()) DrawBitmapOp(bitmap, left, top, paint));
299 status_t DisplayListRenderer::drawBitmapData(SkBitmap* bitmap, float left, float top,
304 addDrawOp(new (alloc()) DrawBitmapDataOp(bitmap, left, top, paint))
    [all...]
  /build/tools/droiddoc/templates-ds/assets/css/
default.css 39 padding-left: 10px; }
59 margin-left: 190px;
74 float: left; }
82 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
106 float: left; }
166 float: left;
167 margin-left: 20px; }
169 margin-left: 0; }
422 margin-left:0;
455 left: -15px;
    [all...]
  /external/valgrind/main/cachegrind/
cg_merge.c 970 struct _AvlNode* left; member in struct:_AvlNode
998 /* Swing to the left. Warning: no balance maintainance. */
1004 a->right = b->left;
1005 b->left = a;
1012 AvlNode* b = a->left;
1014 a->left = b->right;
1023 root->left->balance = 0;
1027 root->left->balance = -1;
1031 root->left->balance = 0;
1043 return 1 + (nd->left ? size_avl_nonNull(nd->left) : 0
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
LineGestureStrokeHelper.java 67 Assert.assertEquals(LINE_START_POINT, bounds.left);
81 Assert.assertEquals(LINE_START_POINT, bounds.left);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 42 public void glFrustumf(float left, float right, float bottom, float top,
44 Matrix.frustumM(mMatrix, mTop, left, right, bottom, top, near, far);
47 public void glFrustumx(int left, int right, int bottom, int top, int near,
49 glFrustumf(fixedToFloat(left),fixedToFloat(right),
102 public void glOrthof(float left, float right, float bottom, float top,
104 Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far);
107 public void glOrthox(int left, int right, int bottom, int top, int near,
109 glOrthof(fixedToFloat(left), fixedToFloat(right),
  /external/chromium/base/
tracked_objects.cc 746 bool Comparator::operator()(const Snapshot& left,
750 if (left.birth_thread() != right.birth_thread() &&
751 left.birth_thread()->ThreadName() !=
753 return left.birth_thread()->ThreadName() <
758 if (left.death_thread() != right.death_thread() &&
759 left.DeathThreadName() !=
761 if (!left.death_thread())
765 return left.DeathThreadName() <
771 if (left.location().file_name() != right.location().file_name()) {
772 int comp = strcmp(left.location().file_name()
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
info_view.css 28 padding-left: 4px;
  /external/chromium/chrome/browser/resources/ntp4/
apps_page.css 22 margin-left: auto;

Completed in 938 milliseconds

<<21222324252627282930>>