/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
GapRects.h | 33 const LayoutRect& right() const { return m_right; } function in struct:WebCore::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/skia/src/core/ |
SkBlitter_A1.cpp | 25 int right = x + width; local 28 int rite_mask = 0xFF << (8 - (right & 7)); 29 int full_runs = (right >> 3) - ((x + 7) >> 3); 31 // check for empty right mask, so we don't read off the end
|
/external/skia/src/core/ |
SkBlitter_A1.cpp | 25 int right = x + width; local 28 int rite_mask = 0xFF << (8 - (right & 7)); 29 int full_runs = (right >> 3) - ((x + 7) >> 3); 31 // check for empty right mask, so we don't read off the end
|
/external/valgrind/main/helgrind/tests/ |
tc14_laog_dinphils.c | 16 long right = (left + 1) % 5; local 19 pthread_mutex_lock(&chop[right]); 22 pthread_mutex_unlock(&chop[right]);
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
RecentApplicationsBackground.java | 61 protected boolean setFrame(int left, int top, int right, int bottom) { 63 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) { 66 return super.setFrame(left, top, right, bottom); 106 int left, right; local 110 right = chld.right + bkg.right; 114 right = getRight(); 116 background.setBounds(left, top, right, bottom); 146 r.bottom = r.right = Integer.MIN_VALUE [all...] |
/frameworks/native/include/ui/ |
Rect.h | 41 right = w; 48 right = r; 55 right = rb.x; 62 left = top = right = bottom = 0; 77 return right - left; 86 return Rect(right - left, bottom - top); 95 right = rb.x; 104 return Point(right, bottom); 107 return Point(right, top); 116 (right == rhs.right) && (bottom == rhs.bottom) [all...] |
/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ |
Rect.java | 9 public int right; field in class:Rect 32 out.writeInt(right); 39 right = in.readInt();
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
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/resources/ |
incognito_tab.css | 16 float: right; 28 margin-right: auto; 48 right: 0;
|
/external/chromium_org/chrome/browser/resources/memory_internals/ |
snapshot_view.css | 6 text-align: right; 30 text-align: right; 35 text-align: right;
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Div.java | 39 * @param right non-null reference to the evaluated right operand. 45 public XObject operate(XObject left, XObject right) 48 return new XNumber(left.num() / right.num());
|
Minus.java | 39 * @param right non-null reference to the evaluated right operand. 46 public XObject operate(XObject left, XObject right) 49 return new XNumber(left.num() - right.num());
|
Mod.java | 39 * @param right non-null reference to the evaluated right operand. 45 public XObject operate(XObject left, XObject right) 48 return new XNumber(left.num() % right.num());
|
Mult.java | 39 * @param right non-null reference to the evaluated right operand. 45 public XObject operate(XObject left, XObject right) 48 return new XNumber(left.num() * right.num());
|
Neg.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException 46 return new XNumber(-right.num());
|
Plus.java | 39 * @param right non-null reference to the evaluated right operand. 45 public XObject operate(XObject left, XObject right) 48 return new XNumber(left.num() + right.num());
|
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
tcmalloc_snapshot_view.css | 40 /* Allocation size in MB, right-aligned for easier comparison of columns. */ 43 padding-right: 10px; 44 text-align: right; 51 padding-right: 10px; 52 text-align: right; 56 /* Trace name, inline so it appears to the right of the byte count. */
|
/external/chromium_org/chrome/browser/resources/extensions/ |
pack_extension_overlay.css | 11 text-align: right;
|
/external/chromium_org/chrome/browser/resources/options/ |
home_page_overlay.css | 15 margin-right: 10px;
|
language_dictionary_overlay.css | 13 margin-right: 16em; 19 margin-right: auto; 24 right: 32px; 30 right: auto;
|
/external/chromium_org/ui/gfx/ |
insets.h | 24 Insets(int top, int left, int bottom, int right); 39 static_cast<int>(right() * x_scale));
|
/external/chromium_org/ui/views/ |
border.h | 52 static Border* CreateEmptyBorder(int top, int left, int bottom, int right); 59 int right,
|
/external/guava/guava/src/com/google/common/collect/ |
BstBalancePolicy.java | 32 * subtrees {@code left} and {@code right}. It is guaranteed that the resulting tree will have 34 * then the subtree {@code right}. 36 N balance(BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right); 39 * Constructs a locally balanced tree around the subtrees {@code left} and {@code right}. It is 41 * {@code left}, then the subtree {@code right}. 44 N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowMarginLayoutParams.java | 20 public void setMargins(int left, int top, int right, int bottom) { 23 realMarginLayoutParams.rightMargin = right;
|
/external/tremolo/Tremolo/ |
mdct.h | 58 extern void mdct_shift_right(int n, DATA_TYPE *in, DATA_TYPE *right); 61 DATA_TYPE *in,DATA_TYPE *right,
|