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

1 23 4 5 6 7 8 91011>>

  /external/webkit/WebCore/manual-tests/
drag-caret.html 1 <p>This tests dragging over an input element, to make sure no drag-cursor is left behind.</p>
left-overflow-repaint.html 7 <p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=7916">Bugzilla bug 7916</a> Box repaint rect does not include the left overflow</p>
28 Move block with left overflow
30 <div id="t" style="text-indent: -50px; background: silver; margin-left: 50px;">
41 Move line with left overflow
42 <div style="text-indent: -50px; background: silver; margin-left: 50px;">
52 Change height of table cell with left overflow
54 <table style="margin-left: 50px;"><tr>
  /external/webkit/WebKit/qt/tests/qwebframe/resources/
testiframe2.html 11 left: 0px;
  /external/webkit/WebKitTools/QueueStatusServer/stylesheets/
main.css 15 padding-left: 10px;
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/operations/
Equals.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
65 XObject left = m_left.execute(xctxt, true); local
68 boolean result = left.equals(right) ? true : false;
69 left.detach();
  /external/opencore/doc/oscl_html/
doxygen.css 10 DL.el { margin-left: -1cm }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
17 DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller }
24 padding-left : 10px;
26 margin-left : 0px;
36 padding-left : 10px;
38 margin-left : 0px;
  /external/opencore/doc/pv2way_html/
doxygen.css 10 DL.el { margin-left: -1cm }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
17 DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller }
24 padding-left : 10px;
26 margin-left : 0px;
36 padding-left : 10px;
38 margin-left : 0px;
  /external/opencore/doc/pvauthor_html/
doxygen.css 10 DL.el { margin-left: -1cm }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
17 DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller }
24 padding-left : 10px;
26 margin-left : 0px;
36 padding-left : 10px;
38 margin-left : 0px;
  /external/opencore/doc/pvplayer_html/
doxygen.css 10 DL.el { margin-left: -1cm }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
17 DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller }
24 padding-left : 10px;
26 margin-left : 0px;
36 padding-left : 10px;
38 margin-left : 0px;
  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/public_html/
buildbot.css 66 border-top-left-radius: 10px;
67 -webkit-border-top-left-radius: 10px;
74 border-top-left-radius: 0px;
75 -webkit-border-top-left-radius: 0px;
80 border-top-left-radius: 5px;
81 -webkit-border-top-left-radius: 5px;
93 border-top-left-radius: 5px;
94 -webkit-border-top-left-radius: 5px;
101 border-bottom-left-radius: 5px;
102 -webkit-border-bottom-left-radius: 5px
    [all...]
  /external/webkit/WebCore/css/
