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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/DeskClock/res/layout-land/
desk_clock.xml 32 <!-- Left margin is 4 dip shy of desired to allow for the time to
33 "hang off" the left-hand side, accommodating the extra glyph
37 android:layout_gravity="left"
61 android:gravity="left"
89 <!-- second row: date/time on the left, weather on the right -->
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerARMv7.h 484 // Arm vfp addresses can be offset by a 9-bit ones-comp immediate, left shifted by 2.
499 // Arm vfp addresses can be offset by a 9-bit ones-comp immediate, left shifted by 2.
548 Jump branchDouble(DoubleCondition cond, FPRegisterID left, FPRegisterID right)
550 m_assembler.vcmp_F64(left, right);
686 void compare32(RegisterID left, Imm32 right)
690 m_assembler.tst(left, left);
694 m_assembler.cmp(left, armImm);
696 m_assembler.cmn(left, armImm);
699 m_assembler.cmp(left, dataTempRegister)
    [all...]
  /external/libpcap/doc/
pcap.html 35 p { margin-left: 2em; margin-right: 2em; }
37 p.toc { font-size: small ; font-weight: bold ; margin-left: 3em ;}
43 ol.text { margin-left: 2em; margin-right: 2em; }
44 ul.text { margin-left: 2em; margin-right: 2em; }
45 li { margin-left: 3em; }
47 pre { margin-left: 3em; color: #333333; background-color: transparent;
68 td.author { font-weight: bold; margin-left: 4em; font-size: x-small ; }
354 <th align="left" width="25%">Name</th>
355 <th align="left" width="25%">Code</th>
356 <th align="left" width="25%">Length</th
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 92 path.addCircle(mDrawRect.left + (width / 2),
115 int x = mDrawRect.left
124 int left = mDrawRect.left + 1; local
138 int xMiddle = mDrawRect.left
139 + ((mDrawRect.right - mDrawRect.left) / 2);
143 mResizeDrawableWidth.setBounds(left - widthWidth,
145 left + widthWidth,
215 boolean horizCheck = (x >= r.left - hysteresis)
219 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck)
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
HighlightView.java 89 path.addCircle(mDrawRect.left + (width / 2), mDrawRect.top + (height / 2), width / 2, Path.Direction.CW);
107 int x = mDrawRect.left + (mDrawRect.width() / 2) + d - width / 2;
113 int left = mDrawRect.left + 1; local
123 int xMiddle = mDrawRect.left + ((mDrawRect.right - mDrawRect.left) / 2);
126 mResizeDrawableWidth.setBounds(left - widthWidth, yMiddle - widthHeight, left + widthWidth, yMiddle
188 boolean horizCheck = (x >= r.left - hysteresis) && (x < r.right + hysteresis);
191 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck)
    [all...]
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatch.java 142 * @param padding array of left, top, right, bottom padding
146 padding[0] = mHorizontalPadding.mFirst; // left
336 Pair<List<Pair<Integer>>> left = getPatches(column, result); local
343 mFixed = getRectangles(left.mFirst, top.mFirst);
344 mPatches = getRectangles(left.mSecond, top.mSecond);
347 mHorizontalPatches = getRectangles(left.mFirst, top.mSecond);
348 mVerticalPatches = getRectangles(left.mSecond, top.mFirst);
353 } else if (left.mFirst.size() > 0) {
354 mHorizontalPatches = getHorizontalRectangles(left.mFirst);
367 left = getPatches(column, result)
    [all...]
  /external/v8/src/
zone-inl.h 127 // the left subtree.
201 // No left child, so the new tree is just the right child.
204 // Left child exists.
206 // Make the original left child the new root.
225 // the L tree of the algorithm. The left child of the dummy node
226 // will hold the R tree of the algorithm. Using a dummy node, left
229 Node* left = dummy; local
254 // Rotate left.
262 // Link left.
263 left->right_ = current
    [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 585 * (excluding fading edges) pretending that this View's left is located at
586 * the parameter left.
589 * @param leftFocus look for a candidate is the one at the left of the bounds
592 * @param left the left offset of the bounds in which a focusable must be
599 final int left, View preferredFocusable) {
606 final int leftWithoutFadingEdge = left + fadingEdgeLength;
607 final int rightWithoutFadingEdge = left + getWidth() - fadingEdgeLength;
624 * @param leftFocus look for a candidate is the one at the left of the bounds
627 * @param left the left offset of the bounds in which a focusable must b
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
LayerDrawableTest.java 315 int left = 10; local
319 layerDrawable.setLayerInset(0, left, top, right, bottom);
320 assertEquals(layerDrawable.getDrawable(0).getIntrinsicWidth() + left + right,
326 left += 10;
330 layerDrawable.setLayerInset(1, left, top, right, bottom);
331 assertEquals(layerDrawable.getDrawable(1).getIntrinsicWidth() + left + right,
337 layerDrawable.setLayerInset(-1, left, top, right, bottom);
519 assertEquals(0, rc.left);
527 assertEquals(padding0.left, rc.left);
    [all...]
  /external/zlib/examples/
gzappend.c 120 /* rotate list[0..len-1] left by rot positions, in place */
135 /* do simple left shift by one */
161 *to = *from; /* shift left */
171 unsigned left; /* bytes available at next */ member in struct:__anon7059
184 in->left = (unsigned)len;
196 #define read1(in) (in->left == 0 ? readmore(in) : 0, \
197 in->left--, *(in->next)++)
204 if (n > in->left) {
205 n -= in->left;
213 if (n > in->left)
259 int ret, lastbit, left, full; local
389 unsigned left; local
    [all...]
  /frameworks/base/awt/java/awt/
Rectangle.java 28 * The Rectangle class defines the rectangular area in terms of its upper left
46 * The X coordinate of the rectangle's left upper corner.
51 * The Y coordinate of the rectangle's left upper corner.
66 * Instantiates a new rectangle with [0, 0] upper left corner coordinates,
74 * Instantiates a new rectangle whose upper left corner coordinates are
79 * the Point specifies the upper left corner coordinates of the
87 * Instantiates a new rectangle whose upper left corner coordinates are
92 * the point specifies the upper left corner coordinates of the
103 * Instantiates a new rectangle determined by the upper left corner
107 * the X upper left corner coordinate of the rectangle
    [all...]
  /external/webkit/WebKitTools/iExploder/htdocs/
cssproperties.in 120 border-bottom-left-radius
126 border-left
127 border-left-color
128 border-left-style
129 border-left-width
139 border-top-left-radius
165 left
174 margin-left
193 padding-left
264 -webkit-border-bottom-left-radiu
    [all...]
  /bootable/recovery/mtdutils/
flash_image.c 128 int left = block_size - headerlen; local
129 while (left < 0) left += block_size;
130 while (left > 0) {
131 len = read(fd, buf, left > (int)sizeof(buf) ? (int)sizeof(buf) : left);
135 left -= len;
  /external/icu4c/layout/
KernTable.cpp 22 le_uint16 left; // left glyph of kern pair member in struct:PairInfo
28 #define SWAP_KEY(p) (((le_uint32) SWAPW((p)->left) << 16) | SWAPW((p)->right))
138 le_uint16 left = p->left; local
141 if (left < 256 && right < 256) {
142 char c = ids[left];
  /external/skia/src/core/
SkBlitter.cpp 294 void SkRectClipBlitter::blitH(int left, int y, int width)
301 int right = left + width;
303 if (left < fClipRect.fLeft)
304 left = fClipRect.fLeft;
308 width = right - left;
310 fBlitter->blitH(left, y, width);
313 void SkRectClipBlitter::blitAntiH(int left, int y, const SkAlpha aa[], const int16_t runs[])
315 if (!y_in_rect(y, fClipRect) || left >= fClipRect.fRight)
318 int x0 = left;
319 int x1 = left + compute_anti_width(runs)
397 int left, right; local
410 int left, right; local
    [all...]
  /sdk/layoutlib_utils/src/com/android/layoutlib/utils/
ValueResourceParser.java 153 int left = index - 1; local
154 while (left >= 0) {
155 if (Character.isWhitespace(value.charAt(left))) {
156 left--;
172 // remove all between left and right (non inclusive) and replace by a single space.
174 if (left >= 0) {
175 leftString = value.substring(0, left + 1);
  /bionic/libc/netbsd/resolv/
res_random.c 142 u_int left, right, tmp; local
147 left = (in >> 8) & 0x7f;
151 * Each round swaps the width of left and right. Even rounds have
152 * a 7-bit left, odd rounds have an 8-bit left. Since this uses an
153 * odd number of rounds, left is always 8 bits wide at the end.
160 tmp ^= left;
161 left = right;
165 return (right << 8) | left;
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 27 * output writers, one of which ends up writing to the left column and
34 /** {@code > 0;} the left column width */
37 /** {@code non-null;} pending left column output */
43 /** {@code non-null;} left column writer */
84 * @param leftWidth {@code > 0;} width of the left column, in characters
122 * @param leftWidth {@code >= 1;} width of the left column, in characters
132 * Gets the writer to use to write to the left column.
134 * @return {@code non-null;} the left column writer
200 * Flushes the left column buffer, printing it and clearing the buffer.
  /external/astl/include/
algorithm 52 template<typename _T> inline const _T& min(const _T& left, const _T& right)
54 if (left < right) return left;
58 template<typename _T> inline const _T& max(const _T& left, const _T& right)
60 if (right < left) return left;
64 template<typename _T> inline void swap(_T& left, _T& right)
66 _T tmp = left;
67 left = right;
  /external/webkit/WebCore/css/
CSSPropertyNames.in 27 border-bottom-left-radius
33 border-left
34 border-left-color
35 border-left-style
36 border-left-width
46 border-top-left-radius
72 left
81 margin-left
100 padding-left
  /dalvik/docs/
instruction-formats.css 51 padding-left: 2px;
62 margin-left: 48px;
89 margin-left: 48px;
  /development/samples/ApiDemos/res/layout/
relative_layout_2.xml 26 TextView goes at the top left by default .
66 the OK button and positioned to the left of it.
67 Since the OK button has a left margin of 10, there
  /external/webkit/WebCore/manual-tests/
transition-timing-functions.html 19 -webkit-transition-property: left;
32 left: 400px;
66 left: 400px;
  /frameworks/base/awt/java/awt/geom/
Ellipse2D.java 45 * The x coordinate of the upper left corner of the ellipse's bounding
51 * The y coordinate of the upper left corner of the ellipse's bounding
76 * the x coordinate of the upper left corner of the ellipse's
79 * the y coordinate of the upper left corner of the ellipse's
119 * the x coordinate of the upper left corner of the ellipse's
122 * the y coordinate of the upper left corner of the ellipse's
158 * The x coordinate of the upper left corner of the ellipse's bounding
164 * The y coordinate of the upper left corner of the ellipse's bounding
189 * the x coordinate of the upper left corner of the ellipse's
192 * the y coordinate of the upper left corner of the ellipse'
    [all...]
  /frameworks/base/cmds/keystore/
keystore_cli.c 38 [WRONG_PASSWORD + 1] = "Wrong password (2 tries left)",
39 [WRONG_PASSWORD + 2] = "Wrong password (3 tries left)",
40 [WRONG_PASSWORD + 3] = "Wrong password (4 tries left)",

Completed in 299 milliseconds

1 2 3 4 5 6 7 8 91011>>