/external/chromium_org/third_party/WebKit/Source/core/css/ |
Rect.h | 35 CSSPrimitiveValue* right() const { return m_right.get(); } function in class:blink::RectBase 40 void setRight(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> right) { m_right = right; } 79 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText()); 85 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) 87 return "rect(" + top + ' ' + right + ' ' + bottom + ' ' + left + ')'; 103 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText()); 109 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) 113 result.reserveCapacity(top.length() + right.length() + bottom.length() + left.length() + 3); 115 if (right != top || bottom != top || left != top) [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Outline.java | 142 public void setRect(int left, int top, int right, int bottom) { 143 setRoundRect(left, top, right, bottom, 0.0f); 150 setRect(rect.left, rect.top, rect.right, rect.bottom); 158 public void setRoundRect(int left, int top, int right, int bottom, float radius) { 159 if (left >= right || top >= bottom) { 165 mRect.set(left, top, right, bottom); 174 setRoundRect(rect.left, rect.top, rect.right, rect.bottom, radius); 180 public void setOval(int left, int top, int right, int bottom) { 181 if (left >= right || top >= bottom) { 186 if ((bottom - top) == (right - left)) [all...] |
/frameworks/native/include/ui/ |
Rect.h | 37 left = right = top = bottom = 0; 42 right = w; 49 right = r; 56 right = rb.x; 63 left = top = right = bottom = 0; 78 return right - left; 87 return Rect(right - left, bottom - top); 96 right = rb.x; 105 return Point(right, bottom); 108 return Point(right, top) [all...] |
/external/chromium_org/third_party/icu/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;
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
ActiveEdge_Test.cpp | 70 UnitTest::ActiveEdge left, right; local 72 right.fWorkEdge.fEdge = &rightIn; 76 right.fAbove = leftRight[x][2]; 77 right.fTangent = right.fBelow = leftRight[x][3]; 78 SkASSERT(left < right); 79 SkASSERT(operator_less_than(left, right)); 80 SkASSERT(!(right < left)); 81 SkASSERT(!operator_less_than(right, left));
|
/external/chromium_org/v8/test/webkit/ |
order-of-operations.js | 29 function right() { function 30 leftRight = leftRight + "Right"; 33 shouldBe('(function(){ leftRight = ""; left() > right(); return leftRight; })()', '"LeftRight"'); 34 shouldBe('(function(){ leftRight = ""; left() >= right(); return leftRight; })()', '"LeftRight"'); 35 shouldBe('(function(){ leftRight = ""; left() < right(); return leftRight; })()', '"LeftRight"'); 36 shouldBe('(function(){ leftRight = ""; left() <= right(); return leftRight; })()', '"LeftRight"'); 37 shouldBe('(function(){ leftRight = ""; left() + right(); return leftRight; })()', '"LeftRight"'); 38 shouldBe('(function(){ leftRight = ""; left() - right(); return leftRight; })()', '"LeftRight"'); 39 shouldBe('(function(){ leftRight = ""; left() / right(); return leftRight; })()', '"LeftRight"'); 40 shouldBe('(function(){ leftRight = ""; left() * right(); return leftRight; })()', '"LeftRight"') [all...] |
/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;
|
/external/skia/experimental/Intersection/ |
ActiveEdge_Test.cpp | 70 UnitTest::ActiveEdge left, right; local 72 right.fWorkEdge.fEdge = &rightIn; 76 right.fAbove = leftRight[x][2]; 77 right.fTangent = right.fBelow = leftRight[x][3]; 78 SkASSERT(left < right); 79 SkASSERT(operator_less_than(left, right)); 80 SkASSERT(!(right < left)); 81 SkASSERT(!operator_less_than(right, left));
|
/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/pdfium/fpdfsdk/include/ |
fpdf_transformpage.h | 21 * @param[in] right - The right of the rectangle.
25 DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bottom, float right, float top);
32 * @param[in] right - The right of the rectangle.
36 DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, float bottom, float right, float top);
43 * @param[in] right - Pointer to a double value receiving the right of the rectangle.
47 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top);
53 * @param[in] right - Pointer to a double value receiving the right of the rectangle. [all...] |
/external/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...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableOutlineView.java | 66 setOutlineRect(rect.left, rect.top, rect.right, rect.bottom); 73 protected void setOutlineRect(float left, float top, float right, float bottom) { 76 mOutlineRect.set((int) left, (int) top, (int) right, (int) bottom); 80 mOutlineRect.right = (int) Math.max(left, mOutlineRect.right);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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;
|