mathml.css 40 margin-left: 0.1em;
100 padding-left: 0.05em;
130 padding-left: 0.75em;
136 padding-left: 0.2em;
158 mtable[columnalign="left"], mtr[columnalign="left"], mtd[columnalign="left"] {
159 text-align: left;
190 border-left: solid thin;
193 border-left: dashed thin
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_client_read.c 39 size_t left, len, i; local
51 left = *in_len;
53 if (left < 4)
69 left -= 4;
71 if (len > left)
217 size_t left, len, list_len, cert_len, idx; local
231 left = *in_len;
233 if (left < 4) {
235 "(len=%lu)", (unsigned long) left);
243 left -= 4
480 size_t left, len; local
569 size_t left, len; local
633 size_t left, len; local
691 size_t left; local
761 size_t left, len, hlen; local
872 size_t left; local
    [all...]
  /build/tools/droiddoc/templates/assets/
carousel.js 97 $(imgDiv).addClass("img-left");
104 $(descDiv).addClass("desc-left");
128 var arrowLeft = 'arrow-left'; // the left control arrow
195 var left = (ease(current_frame/animation.frames) * Math.abs(animation.goal - animation.origin)) - cp;
196 if(left < 0) {
197 left = 0;
199 if(!isNaN(left)) {
200 div.style.left = '-' + Math.round(left) + 'px'
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
GravityTest.java 73 assertEquals(19, mOutRect.left);
78 assertEquals(24, mOutRect.left);
84 assertEquals(19, mOutRect.left);
89 assertEquals(24, mOutRect.left);
94 Gravity.apply(Gravity.LEFT, 2, 10, mInRect, mOutRect);
95 assertEquals(10, mOutRect.left);
99 Gravity.apply(Gravity.LEFT, 2, 10, mInRect, 5, 5, mOutRect);
100 assertEquals(15, mOutRect.left);
106 assertEquals(28, mOutRect.left);
111 assertEquals(23, mOutRect.left);
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
HexTranslator.java 59 byte left, right;
62 left = in[inOff + i * 2];
65 if (left < (byte)'a')
67 out[outOff] = (byte)((left - '0') << 4);
71 out[outOff] = (byte)((left - 'a' + 10) << 4);
  /external/jpeg/
ansi2knr.1 13 recognizes function definitions by seeing a non-keyword identifier at the left
14 margin, followed by a left parenthesis, with a right parenthesis as the last
15 character on the line, and with a left brace as the first token on the
17 multi-line header provided that no intervening line ends with a left or right
23 - Any other construct that starts at the left margin and follows the
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
DESEngine.java 407 int work, right, left; local
409 left = (in[inOff + 0] & 0xff) << 24;
410 left |= (in[inOff + 1] & 0xff) << 16;
411 left |= (in[inOff + 2] & 0xff) << 8;
412 left |= (in[inOff + 3] & 0xff);
419 work = ((left >>> 4) ^ right) & 0x0f0f0f0f;
421 left ^= (work << 4);
422 work = ((left >>> 16) ^ right) & 0x0000ffff;
424 left ^= (work << 16);
425 work = ((right >>> 2) ^ left) & 0x33333333
    [all...]
  /external/tinyxml/docs/
doxygen.css 81 DL.el { margin-left: -1cm }
91 margin-left: 2px;
93 padding-left: 6px;
108 margin-left: 16px;
113 DIV.groupText { margin-left: 16px; font-style: italic; font-size: 90% }
118 margin-left: 20px;
125 padding-left : 10px;
127 margin-left : 0px;
138 padding-left : 10px;
140 margin-left : 0px
    [all...]
  /external/webkit/WebCore/platform/graphics/
PathTraversalState.cpp 57 void split(QuadraticBezier& left, QuadraticBezier& right) const
59 left.control = midPoint(start, control);
62 FloatPoint leftControlToRightControl = midPoint(left.control, right.control);
63 left.end = leftControlToRightControl;
66 left.start = start;
90 void split(CubicBezier& left, CubicBezier& right) const
94 left.start = start;
95 left.control1 = midPoint(start, control1);
96 left.control2 = midPoint(left.control1, startToControl1)
129 CurveType left, right; local
    [all...]
  /frameworks/base/core/java/android/view/
Gravity.java 32 /** Raw bit controlling how the left/top edge is placed. */
49 /** Push object to the left of its container, not changing its size. */
50 public static final int LEFT = (AXIS_PULL_BEFORE|AXIS_SPECIFIED)<<AXIS_X_SHIFT;
66 public static final int FILL_HORIZONTAL = LEFT|RIGHT;
137 * @param xAdj Offset to apply to the X axis. If gravity is LEFT this
139 * the left; if gravity is CENTER_HORIZONTAL it pushes it to the
140 * right or left; otherwise it is ignored.
152 outRect.left = container.left
153 + ((container.right - container.left - w)/2) + xAdj
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/
stylesheet-jdiff.css 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;}
9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
21 padding-left:1em;}
24 padding-left:1em;}
  /frameworks/base/docs/html/sdk/api_diff/4/
stylesheet-jdiff.css 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;}
9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
21 padding-left:1em;}
24 padding-left:1em;}
  /frameworks/base/docs/html/sdk/api_diff/5/
stylesheet-jdiff.css 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;}
9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
21 padding-left:1em;}
24 padding-left:1em;}
  /frameworks/base/docs/html/sdk/api_diff/6/
stylesheet-jdiff.css 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;}
9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
21 padding-left:1em;}
24 padding-left:1em;}
  /frameworks/base/docs/html/sdk/api_diff/7/
stylesheet-jdiff.css 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;}
9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
21 padding-left:1em;}
24 padding-left:1em;}

Completed in 238 milliseconds

1 23 4 5 6 7 8 91011>>