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

<<21222324252627282930>>

  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TreeTraverserTest.java 51 final BinaryTree right; field in class:TreeTraverserTest.BinaryTree
53 private BinaryTree(char value, BinaryTree left, BinaryTree right) {
56 this.right = right;
77 return Optional.fromNullable(node.right);
  /external/guava/guava-tests/test/com/google/common/collect/
TreeTraverserTest.java 53 final BinaryTree right; field in class:TreeTraverserTest.BinaryTree
55 private BinaryTree(char value, BinaryTree left, BinaryTree right) {
58 this.right = right;
79 return Optional.fromNullable(node.right);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
NFS4StringPrep.java 103 int left, middle, right,rc; local
106 right= sortedArr.length-1;
108 while(left <= right){
109 middle = (left+right)/2;
115 right = middle -1;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
NFS4StringPrep.java 102 int left, middle, right,rc; local
105 right= sortedArr.length-1;
107 while(left <= right){
108 middle = (left+right)/2;
114 right = middle -1;
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 57 output.setValue(createFullPath(context, split.left), split.right);
63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right));
74 output.setSymlink(createFullPath(context, split.left), split.right);
125 result.right = line.substring(position + delimiter.length()).trim();
134 String right; field in class:DefaultHdfParser.Split
  /external/skia/gm/
patch.cpp 33 SkPoint right[SkPatchUtils::kNumPtsCubic]; local
34 SkPatchUtils::getRightCubic(cubics, right);
43 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, right, paint);
47 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, right + 1, paint);
64 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, right + 1, paint);
74 //right points
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.h 91 int32_t right, int32_t bottom) {
92 return DesktopRect(left, top, right, bottom);
103 int32_t right() const { return right_; } function in class:webrtc::DesktopRect
132 DesktopRect(int32_t left, int32_t top, int32_t right, int32_t bottom)
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_direct3d9.h 123 const float right,
132 float& right, float& bottom);
154 const float right, const float bottom);
160 const float right, const float bottom);
181 const float right, const float bottom);
  /frameworks/base/core/java/android/transition/
SidePropagation.java 46 * {@link Gravity#LEFT}, {@link Gravity#TOP}, {@link Gravity#RIGHT},
95 int right = left + sceneRoot.getWidth(); local
104 epicenterX = (left + right) / 2;
109 left, top, right, bottom);
122 int left, int top, int right, int bottom) {
126 side = isRtl ? Gravity.RIGHT : Gravity.LEFT;
129 side = isRtl ? Gravity.LEFT : Gravity.RIGHT;
136 distance = right - viewX + Math.abs(epicenterY - viewY);
141 case Gravity.RIGHT:
154 case Gravity.RIGHT
    [all...]
  /frameworks/base/core/java/android/view/animation/
Transformation.java 129 mClipRect.right + bounds.right, mClipRect.bottom + bounds.bottom);
148 mClipRect.right + bounds.right, mClipRect.bottom + bounds.bottom);
176 setClipRect(r.left, r.top, r.right, r.bottom);
  /frameworks/base/libs/androidfw/
LocaleData.cpp 133 const uint32_t right = packLocale(requested_language, right_region); local
138 // Find the parents of the request, but stop as soon as we saw left or right
139 const uint32_t left_and_right[] = {left, right};
147 if (left_right_index == 1) { // We saw right earlier
151 // If we are here, neither left nor right are an ancestor of the
158 right, requested_script, request_ancestors, ancestor_count);
163 // If we are here, left and right are equidistant from the request. We will
166 const bool right_is_representative = isRepresentative(right, requested_script);
175 return (int64_t) right - (int64_t) left;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
AssertHelpers.java 59 * right.
65 * @param right Right array
67 public static void assertArrayNotGreater(String message, float[] left, float[] right) {
68 assertEquals("Array lengths did not match", left.length, right.length);
71 String rightString = Arrays.toString(right);
76 "right = %s)",
77 message, left[i], right[i], i, leftString, rightString);
79 assertTrue(msg, left[i] <= right[i]);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SignalTileView.java 93 int left, right; local
95 right = mIconFrame.getLeft();
96 left = right - indicator.getMeasuredWidth();
99 right = left + indicator.getMeasuredWidth();
104 right,
TileLayout.java 124 int right; local
126 right = w - left;
127 left = right - mCellWidth;
129 right = left + mCellWidth;
131 record.tileView.layout(left, top, right, top + record.tileView.getMeasuredHeight());
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 305 /*package*/ static void native_arcTo(long nPath, float left, float top, float right,
313 pathDelegate.arcTo(left, top, right, bottom, startAngle, sweepAngle, forceMoveTo);
328 float left, float top, float right, float bottom, int dir) {
334 pathDelegate.addRect(left, top, right, bottom, dir);
338 /*package*/ static void native_addOval(long nPath, float left, float top, float right,
346 left, top, right - left, bottom - top), false);
362 /*package*/ static void native_addArc(long nPath, float left, float top, float right,
371 left, top, right - left, bottom - top,
376 /*package*/ static void native_addRoundRect(long nPath, float left, float top, float right,
385 left, top, right - left, bottom - top, rx * 2, ry * 2), false)
    [all...]
  /frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/
