Searched refs:left (Results 151 - 175 of 2298) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DDiv.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() / right.num());
H A DMinus.java38 * @param left non-null reference to the evaluated left operand.
46 public XObject operate(XObject left, XObject right) argument
49 return new XNumber(left.num() - right.num());
H A DMod.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() % right.num());
H A DMult.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() * right.num());
H A DPlus.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() + right.num());
/external/chromium/chrome/browser/resources/net_internals/
H A Dview.js18 View.prototype.setGeometry = function(left, top, width, height) {
19 this.left_ = left;
94 DivView.prototype.setGeometry = function(left, top, width, height) {
95 DivView.superClass_.setGeometry.call(this, left, top, width, height);
98 setNodePosition(this.node_, left, top, width, height);
130 WindowView.prototype.setGeometry = function(left, top, width, height) {
131 WindowView.superClass_.setGeometry.call(this, left, top, width, height);
132 this.childView_.setGeometry(left, top, width, height);
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_account_picker.css16 left: 0;
H A Dbubble.css34 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
[all...]
/external/chromium_org/chrome/browser/resources/sync_file_system_internals/
H A Dmain.css20 padding-left: 0.5em;
22 text-align: left;
47 padding-left: 18px;
54 padding-left: 18px;
/external/chromium_org/remoting/webapp/
H A Dconnection_stats.css8 left: 0;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLViewer.css41 margin-left: 20px;
51 margin-left: 1em;
61 margin-left: -10px;
64 background-position: left top;
/external/guava/guava/src/com/google/common/collect/
H A DBstBalancePolicy.java32 * subtrees {@code left} and {@code right}. It is guaranteed that the resulting tree will have
33 * the same inorder traversal order as the subtree {@code left}, then the entry {@code source},
36 N balance(BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right); argument
39 * Constructs a locally balanced tree around the subtrees {@code left} and {@code right}. It is
41 * {@code left}, then the subtree {@code right}.
44 N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right); argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMarginLayoutParams.java20 public void setMargins(int left, int top, int right, int bottom) { argument
21 realMarginLayoutParams.leftMargin = left;
/external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
H A Dimage_util.js85 * new Rect(left, top, width, height)
87 * new Rect(rect) // anything with left, top, width, height properties
88 * new Rect(bounds) // anything with left, top, right, bottom properties
96 this.left = arguments[0];
103 this.left = 0;
111 if ('left' in source && 'top' in source) {
112 this.left = source.left;
115 this.width = source.right - source.left;
120 this.left
[all...]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DRopeByteString.java116 private final ByteString left; field in class:RopeByteString
125 * @param left string on the left of this node, should have {@code size() >
130 private RopeByteString(ByteString left, ByteString right) { argument
131 this.left = left;
133 leftLength = left.size();
135 treeDepth = Math.max(left.getTreeDepth(), right.getTreeDepth()) + 1;
148 * @param left string on the left
152 concatenate(ByteString left, ByteString right) argument
213 concatenateBytes(ByteString left, ByteString right) argument
234 newInstanceForTest(ByteString left, ByteString right) argument
596 balance(ByteString left, ByteString right) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DPODIntervalTree.h163 // Because the intervals are sorted by left endpoint, inorder
166 // See whether we need to traverse the left subtree.
167 IntervalNode* left = node->left();
168 if (left
171 && !(left->data().maxHigh() < adapter.lowValue()))
172 searchForOverlapsFrom<AdapterType>(left, adapter);
189 IntervalNode* left = node->left(); local
190 if (left) {
213 IntervalNode* left = node->left(); local
[all...]
H A DPODRedBlackTree.h283 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/chromium_org/third_party/bintrees/bintrees/
H A Dwalker.py72 return self._node.left is not None
78 self._node = self._node.left
83 self._node = self._node.left
89 return self._node.left is not None
94 def _next_item(self, key, left, right, less_than):
103 node = left(node)
113 while left(node) is not None:
114 node = left(node)
129 left=attrgetter("left"),
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DOverviewGrid.js111 * @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
[all...]
H A DnetworkPanel.css41 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
[all...]
/external/chromium_org/chrome/browser/resources/ntp_android/
H A Dmostvisited_tablet.css47 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...]
/external/dropbear/libtomcrypt/src/ciphers/
H A Dkasumi.c103 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, ke
143 ulong32 left, right, temp; local
170 ulong32 left, right, temp; local
[all...]
/external/e2fsprogs/e2fsck/
H A Ddict.c51 #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
426 dict_similar(const dict_t *left, const dict_t *right) argument
861 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *left; local
895 dnode_t *nil = dict_nil(dict), *parent, *left; local
[all...]
/external/opencv/cv/src/
H A Dcvutils.cpp113 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 *
111 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn, const uchar* ) argument
201 icvCopyReflect101Border_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn ) argument
334 icvCopyConstBorder_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn, const uchar* value ) argument
[all...]
/external/aac/libAACenc/src/
H A Dchaosmeasure.cpp110 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;

Completed in 656 milliseconds

1234567891011>>