HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 126 - 150 of 2666) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/icu/source/common/
uarrsort.c 38 uprv_uint16Comparator(const void *context, const void *left, const void *right) {
39 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right;
43 uprv_int32Comparator(const void *context, const void *left, const void *right) {
44 return *(const int32_t *)left - *(const int32_t *)right;
48 uprv_uint32Comparator(const void *context, const void *left, const void *right) {
49 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right;
171 int32_t left, right; local
173 /* start and left are inclusive, limit and right are exclusive */
180 left=start;
187 while(/* array[left]<x *
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_treewriter.c 37 unsigned int left, right; local
40 left = num_events[-tree[i]];
42 left = convert_distribution(tree[i], tree, branch_ct, num_events);
49 branch_ct[i >> 1][0] = left;
51 return left + right;
  /external/chromium_org/third_party/skia/tools/lua/
skia.lua 20 Sk.Rect = { left = 0, top = 0, right = 0, bottom = 0 }
27 rect = { left = l, top = t, right = r, bottom = b }
40 return self.right - self.left
52 local value = self.left * 0
60 self.left = 0
67 self.left = l
76 self.left = self.left + dx
85 self.left = self.left + d
    [all...]
  /external/chromium_org/ui/gfx/geometry/
insets_base.h 18 Type left() const { return left_; } function in class:gfx::InsetsBase
23 // left and right insets.
33 void Set(Type top, Type left, Type bottom, Type right) {
35 left_ = left;
61 InsetsBase(Type top, Type left, Type bottom, Type right)
63 left_(left),
  /external/icu/icu4c/source/common/
uarrsort.c 38 uprv_uint16Comparator(const void *context, const void *left, const void *right) {
39 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right;
43 uprv_int32Comparator(const void *context, const void *left, const void *right) {
44 return *(const int32_t *)left - *(const int32_t *)right;
48 uprv_uint32Comparator(const void *context, const void *left, const void *right) {
49 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right;
171 int32_t left, right; local
173 /* start and left are inclusive, limit and right are exclusive */
180 left=start;
187 while(/* array[left]<x *
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_treewriter.c 37 unsigned int left, right; local
40 left = num_events[-tree[i]];
42 left = convert_distribution(tree[i], tree, branch_ct, num_events);
49 branch_ct[i >> 1][0] = left;
51 return left + right;
  /external/lzma/CPP/Common/
MyVector.h 81 int FindInSorted(const T& item, int left, int right) const
83 while (left != right)
85 int mid = (left + right) / 2;
92 left = mid + 1;
99 int left = 0, right = Size(); local
100 while (left != right)
102 int mid = (left + right) / 2;
109 left = mid + 1;
116 int left = 0, right = Size(); local
117 while (left != right)
223 int left = 0, right = Size(); local
239 int left = 0, right = Size(); local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_reconintra.c 38 const uint8_t *left) { \
39 type##_predictor(dst, stride, size, above, left); \
49 const uint8_t *above, const uint8_t *left) {
54 dst[r * stride] = ROUND_POWER_OF_TWO(left[r] + left[r + 1], 1);
55 dst[(bs - 1) * stride] = left[bs - 1];
60 dst[r * stride] = ROUND_POWER_OF_TWO(left[r] + left[r + 1] * 2 +
61 left[r + 2], 2);
62 dst[(bs - 2) * stride] = ROUND_POWER_OF_TWO(left[bs - 2]
    [all...]
  /external/chromium_org/chrome/browser/resources/user_manager/
user_manager_tutorial.css 13 left: 0;
23 margin-left: 30px;
37 left: 20px;
49 left: 60px;
61 left: 100px;
106 .slide-buttons button.left {
107 left: 16px;
111 html[dir=rtl] .slide-buttons button.left {
121 border-left: 15px solid transparent;
126 left: 120px
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionIteratorTest.java 42 assertEquals(1, rect.left);
48 assertEquals(1, rect.left);
59 assertEquals(1, rect.left);
64 assertEquals(1, rect.left);
69 assertEquals(5, rect.left);
75 assertEquals(1, rect.left);
86 assertEquals(1, rect.left);
91 assertEquals(1, rect.left);
97 assertEquals(1, rect.left);
108 assertEquals(5, rect.left);
    [all...]
RectTest.java 53 assertEquals(1, mRect.left);
65 assertEquals(1, mRect.left);
75 assertEquals(0, mRect.left);
82 assertEquals(0, mRect.left);
113 assertEquals(1, mRect.left);
128 assertEquals(5, mRect.left);
136 assertEquals(5, mRect.left);
146 // 1. left < right, top < bottom
147 // this.left < this.right, this.top < this.bottom
151 assertEquals(0, mRect.left);
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_test_util.h 28 void ExpectEquivalentDetails(const FileDetails& left, const FileDetails& right);
29 void ExpectEquivalentMetadata(const FileMetadata& left,
31 void ExpectEquivalentTrackers(const FileTracker& left,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
GapRects.h 31 const LayoutRect& left() const { return m_left; } function in struct:blink::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
  /external/chromium_org/chrome/browser/resources/uber/
uber.css 13 left: 0;
19 /* This value is different from the left value to compensate for the scroll
38 left: 0;
55 left: 0;
  /external/chromium_org/third_party/polymer/components/paper-tabs/
paper-tabs.css 24 left: 0;
32 left: 0;
35 transition: width, left;
  /external/chromium_org/third_party/polymer/components-chromium/paper-tabs/
paper-tabs.css 24 left: 0;
32 left: 0;
35 transition: width, left;
  /external/chromium_org/third_party/webrtc/modules/video_render/external/
video_render_external_impl.h 49 const float left, const float top,
58 float& left, float& top,
94 const float left, const float top,
99 const float left, const float top,
109 const float left, const float top,
114 const void* colorKey, const float left,
  /external/chromium_org/third_party/webrtc/modules/video_render/ios/
video_render_ios_impl.h 39 const float left,
48 float& left,
67 const float left,
73 const float left,
83 const float left,
90 const float left,
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_mac_carbon_impl.h 52 const float left,
61 float& left,
97 const float left,
104 const float left,
116 const float left,
124 const float left,
video_render_mac_cocoa_impl.h 52 const float left,
61 float& left,
97 const float left,
104 const float left,
116 const float left,
124 const float left,
  /external/chromium_org/third_party/webrtc/modules/video_render/windows/
video_render_windows_impl.h 58 const float left, const float top,
67 float& left, float& top,
103 const float left, const float top,
108 const float left, const float top,
118 const float left, const float top,
124 const float left, const float top,
  /external/chromium_org/ui/base/ime/
candidate_window.cc 38 const Entry& left = candidates_[i]; local
40 if (left.value != right.value ||
41 left.label != right.label ||
42 left.annotation != right.annotation ||
43 left.description_title != right.description_title ||
44 left.description_body != right.description_body)
  /external/chromium_org/ui/gfx/
canvas_paint_win.cc 17 ps_.rcPaint.left = ps.rcPaint.left;
29 ps_.rcPaint.left = x;
41 skia::DrawToNativeContext(canvas, paint_dc_, ps_.rcPaint.left,
55 const int width = ps_.rcPaint.right - ps_.rcPaint.left;
68 -ps_.rcPaint.left / gfx::win::GetDeviceScaleFactor(),
  /external/chromium_org/v8/test/mjsunit/compiler/
shift-shr.js 7 // Check the results of `left >>> right`. The result is always unsigned (and
9 function test_shr(left) {
13 var temp = left >>> i;
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Div.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() / right.num());

Completed in 357 milliseconds

1 2 3 4 56 7 8 91011>>