NavigationBarButton.java 56 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) {
59 if (right != null) right = TintedDrawable.wrap(right.mutate());
61 super.setCompoundDrawables(left, top, right, bottom);
99 drawables[2] = compoundDrawables[2]; // right
  /packages/apps/Launcher3/src/com/android/launcher3/
BaseRecyclerViewFastScrollPopup.java 72 mTextBounds.right = (int) (mTextBounds.left + mTextPaint.measureText(sectionName));
91 mBgBounds.right = mBgBounds.left + bgWidth;
93 mBgBounds.right = mRv.getWidth() - mRv.getBackgroundPadding().right -
95 mBgBounds.left = mBgBounds.right - bgWidth;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheelContainer.java 101 boolean changed, int left, int top, int right, int bottom) {
106 mCenterX = right - left - Util.dpToPixel(FULL_WHEEL_RADIUS);
108 mShutterButton.layout(right - left - shutterButtonWidth,
110 right - left,
113 mIndicatorControlWheel.layout(0, 0, right - left, bottom - top);
  /hardware/qcom/display/msm8996/sdm/libs/core/
resource_default.cpp 259 DLOGV_IF(kTagResources, "Get right pipe failed: hw_block_id = %d, need_scale = %d", hw_block_id,
404 return ((dst_roi.right - dst_roi.left) != (src_roi.right - src_roi.left)) ||
424 float src_width = src_rect.right - src_rect.left;
425 float dst_width = dst_rect.right - dst_rect.left;
453 scissor_left.right = FLOAT(display_attributes.split_left);
458 scissor_right.right = FLOAT(display_attributes.x_pixels);
484 // assign right pipe if needed
551 Log(kTagResources, "right pipe src", layer_config->right_pipe.src_roi);
552 Log(kTagResources, "right pipe dst", layer_config->right_pipe.dst_roi)
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
expression.cc 355 Binary_expression(Expression* left, Expression* right)
356 : left_(left), right_(right)
429 // is section relative and the right operand is not, the result uses
431 // left and right swapped. IS_DIV means that we need to give an error
432 // if the right operand is zero. WARN means that we should warn if
440 Binary_ ## NAME(Expression* left, Expression* right) \
441 : Binary_expression(left, right) \
453 uint64_t right = this->right_value(eei, &right_section, \
478 if (IS_DIV && right == 0) \
483 return left OPERATOR right; \
667 uint64_t right = this->right_value(eei, &right_section, &right_alignment); local
718 uint64_t right = this->right_value(eei, &right_section, &right_alignment); local
    [all...]
  /cts/common/host-side/tradefed/res/report/
compatibility_result.css 30 margin-right:auto;
39 margin-right:auto;
61 margin-right:auto;
82 margin-right:auto;
127 margin-right:auto;
  /external/fonttools/Lib/fontTools/ttLib/tables/
_k_e_r_n.py 110 left, right, value = struct.unpack(">HHh", data[:6])
112 left, right = int(left), int(right)
113 kernTable[(ttFont.getGlyphName(left), ttFont.getGlyphName(right))] = value
124 kernTable = sorted((getGlyphID(left), getGlyphID(right), value) for ((left,right),value) in self.kernTable.items())
125 for left, right, value in kernTable:
126 data = data + struct.pack(">HHh", left, right, value)
133 for (left, right), value in items:
136 ("r", right),
    [all...]
  /external/icu/icu4c/source/common/
unorm.cpp 224 const UChar *right, int32_t rightLength,
232 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) {
237 /* check for overlapping right and destination */
239 ((right>=dest && right<(dest+destCapacity)) ||
240 (rightLength>0 && dest>=right && dest<(right+rightLength)))
254 return n2->append(destString, UnicodeString(rightLength<0, right, rightLength), *pErrorCode).
260 const UChar *right, int32_t rightLength,
271 return _concatenate(left, leftLength, right, rightLength
    [all...]
  /frameworks/base/core/java/android/view/
RenderNode.java 116 * // by x pixels to the right and redraw this view. All the commands
270 return nSetClipBounds(mNativeRenderNode, rect.left, rect.top, rect.right, rect.bottom);
320 outline.mRect.right, outline.mRect.bottom, outline.mRadius, outline.mAlpha);
693 * Sets the right position for the display list.
695 * @param right The right position, in pixels, of the display list
699 public boolean setRight(int right) {
700 return nSetRight(mNativeRenderNode, right);
719 * @param right The right position of the display list, in pixel
    [all...]
  /frameworks/base/libs/hwui/
RecordingCanvas.h 77 CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom,
110 virtual int saveLayer(float left, float top, float right, float bottom, const SkPaint* paint,
112 virtual int saveLayerAlpha(float left, float top, float right, float bottom,
116 return saveLayer(left, top, right, bottom, &paint, flags);
131 virtual bool quickRejectRect(float left, float top, float right, float bottom) const override;
134 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op) override;
162 virtual void drawRect(float left, float top, float right, float bottom, const SkPaint& paint) override;
164 virtual void drawRoundRect(float left, float top, float right, float bottom,
167 virtual void drawOval(float left, float top, float right, float bottom, const SkPaint& paint) override;
168 virtual void drawArc(float left, float top, float right, float bottom
    [all...]

Completed in 2075 milliseconds

<<21222324252627282930>>