HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 226 - 250 of 3812) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
OverviewGrid.js 111 * @param {number} left
114 setWindow: function(left, right)
116 this._window._setWindow(left, right);
179 this._leftResizeElement.style.left = 0;
198 this._overviewWindowElement.style.left = "0%";
200 this._overviewWindowBordersElement.style.left = "0%";
202 this._leftResizeElement.style.left = "0%";
203 this._rightResizeElement.style.left = "100%";
357 var left = windowLeft;
366 left = ((windowRight + windowLeft) - width * factor) / 2
    [all...]
networkPanel.css 41 left: 5px;
58 left: 0;
76 background: -webkit-gradient(linear, left top, left bottom, from(rgb(236, 236, 236)), to(rgb(217, 217, 217)));
82 padding-left: 13px;
96 left: 0;
111 border-bottom-left-radius: 0;
121 left: 0;
158 margin-left: 30px;
190 left: 0
    [all...]
spectrum.css 5 left: 0;
24 left: 0;
32 left: 2px;
41 left: 170px;
67 left: 15px;
78 background-image: -webkit-linear-gradient(left, white, rgba(204, 154, 129, 0));
97 left: 0;
107 left: -1px;
  /external/chromium_org/chrome/browser/resources/chromeos/login/
bubble.css 34 left: 17px;
42 html[dir=rtl] .bubble-left::before {
44 left: -16px;
54 left: 17px;
61 html[dir=ltr] .bubble-left::before,
82 left: 17px;
90 html[dir=rtl] .bubble-left::after {
92 left: -15px;
102 left: 17px;
109 html[dir=ltr] .bubble-left::after
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp_android/
mostvisited_tablet.css 47 float: left;
78 left top,
79 left bottom,
84 left: 0;
96 left: -10px;
115 padding-left: 6px; /* match recently closed border & margin */
132 float: left;
148 padding-left: 2px;
149 text-align: left;
159 background-position: bottom left;
    [all...]
incognito_tab.css 12 float: left;
20 margin-left: auto;
  /external/dropbear/libtomcrypt/src/ciphers/
kasumi.c 103 u16 left, right; local
106 left = (u16)(in>>16);
110 left ^= key->kasumi.KOi1[round_no];
111 left = FI( left, key->kasumi.KIi1[round_no] );
112 left ^= right;
116 right ^= left;
118 left ^= key->kasumi.KOi3[round_no];
119 left = FI( left, key->kasumi.KIi3[round_no] )
143 ulong32 left, right, temp; local
170 ulong32 left, right, temp; local
    [all...]
  /external/e2fsprogs/e2fsck/
dict.c 51 #define left dict_left macro
69 #define dict_root(D) ((D)->nilnode.left)
77 * Perform a ``left rotation'' adjustment on the tree. The given node P and
78 * its right child C are rearranged so that the P instead becomes the left
79 * child of C. The left subtree of C is inherited as the new right subtree
88 upper->right = lowleft = lower->left;
94 the sentinel nil node, and root->parent->left points back to root */
96 if (upper == upparent->left) {
97 upparent->left = lower;
103 lower->left = upper
861 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *left; local
895 dnode_t *nil = dict_nil(dict), *parent, *left; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/crop/
CropDrawingUtils.java 37 float x = bounds.left + stepX;
44 canvas.drawLine(bounds.left, y, bounds.right, y, p);
67 r.set(0,bounds.top,bounds.left,h);
69 r.set(bounds.left,bounds.bottom,w,h);
77 int left = (int) centerX - indicatorSize / 2; local
79 indicator.setBounds(left, top, left + indicatorSize, top + indicatorSize);
88 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.left, bounds.top);
94 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.left, bounds.bottom);
107 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.left, bounds.centerY())
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 37 float x = bounds.left + stepX;
44 canvas.drawLine(bounds.left, y, bounds.right, y, p);
67 r.set(0,bounds.top,bounds.left,h);
69 r.set(bounds.left,bounds.bottom,w,h);
77 int left = (int) centerX - indicatorSize / 2; local
79 indicator.setBounds(left, top, left + indicatorSize, top + indicatorSize);
88 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.left, bounds.top);
94 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.left, bounds.bottom);
107 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.left, bounds.centerY())
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
GravityTest.java 52 assertEquals(19, mOutRect.left);
57 assertEquals(24, mOutRect.left);
62 assertEquals(19, mOutRect.left);
67 assertEquals(19, mOutRect.left);
73 assertEquals(19, mOutRect.left);
78 assertEquals(24, mOutRect.left);
83 assertEquals(19, mOutRect.left);
88 assertEquals(19, mOutRect.left);
93 Gravity.apply(Gravity.LEFT, 2, 10, mInRect, mOutRect);
94 assertEquals(10, mOutRect.left);
    [all...]
  /external/opencv/cv/src/
