Searched refs:left (Results 26 - 50 of 2403) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DBstCountBasedBalancePolicies.java52 BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right) {
53 return checkNotNull(nodeFactory).createNode(source, left, right);
58 public N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right) {
59 if (left == null) {
62 return left;
63 } else if (countAggregate.treeValue(left) > countAggregate.treeValue(right)) {
65 left, left.childOrNull(LEFT), combine(nodeFactory, left.childOrNull(RIGHT), right));
67 return nodeFactory.createNode(right, combine(nodeFactory, left, righ
[all...]
/external/openssh/openbsd-compat/
H A Drealpath.c49 * in which case the path which caused trouble is left in (resolved).
59 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
69 left_len = strlcpy(left, path + 1, sizeof(left));
76 left_len = strlcpy(left, path, sizeof(left));
78 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
84 * Iterate over path components in `left'.
88 * Extract the next path component and adjust `left'
91 p = strchr(left, '/');
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
H A Djquery.isonscreen.js17 left: $(window).scrollLeft(),
24 if( box.left+box.width-container.left > 0 &&
25 box.left < container.width+container.left &&
39 left: $(window).scrollLeft(),
46 if( $(this).offset().left+$(this).width()-container.left > 0 &&
47 $(this).offset().left < container.width+container.left
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitReaderBuffer.java19 int left = 8 - position % 8;
21 if (i <= left) {
22 rc = (v << (position % 8) & 0xFF) >> ((position % 8) + (left - i));
25 int now = left;
26 int then = i - left;
40 int left = 8 - position % 8;
41 if (left == 8) {
42 left = 0;
44 readBits(left);
45 return left;
[all...]
/external/chromium_org/remoting/base/
H A Dtyped_buffer_unittest.cc51 TypedBuffer<Data> left; local
54 EXPECT_FALSE(left.get());
55 EXPECT_EQ(left.length(), 0u);
60 left = right.Pass();
64 EXPECT_EQ(left.get(), raw_ptr);
65 EXPECT_EQ(left.length(), sizeof(int));
74 TypedBuffer<Data> left(sizeof(int));
77 EXPECT_TRUE(left.get());
78 EXPECT_EQ(left.length(), sizeof(int));
82 Data* raw_left = left
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DPair.java25 protected ASTree left, right; field in class:Pair
28 left = _left;
37 sbuf.append(left == null ? "<null>" : left.toString());
44 public ASTree getLeft() { return left; }
48 public void setLeft(ASTree _left) { left = _left; }
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntRectExtent.h47 IntRectExtent(int top, int right, int bottom, int left) argument
51 , m_left(left)
64 int left() const { return m_left; } function in class:WebCore::IntRectExtent
65 void setLeft(int left) { m_left = left; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
90 && a.left() == b.left();
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dhome_page_overlay.css8 margin-left: 10px;
14 margin-left: 0;
/external/chromium_org/chrome/browser/resources/
H A Dprofile_signin_confirmation.css7 margin-left: 0;
15 margin-left: 0;
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_test_util.h28 void ExpectEquivalentServiceMetadata(const ServiceMetadata& left,
30 void ExpectEquivalentDetails(const FileDetails& left, const FileDetails& right);
31 void ExpectEquivalentMetadata(const FileMetadata& left,
33 void ExpectEquivalentTrackers(const FileTracker& left,
/external/chromium_org/third_party/icu/source/common/
H A Duarrsort.h30 * @param left Pointer to the "left" 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/chromium_org/ui/gfx/
H A Dinsets.cc19 Insets::Insets(int top, int left, int bottom, int right) argument
20 : InsetsBase<Insets, int>(top, left, bottom, right) {}
25 border.left,
35 return base::StringPrintf("%d,%d,%d,%d", top(), left(), bottom(), right());
/external/icu4c/common/
H A Duarrsort.h30 * @param left Pointer to the "left" 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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRect.java14 public void __constructor__(int left, int top, int right, int bottom) { argument
15 realRect.left = left;
22 realRect.left = otherRect.left;
30 set(rect.left, rect.top, rect.right, rect.bottom);
34 public void set(int left, int top, int right, int bottom) { argument
35 realRect.left = left;
43 return realRect.right - realRect.left;
104 intersect(int left, int top, int right, int bottom) argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/css/
H A Dstatus.css7 padding-left: 30px;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, key),
167 node.left = this.root_;
172 node.left = this.root_.left;
173 this.root_.left = null;
196 if (!this.root_.left) {
200 this.root_ = this.root_.left;
239 // the left subtree.
242 } else if (this.root_.left) {
243 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, key),
167 node.left = this.root_;
172 node.left = this.root_.left;
173 this.root_.left = null;
196 if (!this.root_.left) {
200 this.root_ = this.root_.left;
239 // the left subtree.
242 } else if (this.root_.left) {
243 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, tag),
168 node.left = this.root_;
173 node.left = this.root_.left;
174 this.root_.left = null;
197 if (!this.root_.left) {
201 this.root_ = this.root_.left;
255 // the left subtree.
258 } else if (this.root_.left) {
259 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/v8/benchmarks/
H A Dsplay.js57 left: GeneratePayloadTree(depth - 1, tag),
173 node.left = this.root_;
178 node.left = this.root_.left;
179 this.root_.left = null;
202 if (!this.root_.left) {
206 this.root_ = this.root_.left;
260 // the left subtree.
263 } else if (this.root_.left) {
264 return this.findMax(this.root_.left);
[all...]
/external/clang/test/Modules/
H A Ddiamond-pch.c12 left(&f);
24 lr.left = 17;
H A Ddiamond.c13 left(&f);
25 lr.left = 17;
/external/v8/benchmarks/
H A Dsplay.js57 left: GeneratePayloadTree(depth - 1, tag),
173 node.left = this.root_;
178 node.left = this.root_.left;
179 this.root_.left = null;
202 if (!this.root_.left) {
206 this.root_ = this.root_.left;
260 // the left subtree.
263 } else if (this.root_.left) {
264 return this.findMax(this.root_.left);
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DEquals.java38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right) argument
48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
65 XObject left = m_left.execute(xctxt, true);
68 boolean result = left.equals(right) ? true : false;
69 left.detach();
/external/chromium/chrome/browser/resources/net_internals/
H A Dtopmidbottomview.js38 TopMidBottomView.prototype.setGeometry = function(left, top, width, height) {
39 TopMidBottomView.superClass_.setGeometry.call(this, left, top, width, height);
47 this.topView_.setGeometry(left, top, width, topbarHeight);
48 this.midView_.setGeometry(left, this.topView_.getBottom(),
50 this.bottomView_.setGeometry(left, this.midView_.getBottom(),
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-binary-trees.js5 function TreeNode(left,right,item){
6 this.left = left;
12 if (this.left==null) return this.item;
13 else return this.item + this.left.itemCheck() - this.right.itemCheck();

Completed in 962 milliseconds

1234567891011>>