HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 226 - 250 of 6883) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey/
hikey_private.h 40 int hikey_get_partition_size(const char *arg, int left, char *response);
41 int hikey_get_partition_type(const char *arg, int left, char *response);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
BoxModelable.java 42 public void setMargins(float left, float top, float right, float bottom);
44 public void setPadding(float left, float top, float right, float bottom);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Div.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() / right.num());
Minus.java 38 * @param left non-null reference to the evaluated left operand.
46 public XObject operate(XObject left, XObject right)
49 return new XNumber(left.num() - right.num());
Mod.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() % right.num());
Mult.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() * right.num());
Plus.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() + right.num());
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
BinaryExpr.java 39 * An expression with an expression on the left, an expression on the right, and an operator in the middle.
110 private Expression left; field in class:BinaryExpr
121 public BinaryExpr(Expression left, Expression right, Operator operator) {
122 this(null, left, right, operator);
129 public BinaryExpr(TokenRange tokenRange, Expression left, Expression right, Operator operator) {
131 setLeft(left);
151 return left;
165 public BinaryExpr setLeft(final Expression left) {
166 assertNotNull(left);
167 if (left == this.left)
    [all...]
  /external/pdfium/core/fxcrt/
fx_coordinates.h 182 FX_RECT() : left(0), top(0), right(0), bottom(0) {}
183 FX_RECT(int l, int t, int r, int b) : left(l), top(t), right(r), bottom(b) {}
185 int Width() const { return right - left; }
187 bool IsEmpty() const { return right <= left || bottom <= top; }
192 w -= left;
203 left += dx;
210 return left == src.left && right == src.right && top == src.top &&
215 return x >= left && x < right && y >= top && y < bottom;
218 int32_t left; member in struct:FX_RECT
354 float left; member in class:CFX_FloatRect
576 BaseType left; member in class:CFX_RTemplate
    [all...]
  /external/pdfium/fpdfsdk/
cpdfsdk_xfawidget.cpp 35 return CFX_FloatRect(rcBBox.left, rcBBox.top, rcBBox.left + rcBBox.width,
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMarginLayoutParams.java 20 public void setMargins(int left, int top, int right, int bottom) {
21 realMarginLayoutParams.leftMargin = left;
  /external/skia/gm/
skbug_4868.cpp 21 canvas->drawLine(rc.left(), rc.top(), rc.right(), rc.bottom(), paint);
22 canvas->drawLine(rc.right(), rc.top(), rc.left(), rc.bottom(), paint);
  /external/skia/src/sksl/ast/
SkSLASTBinaryExpression.h 21 ASTBinaryExpression(std::unique_ptr<ASTExpression> left, Token op,
24 , fLeft(std::move(left))
  /external/skqp/gm/
skbug_4868.cpp 21 canvas->drawLine(rc.left(), rc.top(), rc.right(), rc.bottom(), paint);
22 canvas->drawLine(rc.right(), rc.top(), rc.left(), rc.bottom(), paint);
  /external/skqp/src/sksl/ast/
SkSLASTBinaryExpression.h 21 ASTBinaryExpression(std::unique_ptr<ASTExpression> left, Token op,
24 , fLeft(std::move(left))
  /external/toolchain-utils/binary_search_tool/full_bisect_test/
build.c 9 node->left = NULL;
20 search_tree_insert (&((*root)->left), value);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
audio_sink.h 47 AudioSinkFork(AudioSink* left, AudioSink* right)
48 : left_sink_(left), right_sink_(right) {}
  /external/webrtc/webrtc/modules/video_render/linux/
video_x11_render.h 36 const float left,
45 float& left, float& top,
  /external/webrtc/webrtc/voice_engine/include/
voe_volume_control.h 100 // Scales volume of the |left| and |right| channels independently.
102 virtual int SetOutputVolumePan(int channel, float left, float right) = 0;
104 // Gets the current left and right scaling factors.
105 virtual int GetOutputVolumePan(int channel, float& left, float& right) = 0;
  /frameworks/base/core/proto/android/graphics/
rect.proto 27 optional int32 left = 1;
  /frameworks/native/libs/vr/libdvr/include/dvr/
dvr_hardware_composer_types.h 42 int32_t left; member in struct:DvrHwcRecti
49 float left; member in struct:DvrHwcRectf
  /hardware/qcom/display/msm8084/libqdutils/
cb_utils.cpp 34 irect.left = min(rect1.left, rect2.left);
49 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom);
60 Rect tmpRect(displayFrame.left,displayFrame.top,
72 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right,
86 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom};
87 int dst_w = clearWormholeRect.right - clearWormholeRect.left;
  /hardware/qcom/display/msm8226/libqdutils/
cb_utils.cpp 34 irect.left = min(rect1.left, rect2.left);
49 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom);
60 Rect tmpRect(displayFrame.left,displayFrame.top,
72 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right,
86 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom};
87 int dst_w = clearWormholeRect.right - clearWormholeRect.left;
  /hardware/qcom/display/msm8994/libqdutils/
cb_utils.cpp 34 irect.left = min(rect1.left, rect2.left);
49 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom);
61 Rect tmpRect(displayFrame.left,displayFrame.top,
74 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right,
88 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom};
89 int dst_w = clearWormholeRect.right - clearWormholeRect.left;
  /packages/apps/DeskClock/src/com/android/deskclock/
FabController.java 10 * {@link #onUpdateFabButtons left/right buttons} including setting them {@link View#INVISIBLE} if
12 * {@link #onFabClick fab}, {@link #onLeftButtonClick left button} and
32 * Configures the display of the buttons to the left and right of the fab to match the current
35 * @param left button to the left of the fab to configure based on current state
38 void onUpdateFabButtons(@NonNull Button left, @NonNull Button right);
48 * Handles a click on the button to the left of the fab component.
50 * @param left the button to the left of the fab component
52 void onLeftButtonClick(@NonNull Button left);
    [all...]

Completed in 574 milliseconds

1 2 3 4 5 6 7 8 91011>>