HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 676 - 700 of 4228) sorted by null

<<21222324252627282930>>

  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
RenderOverlay.java 36 public void layout(int left, int top, int right, int bottom);
150 public void onLayout(boolean changed, int left, int top, int right, int bottom) {
152 super.onLayout(changed, left, top, right, bottom);
157 renderer.layout(left, top, right, bottom);
  /prebuilts/go/darwin-x86/test/bench/garbage/
tree.go 49 left, right *Node
63 return n.item + n.left.itemCheck() - n.right.itemCheck()
  /prebuilts/go/linux-x86/test/bench/garbage/
tree.go 49 left, right *Node
63 return n.item + n.left.itemCheck() - n.right.itemCheck()
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
serial.l 11 3 # In the following examples, the right-subinstructions
14 6 \?\?\?\? ........ trap r21 -> add r2, r0, r0 ; right instruction will never be executed.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
crange2.s 2 ! nearby SHmedia still gets the right offset.
  /toolchain/binutils/binutils-2.25/include/
fibheap.h 64 struct fibnode *right; member in struct:fibnode
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/
sh64-2.s 1 ! Test that all common kinds of relocs get right for simple cases.
  /toolchain/binutils/binutils-2.25/libiberty/
cp-demint.c 62 struct demangle_component *right)
113 if (right != NULL)
124 p->u.s_binary.right = right;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 239 public void setCompoundDrawablesWithIntrinsicBounds(int left, int top, int right, int bottom) {
240 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
245 Drawable right, Drawable bottom) {
246 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
250 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) {
251 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
539 public CompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) {
542 rightDrawable = right;
546 public CompoundDrawables(int left, int top, int right, int bottom) {
549 rightDrawable = right != 0 ? ShadowDrawable.createFromResourceId(right) : null
    [all...]
  /external/skia/src/pathops/
SkDConicLineIntersection.cpp 71 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
72 this->addExactHorizontalEndPoints(left, right, axisIntercept);
74 this->addNearHorizontalEndPoints(left, right, axisIntercept);
83 double lineT = (pt.fX - left) / (right - left);
198 void addExactHorizontalEndPoints(double left, double right, double y) {
200 double lineT = SkDLine::ExactPointH(fConic[cIndex], left, right, y);
209 void addNearHorizontalEndPoints(double left, double right, double y) {
215 double lineT = SkDLine::NearPointH(fConic[cIndex], left, right, y);
326 int SkIntersections::horizontal(const SkDConic& conic, double left, double right, double y,
328 SkDLine line = {{{ left, y }, { right, y }}}
    [all...]
SkDCubicLineIntersection.cpp 182 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
183 addExactHorizontalEndPoints(left, right, axisIntercept);
185 addNearHorizontalEndPoints(left, right, axisIntercept);
192 double lineT = (pt.fX - left) / (right - left);
296 void addExactHorizontalEndPoints(double left, double right, double y) {
298 double lineT = SkDLine::ExactPointH(fCubic[cIndex], left, right, y);
307 void addNearHorizontalEndPoints(double left, double right, double y) {
313 double lineT = SkDLine::NearPointH(fCubic[cIndex], left, right, y);
400 int SkIntersections::horizontal(const SkDCubic& cubic, double left, double right, double y,
402 SkDLine line = {{{ left, y }, { right, y }}}
    [all...]
SkDQuadLineIntersection.cpp 149 A = line[1].fX - line[0].fX (adjacent side of the right triangle)
150 O = line[1].fY - line[0].fY (opposite side of the right triangle)
197 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
198 addExactHorizontalEndPoints(left, right, axisIntercept);
200 addNearHorizontalEndPoints(left, right, axisIntercept);
207 double lineT = (pt.fX - left) / (right - left);
303 void addExactHorizontalEndPoints(double left, double right, double y) {
305 double lineT = SkDLine::ExactPointH(fQuad[qIndex], left, right, y);
314 void addNearHorizontalEndPoints(double left, double right, double y) {
320 double lineT = SkDLine::NearPointH(fQuad[qIndex], left, right, y)
    [all...]
  /frameworks/base/core/jni/android/graphics/pdf/
PdfEditor.cpp 50 jfieldID right; member in struct:android::__anon28555
276 float right; local
280 ? FPDFPage_GetMediaBox(page, &left, &top, &right, &bottom)
281 : FPDFPage_GetCropBox(page, &left, &top, &right, &bottom);
291 env->SetIntField(outBox, gRectClassInfo.right, (int) right);
324 const int right = env->GetIntField(box, gRectClassInfo.right); local
328 FPDFPage_SetMediaBox(page, left, top, right, bottom);
330 FPDFPage_SetCropBox(page, left, top, right, bottom)
    [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/
BindingExpressionParserTest.java 241 assertEquals("two", ((PrimaryContext) expression.right).identifier().getText());
291 assertTrue(expression.right instanceof ExpressionContext);
292 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
303 assertTrue(expression.right instanceof ExpressionContext);
304 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
315 assertTrue(expression.right instanceof ExpressionContext);
316 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
327 assertTrue(expression.right instanceof ExpressionContext);
328 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
339 assertTrue(expression.right instanceof ExpressionContext)
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
ProgramGrid.java 240 if (mFocusRangeLeft <= focusableRect.left && focusableRect.right <= mFocusRangeRight) {
247 && mFocusRangeRight <= focusableRect.right) {
270 } else if (mFocusRangeLeft <= focusableRect.right
271 && focusableRect.right <= mFocusRangeRight) {
272 int overlappedWidth = focusableRect.right - mFocusRangeLeft;
309 focusedRect.right = Math.min(focusedRect.right, rightMostFocusablePosition);
311 if (focusedRect.left > mFocusRangeRight || focusedRect.right < mFocusRangeLeft) {
314 mFocusRangeRight = focusedRect.right;
318 mFocusRangeRight = Math.min(mFocusRangeRight, focusedRect.right);
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
language_model_dict_content.cpp 450 const EntryInfoToTurncate &left, const EntryInfoToTurncate &right) const {
451 if (left.mPriority != right.mPriority) {
452 return left.mPriority < right.mPriority;
454 if (left.mCount != right.mCount) {
455 return left.mCount < right.mCount;
457 if (left.mKey != right.mKey) {
458 return left.mKey < right.mKey;
460 if (left.mPrevWordCount != right.mPrevWordCount) {
461 return left.mPrevWordCount > right.mPrevWordCount;
464 if (left.mPrevWordIds[i] != right.mPrevWordIds[i])
    [all...]
  /art/compiler/optimizing/
nodes_arm64.h 28 kLSR, // Logical shift right.
29 kASR, // Arithmetic shift right.
45 HInstruction* right,
55 SetRawInputAt(1, right);
  /art/runtime/gc/space/
region_space-inl.h 285 size_t right = left; local
286 DCHECK_LT(right, left + num_regs)
288 while (right < left + num_regs) {
289 if (regions_[right].IsFree()) {
290 ++right;
297 // right points to the one region past the last free region.
298 DCHECK_EQ(left + num_regs, right);
304 for (size_t p = left + 1; p < right; ++p) {
317 // right points to the non-free region. Start with the one after it.
318 left = right + 1
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
DynamicDrawableSpanTest.java 52 assertEquals(rect.right, dynamicDrawableSpan.getSize(null, null, 0, 0, fm));
60 assertEquals(rect.right, dynamicDrawableSpan.getSize(null, null, 0, 0, null));
  /cts/tests/tests/view/src/android/view/cts/
TouchDelegateTest.java 73 int right = mButton.getRight(); local
75 mXInside = (mButton.getLeft() + right) / 3;
  /cts/tests/tests/widget/src/android/widget/cts/
AbsSpinnerTest.java 191 Rect rcChild1 = new Rect(rcChild0.right, 0, 70, rc.bottom);
192 Rect rcChild2 = new Rect(rcChild1.right, 0, rc.right, rc.bottom);
193 absSpinner.layout(rc.left, rc.top, rc.right, rc.bottom);
195 rcChild0.right, rcChild0.bottom);
197 rcChild1.right, rcChild1.bottom);
199 rcChild2.right, rcChild2.bottom);
206 absSpinner.pointToPosition(rc.right + 1, rc.bottom - 1));
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/
RecyclerViewActivity.java 121 final int right = getWidth() - getPaddingRight(); local
129 layoutDecorated(v, left, top, right, bottom);
153 final int right = getWidth() - getPaddingRight(); local
168 layoutDecorated(v, left, top, right, bottom);
188 layoutDecorated(v, left, top, right, bottom);
208 final int right = getWidth() - getPaddingRight(); local
220 layoutDecorated(v, left, top, right, bottom);
235 layoutDecorated(v, left, top, right, bottom);
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.css 28 border-right:6px solid rgba(180,174,239,.15);
  /external/ceres-solver/internal/ceres/
gradient_checking_cost_function_test.cc 330 const ParameterBlock* right) {
332 CHECK_NOTNULL(right);
333 EXPECT_EQ(left->user_state(), right->user_state());
334 EXPECT_EQ(left->Size(), right->Size());
335 EXPECT_EQ(left->Size(), right->Size());
336 EXPECT_EQ(left->LocalSize(), right->LocalSize());
337 EXPECT_EQ(left->local_parameterization(), right->local_parameterization());
338 EXPECT_EQ(left->IsConstant(), right->IsConstant());
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyLogical.h 65 const LExpr *right() const { return RHS; } function in class:clang::threadSafety::lexpr::BinOp
66 LExpr *right() { return RHS; } function in class:clang::threadSafety::lexpr::BinOp

Completed in 794 milliseconds

<<21222324252627282930>>