HomeSort by relevance Sort by last modified time
    Searched full:right (Results 26 - 50 of 6698) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/awt/java/awt/
Insets.java 31 * the right side, and the left side. The space can be filled with a border, a
62 * The right inset indicates the size of the space subtracted from the right
65 public int right; field in class:Insets
69 * right parameters.
77 * @param right
78 * the right inset.
80 public Insets(int top, int left, int bottom, int right) {
81 setValues(top, left, bottom, right);
95 hashCode = HashCode.combine(hashCode, right);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Rect.java 28 * represented by the coordinates of its 4 edges (left, top, right bottom).
31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
36 public int right; field in class:Rect
49 * checking is performed, so the caller must ensure that left <= right and
54 * @param right The X coordinate of the right side of the rectagle
57 public Rect(int left, int top, int right, int bottom) {
60 this.right = right;
74 right = r.right
    [all...]
RectF.java 26 * represented by the coordinates of its 4 edges (left, top, right bottom).
29 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
34 public float right; field in class:RectF
44 * checking is performed, so the caller must ensure that left <= right and
49 * @param right The X coordinate of the right side of the rectagle
52 public RectF(float left, float top, float right, float bottom) {
55 this.right = right;
69 right = r.right
    [all...]
  /external/clearsilver/cs/
test18.cs 2 <?cs set:foo["baz"].right = "dot right" ?>
3 <?cs set:foo["baz"].right.label = "dot right" ?>
5 <? cs set:foo["baz"] + right = "plus right" ?>
test_comma.cs 2 Comma tests, evalute both but pass right most as expression result
  /external/skia/src/core/
SkRect.cpp 19 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom)
22 if (left >= right || top >= bottom)
27 this->set(left, top, right, bottom);
32 if (right > fRight) fRight = right;
107 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
109 if (left < right && top < bottom && !this->isEmpty() && // check for empties
110 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
114 if (fRight > right) fRight = right;
    [all...]
  /external/v8/test/mjsunit/tools/
splaytree.js 66 right: { key: 20, value: 20,
68 left: null, right: null },
69 right: null } },
70 right: { key: 40, value: 40, left: null, right: null } },
71 right: { key: 60, value: 60, left: null,
72 right: { key: 90, value: 90,
74 right: { key: 80, value: 80,
75 left: null, right: null } },
76 right: { key: 100, value: 100
    [all...]
  /frameworks/base/libs/ui/
Rect.cpp 32 right = -1;
47 if (right<rhs.right) {
58 right -= left - x;
69 right+= x;
76 const Rect result(left+rhs.x, top+rhs.y, right+rhs.x, bottom+rhs.y);
82 const Rect result(left-rhs.x, top-rhs.y, right-rhs.x, bottom-rhs.y);
90 result->right = min(right, with.right);
    [all...]
  /external/v8/benchmarks/
splay.js 58 right: GeneratePayloadTree(depth - 1, key)
96 // Verify that the splay tree has the right size.
173 node.right = this.root_.right;
174 this.root_.right = null;
176 node.right = this.root_;
202 this.root_ = this.root_.right;
204 var right = this.root_.right;
206 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/v8/tools/
splaytree.js 87 node.right = this.root_.right;
88 this.root_.right = null;
90 node.right = this.root_;
116 this.root_ = this.root_.right;
118 var right = this.root_.right;
120 // Splay to make sure that the new root has an empty right child.
122 // Insert the original right child as the right child of the ne
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-splay.js 53 right: GeneratePayloadTree(depth - 1, key)
91 // Verify that the splay tree has the right size.
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
197 this.root_ = this.root_.right;
199 var right = this.root_.right;
201 // Splay to make sure that the new root has an empty right child
    [all...]
  /external/opencore/oscl/oscl/osclbase/src/
oscl_tree.cpp 22 base_link_type y = x->right;
23 x->right = y->left;
33 x->parent->right = y;
41 x->left = y->right;
42 if (y->right != 0)
43 y->right->parent = x;
48 else if (x == x->parent->right)
49 x->parent->right = y;
52 y->right = x;
63 base_link_type y = x->parent->parent->right;
    [all...]
  /external/icu4c/common/
uarrsort.h 31 * @param right Pointer to the "right" item.
33 * <0 if left<right
34 * ==0 if left==right
35 * >0 if left>right
40 UComparator(const void *context, const void *left, const void *right);
68 uprv_uint16Comparator(const void *context, const void *left, const void *right);
75 uprv_int32Comparator(const void *context, const void *left, const void *right);
82 uprv_uint32Comparator(const void *context, const void *left, const void *right);
  /external/icu4c/i18n/
dtrule.cpp 67 DateTimeRule::operator=(const DateTimeRule& right) {
68 if (this != &right) {
69 fMonth = right.fMonth;
70 fDayOfMonth = right.fDayOfMonth;
71 fDayOfWeek = right.fDayOfWeek;
72 fWeekInMonth = right.fWeekInMonth;
73 fMillisInDay = right.fMillisInDay;
74 fDateRuleType = right.fDateRuleType;
75 fTimeRuleType = right.fTimeRuleType;
  /external/webkit/JavaScriptCore/assembler/
MacroAssembler.h 113 void branch32(Condition cond, RegisterID left, Address right, Label target)
115 branch32(cond, left, right).linkTo(target, this);
118 void branch16(Condition cond, BaseIndex left, RegisterID right, Label target)
120 branch16(cond, left, right).linkTo(target, this);
229 void setPtr(Condition cond, RegisterID left, Imm32 right, RegisterID dest)
231 set32(cond, left, right, dest);
265 Jump branchPtr(Condition cond, RegisterID left, RegisterID right)
267 return branch32(cond, left, right);
270 Jump branchPtr(Condition cond, RegisterID left, ImmPtr right)
272 return branch32(cond, left, Imm32(right));
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionIteratorTest.java 58 assertEquals(10, rect.right);
64 assertEquals(1, rect.right);
75 assertEquals(10, rect.right);
80 assertEquals(15, rect.right);
85 assertEquals(15, rect.right);
91 assertEquals(1, rect.right);
102 assertEquals(10, rect.right);
107 assertEquals(5, rect.right);
113 assertEquals(1, rect.right);
124 assertEquals(10, rect.right);
    [all...]
  /frameworks/base/include/ui/
Rect.h 30 int right; member in class:android::Rect
41 : left(0), top(0), right(w), bottom(h) {
44 : left(l), top(t), right(r), bottom(b) {
47 : left(lt.x), top(lt.y), right(rb.x), bottom(rb.y) {
53 left = top = right = bottom = 0;
72 return right-left;
86 right = rb.x;
95 return Point(right, bottom);
98 return Point(right, top);
107 (right == rhs.right) && (bottom == rhs.bottom)
    [all...]
  /external/icu4c/data/unidata/
BidiMirroring.txt 40 0029; 0028 # RIGHT PARENTHESIS
44 005D; 005B # RIGHT SQUARE BRACKET
46 007D; 007B # RIGHT CURLY BRACKET
48 00BB; 00AB # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
56 203A; 2039 # SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
58 2046; 2045 # RIGHT SQUARE BRACKET WITH QUILL
60 207E; 207D # SUPERSCRIPT RIGHT PARENTHESIS
62 208E; 208D # SUBSCRIPT RIGHT PARENTHESIS
120 22A2; 22A3 # RIGHT TACK
125 22AB; 2AE5 # DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTIL
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Cube.java 22 public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float front) {
25 GLVertex rightBottomBack = addVertex(right, bottom, back);
27 GLVertex rightTopBack = addVertex(right, top, back);
29 GLVertex rightBottomFront = addVertex(right, bottom, front);
31 GLVertex rightTopFront = addVertex(right, top, front);
40 // right
  /external/opencore/doc/oscl_html/
osclconfig__no__os_8h.html 14 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a10">OSCL_HAS_UNIX_SUPPORT</a>&nbsp;&nbsp;&nbsp;0</td></tr>
15 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a11">OSCL_HAS_MSWIN_SUPPORT</a>&nbsp;&nbsp;&nbsp;0</td></tr>
16 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a12">OSCL_HAS_MSWIN_PARTIAL_SUPPORT</a>&nbsp;&nbsp;&nbsp;0</td></tr>
17 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a13">OSCL_HAS_SYMBIAN_SUPPORT</a>&nbsp;&nbsp;&nbsp;0</td></tr>
18 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a14">OSCL_HAS_SAVAJE_SUPPORT</a>&nbsp;&nbsp;&nbsp;0</td></tr>
19 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a15">OSCL_HAS_PV_C_OS_SUPPORT</a>&nbsp;&nbsp;&nbsp;0</td></tr>
20 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a16">OSCL_HAS_SYMBIAN_ERRORTRAP</a>&nbsp;&nbsp;&nbsp;0</td></tr>
21 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a17">OSCL_HAS_SYMBIAN_MEMORY_FUNCS</a>&nbsp;&nbsp;&nbsp;0</td></tr>
22 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a18">OSCL_HAS_PV_C_OS_API_MEMORY_FUNCS</a>&nbsp;&nbsp;&nbsp;0</td></tr>
23 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclconfig.html#a19">OSC (…)
    [all...]
oscl__error__codes_8h.html 17 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a11">OsclErrNone</a>&nbsp;&nbsp;&nbsp;0</td></tr>
18 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a12">OsclErrGeneral</a>&nbsp;&nbsp;&nbsp;100</td></tr>
19 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a13">OsclErrNoMemory</a>&nbsp;&nbsp;&nbsp;101</td></tr>
20 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a14">OsclErrCancelled</a>&nbsp;&nbsp;&nbsp;102</td></tr>
21 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a15">OsclErrNotSupported</a>&nbsp;&nbsp;&nbsp;103</td></tr>
22 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a16">OsclErrArgument</a>&nbsp;&nbsp;&nbsp;104</td></tr>
23 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a17">OsclErrBadHandle</a>&nbsp;&nbsp;&nbsp;105</td></tr>
24 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a18">OsclErrAlreadyExists</a>&nbsp;&nbsp;&nbsp;106</td></tr>
25 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a19">OsclErrBusy</a>&nbsp;&nbsp;&nbsp;107</td></tr>
26 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclerror.html#a20">Oscl (…)
    [all...]
oscl__mem__audit_8h.html 23 <tr><td nowrap align=right valign=top>struct &nbsp;</td><td valign=bottom><a class="el" href="structMM__AllocInfo.html">MM_AllocInfo</a></td></tr>
24 <tr><td nowrap align=right valign=top>struct &nbsp;</td><td valign=bottom><a class="el" href="structMM__AllocNode.html">MM_AllocNode</a></td></tr>
25 <tr><td nowrap align=right valign=top>struct &nbsp;</td><td valign=bottom><a class="el" href="structMM__AllocQueryInfo.html">MM_AllocQueryInfo</a></td></tr>
26 <tr><td nowrap align=right valign=top>class &nbsp;</td><td valign=bottom><a class="el" href="classMM__Audit__Imp.html">MM_Audit_Imp</a></td></tr>
27 <tr><td nowrap align=right valign=top>struct &nbsp;</td><td valign=bottom><a class="el" href="structMM__AuditOverheadStats.html">MM_AuditOverheadStats</a></td></tr>
28 <tr><td nowrap align=right valign=top>struct &nbsp;</td><td valign=bottom><a class="el" href="structMM__FailInsertParam.html">MM_FailInsertParam</a></td></tr>
29 <tr><td nowrap align=right valign=top>struct &nbsp;</td><td valign=bottom><a class="el" href="structMM__Stats__CB.html">MM_Stats_CB</a></td></tr>
30 <tr><td nowrap align=right valign=top>struct &nbsp;</td><td valign=bottom><a class="el" href="structMM__Stats__t.html">MM_Stats_t</a></td></tr>
31 <tr><td nowrap align=right valign=top>class &nbsp;</td><td valign=bottom><a class="el" href="classOsclMemAudit.html">OsclMemAudit</a></td></tr>
32 <tr><td nowrap align=right valign=top>class &nbsp;</td><td valign=bottom><a class="el" href="classOsclMemStatsNode.html">Oscl (…)
    [all...]
oscl__tls_8h.html 16 <tr><td nowrap align=right valign=top>class &nbsp;</td><td valign=bottom><a class="el" href="classOsclTLS.html">OsclTLS</a></td></tr>
17 <tr><td nowrap align=right valign=top>class &nbsp;</td><td valign=bottom><a class="el" href="classOsclTLSRegistry.html">OsclTLSRegistry</a></td></tr>
18 <tr><td nowrap align=right valign=top>class &nbsp;</td><td valign=bottom><a class="el" href="classTLSStorageOps.html">TLSStorageOps</a></td></tr>
20 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclbase.html#a106">OSCL_TLS_BASE_SLOTS</a>&nbsp;&nbsp;&nbsp;<a class="el" href="group__osclbase.html#a23">OSCL_TLS_ID_BASE_LAST</a> +1</td></tr>
21 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclbase.html#a107">OSCL_TLS_EXTERNAL_SLOTS</a>&nbsp;&nbsp;&nbsp;0</td></tr>
22 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclbase.html#a108">OSCL_TLS_MAX_SLOTS</a>&nbsp;&nbsp;&nbsp;( OSCL_TLS_BASE_SLOTS + OSCL_TLS_EXTERNAL_SLOTS)</td></tr>
24 <tr><td nowrap align=right valign=top>typedef <a class="el" href="group__osclbase.html#a25">OsclAny</a>&nbsp;</td><td valign=bottom><a class="el" href="group__osclbase.html#a10">TOsclTlsKey</a></td></tr>
26 <tr><td nowrap align=right valign=top>const uint32&nbsp;</td><td valign=bottom><a class="el" href="group__osclbase.html#a11">OSCL_TLS_ID_MAGICNUM</a> = 0</td></tr>
27 <tr><td nowrap align=right valign=top>const uint32&nbsp;</td><td valign=bottom><a class="el" href="group__osclbase.html#a12">OSCL_TLS_ID_ERRORHOOK</a> = 1</td></tr>
28 <tr><td nowrap align=right valign=top>const uint32&nbsp;</td><td valign=bottom><a class="el" href="group__osclbase.html#a13"> (…)
    [all...]
oscl__string__utils_8h.html 18 <tr><td nowrap align=right valign=top>#define&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a46">oscl_isdigit</a>(c)&nbsp;&nbsp;&nbsp;((c) &gt;= '0' &amp;&amp; (c) &lt;= '9')</td></tr>
20 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF const char *&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a9">skip_whitespace</a> (const char *ptr)</td></tr>
21 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF char *&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a10">skip_whitespace</a> (char *ptr)</td></tr>
22 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF const char *&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a11">skip_whitespace</a> (const char *start, const char *end)</td></tr>
23 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF const char *&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a12">skip_to_whitespace</a> (const char *start, const char *end)</td></tr>
24 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF const char *&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a13">skip_to_line_term</a> (const char *start_ptr, const char *end_ptr)</td></tr>
25 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF const char *&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a14">skip_whitespace_and_line_term</a> (const char *start, const char *end)</td></tr>
26 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF int&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a15">extract_string</a> (const char *in_ptr, char *outstring, int maxsize)</td></tr>
27 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF int&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a16">extract_string</a> (const char *start, const char *end, char *outstring, int maxsize)</td></tr>
28 <tr><td nowrap align=right valign=top>OSCL_IMPORT_REF bool&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.ht (…)
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
access-binary-trees.js 5 function TreeNode(left,right,item){
7 this.right = right;
13 else return this.item + this.left.itemCheck() - this.right.itemCheck();

Completed in 94 milliseconds

12 3 4 5 6 7 8 91011>>