cvutils.cpp 113 int top, int left, int cn, const uchar* )
118 if( srcstep == dststep && dst + dststep*top + left*cn == src &&
132 return ifunc( src, srcstep, srcroi, dstroi, top, left );
147 return func( src, srcstep, srcroi, dst, dststep, dstroi, top, left );
161 left *= cn;
165 if( idst + left != isrc )
167 idst[j + left] = isrc[j];
168 for( j = left - 1; j >= 0; j-- )
170 for( j = left+srcroi.width; j < dstroi.width; j++ )
180 left *= cn
    [all...]
  /cts/suite/pts/deviceTests/browserbench/assets/octane/css/
bootstrap-responsive.css 106 text-align: left;
109 margin-left: 0;
116 padding-left: 10px;
122 left: 10px;
141 padding-left: 20px;
146 margin-left: -20px;
155 text-align: left;
158 margin-left: 0;
168 margin-left: 0;
175 margin-left: 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PODRedBlackTree.h 283 Node* left() const { return m_left; } function in class:WebCore::PODRedBlackTree::Node
309 // given node based on the values in the left and right children. It
312 // in the left and right children. This method should return true if
337 current = current->left();
351 return treeSearchFullComparisons(current->left(), data);
357 // We may need to traverse both the left and right subtrees.
358 Node* result = treeSearchFullComparisons(current->left(), data);
371 x = x->left();
404 while (x->left())
405 x = x->left();
    [all...]
  /external/aac/libAACenc/src/
chaosmeasure.cpp 110 FIXP_DBL left,center; /* left, center tap of filter */ local
112 left = (FIXP_DBL)((LONG)paMDCTDataNM0[i]^((LONG)paMDCTDataNM0[i]>>(DFRACT_BITS-1)));
117 FIXP_DBL tmp = (left>>1)+(right>>1);
128 left = center;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameEntryConverter.java 68 char left = str.charAt((index * 2) + off); local
71 if (left < 'a')
73 data[index] = (byte)((left - '0') << 4);
77 data[index] = (byte)((left - 'a' + 10) << 4);
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
heading_track.css 21 padding-left: 18px;
23 text-align: left;
track.css 24 left: 2px;
30 left: 3px;
  /external/chromium_org/chrome/browser/resources/chromeos/
choose_mobile_network.css 7 margin-left: 50px;
18 float: left;
  /external/chromium_org/printing/
print_settings_initializer_mac.cc 57 (paper_rect.right - paper_rect.left),
60 (page_rect.left - paper_rect.left),
62 (page_rect.right - page_rect.left),
  /external/chromium_org/third_party/skia/src/core/
SkBlitter_Sprite.cpp 21 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top,
24 fLeft = left;
55 int left, int top,
60 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
84 blitter->setup(device, left, top, paint);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
inttree.c 76 it->nil->left = it->nil;
82 it->root->left = it->nil;
108 /* makes the parent of x be to the left of x, x the parent of */
131 x->right=y->left;
133 if (y->left != it->nil)
134 y->left->parent=x; /* used to use sentinel here */
142 if (x == x->parent->left)
143 x->parent->left=y;
146 y->left=x;
149 x->maxHigh=ITMax(x->left->maxHigh,ITMax(x->right->maxHigh,x->high))
    [all...]
  /external/chromium_org/ui/gfx/
insets_f.h 20 InsetsF(float top, float left, float bottom, float right);
shadow_value.cc 50 int left = 0; local
61 left = std::max(left, blur - shadow.x());
67 return Insets(-top, -left, -bottom, -right);
  /external/chromium_org/ui/views/
focus_border.h 35 int left, int top, int right, int bottom);

Completed in 791 milliseconds

1 2 3 4 5 6 7 8 91011>>