/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ThinPatchesActivity.java | 78 final int left = (getWidth() - width) / 2; local 84 mPatch3.setBounds(left, top, left + height, top + width); 89 mPatch1.setBounds(left, top, left + width, top + height); 95 mPatch2.setBounds(left, top, left + width, top + height);
|
/frameworks/native/services/vr/performanced/ |
cpu_set.cpp | 121 stream << std::left; member in class:android::dvr::std 137 stream << std::left; member in class:android::dvr::std
|
/frameworks/support/v7/gridlayout/tests/src/android/support/v7/widget/ |
GridLayoutTest.java | 71 int left = mLeftView.getWidth(); local 74 assertTrue("left item should get some width", left > 0); 77 assertTrue("left view should be almost two times right view " + left + " vs " + right, 78 Math.abs(right * 2 - left) < 2); 84 int left = mLeftView.getWidth(); local 87 assertTrue("left item should get some width", left > 0); 90 assertTrue("left view should be almost two times right view " + left + " vs " + right 97 int left = mLeftView.getWidth(); local 122 int left = mLeftView.getHeight(); local [all...] |
/libcore/ojluni/src/main/java/sun/security/util/ |
Debug.java | 217 StringBuffer left = new StringBuffer(); local 224 matcher.appendReplacement(left, ""); 226 matcher.appendTail(left); 227 source = left; 241 left = new StringBuffer(); 248 matcher.appendReplacement(left, ""); 250 matcher.appendTail(left); 251 source = left;
|
/packages/apps/Calendar/src/com/android/calendar/ |
ColorChipView.java | 113 int left = halfBorderWidth; local 126 lines [ptr++] = left; 128 lines [ptr++] = left;
|
EventGeometry.java | 48 public boolean computeEventRect(int date, int left, int top, int cellWidth, Event event) { 101 event.left = left + col * (colWidth + mCellMargin); 102 event.right = event.left + colWidth; 110 if (event.left < selection.right && event.right >= selection.left 121 float left = event.left; local 126 if (x >= left) { 155 // x < left [all...] |
/packages/apps/Car/Dialer/src/com/android/car/dialer/ |
CallTypeIconsView.java | 106 int left = 0; local 109 final int right = left + drawable.getIntrinsicWidth(); 110 drawable.setBounds(left, 0, right, drawable.getIntrinsicHeight()); 112 left = right + mResources.iconMargin;
|
/packages/apps/Gallery/src/com/android/camera/ |
EvenlySpacedLayout.java | 83 int left = mKeepEndSpace ? spacing : 0; local 90 child.layout(left, top, left + w, top + h); 91 left += w; 92 left += spacing; 111 int left = 0; local 117 child.layout(left, top, left + w, top + h);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
DropTarget.java | 34 /** X offset from the upper-left corner of the cell to where we touched. */ 37 /** Y offset from the upper-left corner of the cell to where we touched. */ 84 // These represent the visual top and left of drag view if a dragRect was provided. 85 // If a dragRect was not provided, then they correspond to the actual view left and 88 int left = x - xOffset; local 92 res[0] = left + dragView.getDragRegion().width() / 2;
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
WidgetImageView.java | 100 mDstRectF.left = (myWidth - scaledWidth) / 2; 113 int left = Utilities.boundToRange( local 119 mBadge.setBounds(left, top, bounds.width() + left, bounds.height() + top);
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
MosaicTypes.h | 37 left = right = top = bottom = 0.0; 42 return right - left; 53 int left, right, top, bottom; member in class:MosaicRect
|
/packages/apps/Messaging/src/com/android/messaging/ui/contact/ |
ContactSectionIndexer.java | 67 int left = 0; local 72 if (position <= mSectionStartingPositions.get(left)) { 73 return left; 78 while (left <= right) { 79 final int mid = (left + right) / 2; 87 left = mid + 1;
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
PercentageBarChart.java | 75 final int left = getPaddingLeft(); local 80 final int width = right - left; 96 if (lastX < left) { 97 canvas.drawRect(left, top, nextX, bottom, e.paint); 106 canvas.drawRect(left, top, nextX, bottom, mEmptyPaint); 108 float lastX = left;
|
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftcache.h | 891 FT_Char left; member in struct:FTC_SBitRec_ [all...] |
ftglyph.h | 142 /* left :: The left-side bearing, i.e., the horizontal distance */ 143 /* from the current pen position to the left border of the */ 163 FT_Int left; member in struct:FT_BitmapGlyphRec_ [all...] |
/system/core/base/ |
file.cpp | 83 size_t left = content.size(); local 84 while (left > 0) { 85 ssize_t n = TEMP_FAILURE_RETRY(write(fd, p, left)); 90 left -= n;
|
/toolchain/binutils/binutils-2.25/gprof/ |
basic_blocks.c | 60 const Sym *left = *(const Sym **) lp; 63 if (left->file && right->file) 65 r = filename_cmp (left->file->name, right->file->name); 70 if (left->line_num != right->line_num) 71 return left->line_num - right->line_num; 74 if (left->addr < right->addr) 76 else if (left->addr > right->addr) 88 const Sym *left = *(const Sym **) lp; 91 if (!left) 96 if (left->ncalls < right->ncalls 59 const Sym *left = *(const Sym **) lp; local 87 const Sym *left = *(const Sym **) lp; local [all...] |
cg_arcs.c | 156 const Sym *left = *(const Sym **) lp; local 159 return left->cg.top_order - right->cg.top_order; 540 const Sym *left = *(const Sym **) lp; local 544 diff = (left->cg.prop.self + left->cg.prop.child) 554 if (!left->name && left->cg.cyc.num != 0) 562 if (!left->name) 570 if (left->name[0] != '_' && right->name[0] == '_') 574 if (left->name[0] == '_' && right->name[0] != '_' [all...] |
sym_ids.c | 48 struct match left, right; 80 the left half's CHILDREN pointers (so it's crucial not 187 parse_spec (id->spec, &id->left.sym); 192 printf ("%s:", id->left.sym.file ? id->left.sym.file->name : "*"); 194 if (id->left.sym.name) 195 printf ("%s", id->left.sym.name); 196 else if (id->left.sym.line_num) 197 printf ("%d", id->left.sym.line_num); 279 Sym *sym, *left, *right 47 struct match left, right; member in struct:sym_id 278 Sym *sym, *left, *right; local [all...] |
/libcore/ojluni/src/main/java/java/util/stream/ |
Nodes.java | 106 * @param left the left input node 113 static <T> Node<T> conc(StreamShape shape, Node<T> left, Node<T> right) { 116 return new ConcNode<>(left, right); 118 return (Node<T>) new ConcNode.OfInt((Node.OfInt) left, (Node.OfInt) right); 120 return (Node<T>) new ConcNode.OfLong((Node.OfLong) left, (Node.OfLong) right); 122 return (Node<T>) new ConcNode.OfDouble((Node.OfDouble) left, (Node.OfDouble) right); 746 protected final T_NODE left; field in class:Nodes.AbstractConcNode 750 AbstractConcNode(T_NODE left, T_NODE right) { 751 this.left = left [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
LinkMovementMethodTest.java | 383 assertTrue(method.left(mView, mSpannable)); 386 assertTrue(method.left(mView, mSpannable)); 389 assertFalse(method.left(mView, mSpannable)); 397 method.left(null, mSpannable); 404 method.left(mView, null); 451 assertFalse(method.left(mView, mSpannable)); 532 protected boolean left(TextView widget, Spannable buffer) { method in class:LinkMovementMethodTest.MyLinkMovementMethod 533 return super.left(widget, buffer);
|
/art/compiler/optimizing/ |
code_generator_vector_arm64.cc | 713 VRegister left = VRegisterFrom(locations->InAt(HVecMultiplyAccumulate::kInputMulLeftIndex)); local 719 __ Mla(acc.V16B(), left.V16B(), right.V16B()); 721 __ Mls(acc.V16B(), left.V16B(), right.V16B()); 728 __ Mla(acc.V8H(), left.V8H(), right.V8H()); 730 __ Mls(acc.V8H(), left.V8H(), right.V8H()); 736 __ Mla(acc.V4S(), left.V4S(), right.V4S()); 738 __ Mls(acc.V4S(), left.V4S(), right.V4S());
|
ssa_builder.cc | 36 HInstruction* left = equality_instr->InputAt(0); local 40 if ((left->GetType() == Primitive::kPrimNot) && (right->GetType() == Primitive::kPrimInt)) { 43 && (left->GetType() == Primitive::kPrimInt)) { 44 int_operand = left;
|
/art/runtime/base/ |
bit_vector.cc | 308 uint32_t left = storage_size_ - size; local 310 if (left > 0) { 311 memset(storage_ + size, 0, kWordBytes * left);
|
/art/tools/ahat/test-dump/ |
Main.java | 34 public ObjectTree left; field in class:Main.ObjectTree 37 public ObjectTree(ObjectTree left, ObjectTree right) { 38 this.left = left; 124 gcPathArray[2].right.left = gcPathArray[2].left.right;
|