HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 101 - 125 of 2429) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4c/source/i18n/
dtrule.cpp 69 DateTimeRule::operator=(const DateTimeRule& right) {
70 if (this != &right) {
71 fMonth = right.fMonth;
72 fDayOfMonth = right.fDayOfMonth;
73 fDayOfWeek = right.fDayOfWeek;
74 fWeekInMonth = right.fWeekInMonth;
75 fMillisInDay = right.fMillisInDay;
76 fDateRuleType = right.fDateRuleType;
77 fTimeRuleType = right.fTimeRuleType;
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
CameraUtils.java 56 long right = widthB * (long) heightB; local
57 if (left == right) {
59 right = widthB;
61 return (left < right) ? -1 : (left > right ? 1 : 0);
  /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/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableLengthBox.h 41 static PassRefPtrWillBeRawPtr<AnimatableLengthBox> create(PassRefPtrWillBeRawPtr<AnimatableValue> left, PassRefPtrWillBeRawPtr<AnimatableValue> right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> bottom)
43 return adoptRefWillBeNoop(new AnimatableLengthBox(left, right, top, bottom));
46 const AnimatableValue* right() const { return m_right.get(); } function in class:blink::FINAL
56 AnimatableLengthBox(PassRefPtrWillBeRawPtr<AnimatableValue> left, PassRefPtrWillBeRawPtr<AnimatableValue> right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> bottom)
58 , m_right(right)
  /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 */
181 right=limit;
192 while(/* x<array[right-1] *
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_treewriter.c 37 unsigned int left, right; local
45 right = num_events[-tree[i + 1]];
47 right = convert_distribution(tree[i + 1], tree, branch_ct, num_events);
50 branch_ct[i >> 1][1] = right;
51 return left + right;
  /external/chromium_org/third_party/skia/src/core/
SkTSort.h 121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) {
122 for (T* next = left + 1; next <= right; ++next) {
136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) {
138 SkTSwap(*pivot, *right);
140 while (left < right) {
147 SkTSwap(*newPivot, *right);
154 * This implementation recurses on the left region after pivoting and loops on the right,
160 * @param right the end of the region to be sorted (inclusive).
163 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) {
165 if (right - left < 32)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/
i_video_render.h 47 const float right,
58 float& right,
100 const float right,
107 const float right,
127 const float right,
  /external/chromium_org/third_party/webrtc/modules/video_render/linux/
video_render_linux_impl.h 51 const float right, const float bottom);
60 float& right, float& bottom) const;
96 const float right, const float bottom);
103 const float right, const float bottom);
117 const float right, const float bottom);
  /external/chromium_org/third_party/webrtc/modules/video_render/windows/
i_video_render_win.h 44 const float right,
53 float& right, float& bottom) = 0;
76 const float right, const float bottom) = 0;
83 const float right,
100 const float right, const float bottom) = 0;
  /external/chromium_org/ui/gfx/geometry/
insets_base.h 20 Type right() const { return right_; } function in class:gfx::InsetsBase
23 // left and right insets.
33 void Set(Type top, Type left, Type bottom, Type right) {
37 right_ = right;
61 InsetsBase(Type top, Type left, Type bottom, Type right)
65 right_(right) {}
  /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 */
181 right=limit;
192 while(/* x<array[right-1] *
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_treewriter.c 37 unsigned int left, right; local
45 right = num_events[-tree[i + 1]];
47 right = convert_distribution(tree[i + 1], tree, branch_ct, num_events);
50 branch_ct[i >> 1][1] = right;
51 return left + right;
  /external/lzma/CPP/7zip/Common/
FilePathAutoRename.cpp 45 unsigned left = 1, right = (1 << 30); local
46 while (left != right)
48 unsigned mid = (left + right) / 2;
52 right = mid;
54 return !MakeAutoName(name, extension, right, fullProcessedPath);
  /external/chromium_org/third_party/polymer/components/core-drawer-panel/
core-drawer-panel.css 35 right-drawer: make drawer on the right side
37 .right-drawer #drawer {
39 right: 0;
42 .right-drawer.transition #drawer {
61 right: 0;
69 .right-drawer #main {
73 .right-drawer.transition #main {
74 transition: right ease-in-out 0.3s, padding ease-in-out 0.3s;
85 right: 0
    [all...]
  /external/chromium_org/third_party/polymer/components-chromium/core-drawer-panel/
core-drawer-panel.css 35 right-drawer: make drawer on the right side
37 .right-drawer #drawer {
39 right: 0;
42 .right-drawer.transition #drawer {
61 right: 0;
69 .right-drawer #main {
73 .right-drawer.transition #main {
74 transition: right ease-in-out 0.3s, padding ease-in-out 0.3s;
85 right: 0
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionIteratorTest.java 44 assertEquals(10, rect.right);
50 assertEquals(1, rect.right);
61 assertEquals(10, rect.right);
66 assertEquals(15, rect.right);
71 assertEquals(15, rect.right);
77 assertEquals(1, rect.right);
88 assertEquals(10, rect.right);
93 assertEquals(5, rect.right);
99 assertEquals(1, rect.right);
110 assertEquals(10, rect.right);
    [all...]
RectTest.java 55 assertEquals(3, mRect.right);
67 assertEquals(3, mRect.right);
77 assertEquals(10, mRect.right);
84 assertEquals(10, mRect.right);
115 assertEquals(6, mRect.right);
130 assertEquals(10, mRect.right);
138 assertEquals(10, mRect.right);
146 // 1. left < right, top < bottom
147 // this.left < this.right, this.top < this.bottom
152 assertEquals(2, mRect.right);
    [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);
30 const FileMetadata& right);
32 const FileTracker& right);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
GapRects.h 33 const LayoutRect& right() const { return m_right; } 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/third_party/WebKit/Source/devtools/front_end/
overviewGrid.css 20 right: 0;
28 right: 0%;
40 border-right: 1px solid black;
52 margin-right: -3px;
59 .overview-grid-window-resizer-right {
61 margin-right: -2px;
  /external/chromium_org/chrome/browser/resources/memory_internals/
snapshot_view.css 6 text-align: right;
30 text-align: right;
35 text-align: right;
  /external/chromium_org/third_party/webrtc/modules/video_render/external/
video_render_external_impl.h 50 const float right, const float bottom);
59 float& right, float& bottom) const;
95 const float right, const float bottom);
100 const float right, const float bottom);
110 const float right, const float bottom);
115 const float top, const float right,
  /external/chromium_org/third_party/webrtc/modules/video_render/ios/
video_render_ios_impl.h 41 const float right,
50 float& right,
69 const float right,
75 const float right,
85 const float right,
92 const float right,
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_mac_carbon_impl.h 54 const float right,
63 float& right,
99 const float right,
106 const float right,
118 const float right,
126 const float right,

Completed in 2437 milliseconds

1 2 3 45 6 7 8 91011>>