/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/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/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/java/android/view/ |
WindowInsets.java | 121 * Returns the left system window inset in pixels. 127 * @return The left system window inset 130 return mSystemWindowInsets.left; 173 * Returns the left window decor inset in pixels. 179 * @return The left window decor inset 183 return mWindowDecorInsets.left; 238 return mSystemWindowInsets.left != 0 || mSystemWindowInsets.top != 0 || 253 return mWindowDecorInsets.left != 0 || mWindowDecorInsets.top != 0 || 286 * <p>A round window's left, top, right and bottom edges reach all the way to the 312 * @param left true to consume the left system window inse [all...] |
/hardware/qcom/display/msm8084/libqdutils/ |
cb_utils.cpp | 33 irect.left = min(rect1.left, rect2.left); 48 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom); 59 Rect tmpRect(displayFrame.left,displayFrame.top, 71 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right, 85 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom}; 86 int dst_w = clearWormholeRect.right - clearWormholeRect.left;
|
/hardware/qcom/display/msm8226/libqdutils/ |
cb_utils.cpp | 33 irect.left = min(rect1.left, rect2.left); 48 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom); 59 Rect tmpRect(displayFrame.left,displayFrame.top, 71 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right, 85 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom}; 86 int dst_w = clearWormholeRect.right - clearWormholeRect.left;
|
/hardware/qcom/display/msm8994/libqdutils/ |
cb_utils.cpp | 33 irect.left = min(rect1.left, rect2.left); 48 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom); 60 Rect tmpRect(displayFrame.left,displayFrame.top, 73 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right, 87 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom}; 88 int dst_w = clearWormholeRect.right - clearWormholeRect.left;
|
/system/media/audio_utils/include/audio_utils/ |
minifloat.h | 41 static inline gain_minifloat_packed_t gain_minifloat_pack(gain_minifloat_t left, 44 return (right << 16) | left;
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
RopeByteString.java | 115 private final ByteString left; field in class:RopeByteString 124 * @param left string on the left of this node, should have {@code size() > 129 private RopeByteString(ByteString left, ByteString right) { 130 this.left = left; 132 leftLength = left.size(); 134 treeDepth = Math.max(left.getTreeDepth(), right.getTreeDepth()) + 1; 147 * @param left string on the left 672 ByteString left = prefixesStack.pop(); local 684 ByteString left = prefixesStack.pop(); local [all...] |
/external/v8/test/mjsunit/tools/ |
splaytree.js | 64 left: { key: 30, value: 30, 65 left: { key: 10, value: 10, left: null, 67 left: { key: 15, value: 15, 68 left: null, right: null }, 70 right: { key: 40, value: 40, left: null, right: null } }, 71 right: { key: 60, value: 60, left: null, 73 left: { key: 70, value: 70, left: null, 75 left: null, right: null } } [all...] |
/art/compiler/optimizing/ |
instruction_simplifier_shared.cc | 165 // We prefer not applying the following transformations if the left and 173 HInstruction* left = mul->GetLeft(); local 176 TrySimpleMultiplyAccumulatePatterns(mul, right->AsBinaryOperation(), left)) { 179 if ((left->IsAdd() || left->IsSub()) && 180 TrySimpleMultiplyAccumulatePatterns(mul, left->AsBinaryOperation(), right)) { 189 HInstruction* left = op->GetLeft(); local 194 if (left->IsNot() ^ right->IsNot()) { 195 HInstruction* hnot = (left->IsNot() ? left : right) [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/ |
find_change_points.py | 130 left, right = y_values[:split_index], y_values[split_index:] 131 left_median, right_median = math_utils.Median(left), math_utils.Median(right) 132 ttest_results = ttest.WelchsTTest(left, right) 137 size_before=len(left), 142 std_dev_before=math_utils.StandardDeviation(left), 153 (after modifying both sides by shifting all the numbers in the left and 154 right sides by the median of the left and right sides respectively). 167 left, right = values[:index], values[index:] 168 return math_utils.StandardDeviation(_ZeroMedian(left) + _ZeroMedian(right)) 195 left, right = values[:split_index], values[split_index: [all...] |
/external/libjpeg-turbo/doc/html/search/ |
search.css | 4 float: left; 19 #MSearchBox .left 23 left:10px; 37 .left #MSearchSelect { 38 left:4px; 52 margin-left:20px; 53 padding-left:4px; 60 margin-left:15px; 71 background-position:left; 85 .left #MSearchClose [all...] |
/external/v8/build/android/incremental_install/java/org/chromium/incrementalinstall/ |
Reflect.java | 49 static Object[] concatArrays(Object[] arrType, Object[] left, Object[] right) { 51 arrType.getClass().getComponentType(), left.length + right.length); 52 System.arraycopy(left, 0, result, 0, left.length); 53 System.arraycopy(right, 0, result, left.length, right.length); 130 private static boolean isAssignableFrom(Class<?> left, Object right) { 132 return !left.isPrimitive(); 135 if (left.isPrimitive()) { 137 return left == boolean.class && rightClazz == Boolean.class 138 || left == int.class && rightClazz == Integer.class [all...] |
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/ |
ViESurfaceRenderer.java | 56 dstRect.right = (int)(dstRect.left + dstRightScale * dstWidth); 68 " srcRect.left:" + srcRect.left + 72 " dstRect.left:" + dstRect.left + 83 changeDestRect(dst.right - dst.left, dst.bottom - dst.top); 85 " dst.left:" + dst.left + 89 " srcRect.left:" + srcRect.left [all...] |
/hardware/qcom/display/msm8909/libqdutils/ |
cb_utils.cpp | 33 irect.left = min(rect1.left, rect2.left); 42 copybit_rect_t clear_rect = {rect.left, rect.top,rect.right,rect.bottom}; 64 Rect fbFrameRect(fbFrame.left,fbFrame.top,fbFrame.right,fbFrame.bottom); 67 if ((dirtyRect.right - dirtyRect.left > 0) && 70 Rect tmpRect(dirtyRect.left,dirtyRect.top,dirtyRect.right, 85 Rect tmpRect(displayFrame.left,displayFrame.top, 98 Rect tmpRect(displayFrame.left,displayFrame.top,displayFrame.right, 112 hwc_rect_t tmpWormRect = {r.left,r.top,r.right,r.bottom} [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
FaceSquareFilter.java | 87 int left = (tempRect.left+WIDTH_OFFSET)*dims[0]/FACE_X_RANGE; local 95 if (left < 0) { 96 left = 0; 97 } else if (left > dims[0]) { 98 left = dims[0]; 112 // Left edge 113 if (left > 0 && top > 0) { 114 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + left) + 116 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + left) [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/ |
FaceSquareFilterTest.java | 89 int left = (faceRect.left+WIDTH_OFFSET)*bitmap.getWidth()/FACE_X_RANGE; local 97 if (left < 0) { 98 left = 0; 99 } else if (left > bitmap.getWidth()) { 100 left = bitmap.getWidth(); 114 // Left edge 115 if (left > 0 && top > 0) { 116 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + left) + 118 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + left) [all...] |