/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
CameraUtils.java | 60 long right = widthB * (long) heightB; local 61 if (left == right) { 63 right = widthB; 65 return (left < right) ? -1 : (left > right ? 1 : 0);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableOutlineView.java | 83 setOutlineRect(rect.left, rect.top, rect.right, rect.bottom); 114 protected void setOutlineRect(float left, float top, float right, float bottom) { 118 mOutlineRect.set((int) left, (int) top, (int) right, (int) bottom); 122 mOutlineRect.right = (int) Math.max(left, mOutlineRect.right);
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
BinTree.h | 33 m_Stack.push(m_pNode->right); 42 m_pNode = m_pNode->right; // should be root 48 m_Stack.push(m_pNode->right); 63 m_Queue.push(m_pNode->right); 72 m_pNode = m_pNode->right; // should be root 78 m_Queue.push(m_pNode->right); 212 bool isRoot() const { return (m_pNode->right == m_pNode); } 264 // | Left Right | 275 TreeImpl() : NodeFactory<DataType>() { node.left = node.right = &node; } 289 if ((*data).right == &pClient.node [all...] |
/hardware/qcom/display/msm8960/libtilerenderer/ |
tilerenderer.cpp | 37 int right, int bottom) { 46 if (!left && !right && !top && !bottom) { 49 right = width; 53 if (!left && !right && !top && !bottom) { 59 int l = left, t = (height - bottom), w = (right - left), h = (bottom - top), preserve = 0;
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/interpolation/ |
background-position-origin-interpolation.html | 8 background-image: linear-gradient(to right, coral, coral); 15 margin-right: 10px; 50 // right-top 54 to: 'right 20px top 20px', 60 {at: 1, is: 'right 20px top 20px'}, 89 // right-center 93 to: 'right 20px center', 99 {at: 1, is: 'right 20px center'}, 128 // right-bottom 132 to: 'right 20px bottom 20px' [all...] |
/external/jacoco/org.jacoco.doc/docroot/doc/.resources/ |
doc.css | 165 text-align:right;
166 padding-right:4px;
171 text-align:right;
186 text-align:right;
187 padding-right:4px;
192 text-align:right;
201 text-align:right;
202 padding-right:4px;
207 text-align:right;
223 .right {
[all...] |
/external/skia/src/core/ |
SkRect.cpp | 11 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { 13 if (left >= right || top >= bottom) { 19 this->set(left, top, right, bottom); 23 if (right > fRight) fRight = right; 113 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { 114 CHECK_INTERSECT(left, top, right, bottom, fLeft, fTop, fRight, fBottom); 129 void SkRect::join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { 131 if (left >= right || top >= bottom) { 137 this->set(left, top, right, bottom) [all...] |
/external/webrtc/webrtc/modules/desktop_capture/ |
differ.cc | 28 // One additional row/column is added as a boundary on the right & bottom. 56 // Calc size of partial blocks which may be present on right and bottom edge. 146 // We've found a modified block. Look at blocks to the right and below 154 // Group with blocks to the right. 157 bool* right = diff_info + 1; local 158 while (*right) { 159 *right++ = false; 171 right = bottom; 173 if (!*right++) { 183 right = bottom [all...] |
/hardware/qcom/display/msm8909/libqdutils/ |
cb_utils.cpp | 35 irect.right = max(rect1.right, rect2.right); 42 copybit_rect_t clear_rect = {rect.left, rect.top,rect.right,rect.bottom}; 64 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom); 67 if ((dirtyRect.right - dirtyRect.left > 0) && 70 Rect tmpRect(dirtyRect.left,dirtyRect.top,dirtyRect.right, 86 displayFrame.right,displayFrame.bottom); 98 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right, 112 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom} [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
EventGeometry.java | 102 event.right = event.left + colWidth; 110 if (event.left < selection.right && event.right >= selection.left 122 float right = event.right; local 127 if (x <= right) { 140 // x > right 141 float dx = x - right; 143 // the upper right corner 148 // the lower right corne [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
position-handler.js | 26 return scope.consumeToken(/^(left|center|right|top|bottom)\b/i, string) || scope.consumeLengthOrPercent(string); 32 right: {'%': 100}, 50 if (/top|bottom/.test(tokens[0]) || /left|right/.test(tokens[1])) { 56 if (!/left|right|center|Object/.test(tokens[0])) 83 bottomOrRight = /bottom|right/.test(token); 84 pos = {left: 0, right: 0, center: pos, top: 1, bottom: 1}[token]; 92 // If bottom or right we need to subtract the length from 100%
|
/external/icu/icu4c/source/i18n/ |
digitinterval.h | 26 * position just left of that is 1. The digit position just to the right of 27 * the decimal is -1. The digit position just to the right of that is -2. 85 * Changes the number of digits to the right of the decimal point that 87 * to the right of the decimal point. 125 * Returns number of digits to the right of the decimal that this 134 * Caution: If this interval spans all digits to the left or right of 144 * digit. Returns INT32_MIN if this interval spans all digits to right of
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/ |
ActivityFlinger.java | 49 public ActivityTransition(Class<? extends Activity> left, Class<? extends Activity> right) { 51 mRight = right; 71 Class<? extends Activity> right = null; typedefs 79 right = it.next(); 81 right = null; 83 mActivityTransitions.put(current, new ActivityTransition(left, right)); 85 current = right;
|
/external/webrtc/webrtc/modules/video_render/external/ |
video_render_external_impl.cc | 46 const float right, 65 float& right, 73 right = 0; 137 const float right, 149 const float right, 171 const float right, 183 const float right,
|
/frameworks/base/core/java/android/animation/ |
RectEvaluator.java | 59 * (left, top, right, and bottom). 75 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction); local 78 return new Rect(left, top, right, bottom); 80 mRect.set(left, top, right, bottom);
|
/frameworks/base/core/java/com/android/internal/widget/ |
BackgroundFallback.java | 52 int right = 0; local 75 right = Math.max(right, child.getRight()); 79 if (left >= right || top >= bottom) { 92 if (right < width) { 93 mBackgroundFallback.setBounds(right, top, width, height); 97 mBackgroundFallback.setBounds(left, bottom, right, height);
|
/frameworks/base/docs/html/sdk/api_diff/19/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/api_diff/20/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/api_diff/21/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/api_diff/22/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/api_diff/23/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/api_diff/24/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/api_diff/n-preview-4-incr/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/support_api_diff/22.2.0/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|
/frameworks/base/docs/html/sdk/support_api_diff/22.2.1/ |
stylesheet-jdiff.css | 4 div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;} 8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;} 9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;} 12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
|