/external/chromium_org/ui/platform_window/win/ |
win_window.cc | 23 wr.right = bounds.x() + bounds.width(); 30 wr.right - wr.left, wr.bottom - wr.top); 170 cr.right - cr.left, cr.bottom - cr.top));
|
/external/chromium_org/ui/views/controls/button/ |
menu_button.cc | 95 // right-to-left. 96 gfx::Point menu_position(lb.right(), lb.bottom()); 191 // the menu and context menu (this would happen if the right button is not 270 gfx::Rect arrow_bounds(width() - insets.right() - 315 return monitor_bounds.right() - 1;
|
/external/chromium_org/v8/src/ |
ast-value-factory.h | 119 AstConsString(const AstString* left, const AstString* right) 121 right_(right) {} 289 const AstString* right);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.commons.el_1.0.0.v201004212143.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
LineGraph.java | 95 int right= bounds.width - lastItem.getSize(g).x - PADDING/2; local 106 g.drawLine(left, bottom, right, bottom); 112 int xincrement= n > 1 ? (right-left) / (n-1) : 0;
|
/external/fonttools/Lib/fontTools/ttLib/ |
macUtils.py | 180 for (left, right), value in kern.kernTable.items(): 181 if left in names and right in names: 182 fondkerning.append((names[left], names[right], scale * value))
|
/external/guava/guava/src/com/google/common/collect/ |
RegularContiguousSet.java | 79 private static boolean equalsOrThrow(Comparable<?> left, @Nullable Comparable<?> right) { 80 return right != null && Range.compareOrThrow(left, right) == 0;
|
/external/icu/icu4c/ |
icu4c.css | 146 padding-right: 0.5em; 157 padding-right: 0.5em; 241 padding-right: 1em; 256 padding-right: 0.5em; 269 margin-right: 2em; 278 margin-right: 2px;
|
/external/icu/icu4c/source/i18n/unicode/ |
tblcoll.h | 674 const char *right, int32_t rightLength, [all...] |
/external/javassist/src/main/javassist/compiler/ |
JvstTypeChecker.java | 68 protected void atFieldAssign(Expr expr, int op, ASTree left, ASTree right) 73 right.accept(this); 83 super.atFieldAssign(expr, op, left, right);
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
breakpoint.c | 74 unsigned char left, right; local 77 right = 82 c |= right | left;
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/ |
dxgi_dll.c | 122 prect->right = prect->left + client_rect.right; 171 *width = client_rect.right - client_rect.left;
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
stw_ext_pbuffer.c | 162 rect.right = rect.left + iWidth; 183 rect.right - rect.left, /* width */ 201 assert(rect.right - rect.left == iWidth);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_optimize.c | 154 const int right = MIN2(write_end, reg_end); local 156 return left < right; 219 const int right = MIN2(write_end, reg_end); local 221 if (left < right) 240 const int right = MIN2(write_end, reg_end); local 246 return left < right; 288 const int right = MIN2(read_end, reg_end); local 290 return left < right; 330 const int right = write_end < reg_end ? write_end : reg_end; local 331 if (left < right) 365 const int right = write_end < reg_end ? write_end : reg_end; local [all...] |
/external/mksh/src/ |
syn.c | 113 tl = tl->right = block(TPIPE, tl->right, p); 168 tl = tl->right = block(TLIST, tl->right, p); 440 t->right = dogroup(); 457 t->right = thenpart(); 550 t->right = elsepart(); 568 t->right = thenpart(); 596 t = tl = tc, tl->right = NULL; 598 tl->right = tc, tl = tc [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/ |
TextSampleEntry.java | 225 int right; field in class:TextSampleEntry.BoxRecord 231 right = IsoTypeReader.readUInt16(in); 238 IsoTypeWriter.writeUInt16(bb, right);
|
/external/pdfium/core/src/fxge/android/ |
fpf_skiafont.cpp | 113 rtBBox.right = FPF_EM_ADJUST(x_ppem, cbox.xMax); 126 rtBBox.right = FPF_EM_ADJUST(FXFT_Get_Face_UnitsPerEM(m_Face), FXFT_Get_Glyph_HoriBearingX(m_Face) + FXFT_Get_Glyph_Width(m_Face)); 137 rtBBox.right = FPF_EM_ADJUST(FXFT_Get_Face_UnitsPerEM(m_Face), FXFT_Get_Face_xMax(m_Face));
|
/external/webrtc/src/modules/audio_processing/ |
audio_buffer.cc | 24 void StereoToMono(const int16_t* left, const int16_t* right, 26 assert(left != NULL && right != NULL && out != NULL); 29 static_cast<int32_t>(right[i])) >> 1;
|
/frameworks/base/core/java/android/net/ |
NetworkUtils.java | 301 public static boolean addressTypeMatches(InetAddress left, InetAddress right) { 302 return (((left instanceof Inet4Address) && (right instanceof Inet4Address)) || 303 ((left instanceof Inet6Address) && (right instanceof Inet6Address)));
|
/frameworks/base/core/jni/android/graphics/ |
Path.cpp | 156 jfloat right, jfloat bottom, jfloat startAngle, jfloat sweepAngle, 159 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); 169 jfloat left, jfloat top, jfloat right, jfloat bottom, jint dirHandle) { 172 obj->addRect(left, top, right, bottom, dir); 176 jfloat left, jfloat top, jfloat right, jfloat bottom, jint dirHandle) { 179 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); 190 jfloat right, jfloat bottom, jfloat startAngle, jfloat sweepAngle) { 191 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); 197 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jint dirHandle) { 198 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom) [all...] |
/frameworks/base/core/tests/coretests/src/android/util/ |
ListItemFactory.java | 80 Right 103 boolean right = false; 112 case Right: 113 right = true; 134 if (right) { 136 button.setText("right"); 259 t2.setGravity(Gravity.RIGHT | Gravity.CENTER_VERTICAL);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
RangeTest.java | 72 // OK: right arg is null 170 Range<T> left, Range<T> right) { 172 " expected to be equal to right hash code for " + right, 173 left.hashCode(), right.hashCode());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableView.java | 97 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 98 super.onLayout(changed, left, top, right, bottom); 296 outRect.right += getTranslationX();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
StatusBarWindowView.java | 68 || insets.right != getPaddingRight() 71 setPadding(insets.left, insets.top, insets.right, 0); 75 insets.right = 0;
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
PhotoView.java | 301 e.getX()), mTranslateRect.right - widthBuffer); 403 float minX = getWidth() * marginFit + mTranslateRect.right * relativeDistance; 446 final float drawWidth = mTranslateRect.right - mTranslateRect.left; 452 // We're at the left-side of the image; allow intercepting movements to the right 455 // We're at the right-side of the image; allow intercepting movements to the left 479 final float drawWidth = mTranslateRect.right - mTranslateRect.left; 485 // We're at the left-side of the image; allow intercepting movements to the right 488 // We're at the right-side of the image; allow intercepting movements to the left 659 final int cropWidth = mCropRect.right - mCropRect.left; 751 protected void onLayout(boolean changed, int left, int top, int right, int bottom) [all...] |