/external/guava/guava/src/com/google/common/collect/ |
ByFunctionOrdering.java | 45 @Override public int compare(F left, F right) { 46 return ordering.compare(function.apply(left), function.apply(right));
|
CompoundOrdering.java | 39 @Override public int compare(T left, T right) { 43 int result = comparators.get(i).compare(left, right);
|
ExplicitOrdering.java | 39 @Override public int compare(T left, T right) { 40 return rank(left) - rank(right); // safe because both are nonnegative
|
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/ |
EscapeMode.java | 92 * values are provided by {@code left} and {@code right} respectively. For now, if either of the 99 public static EscapeMode combineModes(EscapeMode left, EscapeMode right) { 100 if (left.equals(ESCAPE_NONE) || right.equals(ESCAPE_NONE)) {
|
/external/libcxx/www/ |
menu.css | 12 left:29ex;
|
/external/libcxxabi/www/ |
menu.css | 12 left:29ex;
|
/external/libdivsufsort/android_include/ |
divsufsort.h | 157 saidx_t *left); 173 saint_t c, saidx_t *left);
|
divsufsort64.h | 157 saidx64_t *left); 173 saint_t c, saidx64_t *left);
|
/external/libvorbis/doc/ |
10-tables.tex | 9 lookup table consiting of the following values (read left to right
|
/external/libvpx/libvpx/tools/ |
intersect-diffs.py | 46 lhs_file = lhs_hunk.left.filename.split("/")[1:] 57 # Join the right hand side of the older diff with the left hand side of the 63 new_lines = new_hunk.left
|
/external/lzma/CPP/Windows/Control/ |
Dialog.cpp | 108 rect.left = 0;
114 x = rect.right - rect.left;
122 rect.left = 0;
128 return rect.right - rect.left;
165 rect.left = workRect.left;
180 Move(rect.left, rect.top, xSize2, ySize2, true);
190 Move(rect.left, workRect.top, RECT_SIZE_X(rect), RECT_SIZE_Y(rect), true);
|
/external/opencv3/modules/videostab/src/cuda/ |
global_motion.cu | 69 const int left, const int idx, const int right, const int width, const int height, 89 float wl = idx - left; 98 int left, int idx, int right, int width, int height, 108 left, idx, right, width, height, mapx, mapy);
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page_path.cpp | 41 rect.left += -0.5f; 46 m_Left = rect.left;
|
/external/skia/include/core/ |
SkRegion.h | 100 * If the region is empty, returns false, and path is left unmodified. 117 * If left < right and top < bottom, set this region to that rectangle and 120 bool setRect(int32_t left, int32_t top, int32_t right, int32_t bottom); 194 bool quickContains(int32_t left, int32_t top, int32_t right, 198 return left < right && top < bottom && 200 /* fBounds.contains(left, top, right, bottom); */ 201 fBounds.fLeft <= left && fBounds.fTop <= top && 265 bool op(int left, int top, int right, int bottom, Op op) { 267 rect.set(left, top, right, bottom); 350 * Y scanline, clipped to the specified left and right X values [all...] |
/external/skia/resources/ |
test.lua | 2 local r = { left = 10, top = 10, right = 100, bottom = 80 } 38 local align = { 'left', 'center', 'right' }; 66 r2.left = x; 68 r2.right = r2.left + image:width() * 1;
|
/external/skia/src/core/ |
SkDrawable.cpp | 31 canvas->drawLine(r.left(), r.top(), r.right(), r.bottom(), paint); 32 canvas->drawLine(r.left(), r.bottom(), r.right(), r.top(), paint);
|
/external/skia/src/gpu/ |
GrRect.h | 42 void set(int16_t left, int16_t top, int16_t right, int16_t bottom) { 43 fLeft = left;
|
/external/v8/test/js-perf-test/Generators/ |
generators.js | 95 yield* infix(node.left); 102 constructor(label, left, right) { 104 this.left = left;
|
/external/webrtc/webrtc/modules/desktop_capture/win/ |
window_capture_utils.cc | 30 rect.left, rect.top, rect.right, rect.bottom); 36 rect.left + border.width(),
|
/external/webrtc/webrtc/modules/video_render/android/ |
video_render_android_native_opengl2.h | 32 int32_t Init(int32_t zOrder, const float left, const float top, 82 const float left,
|
video_render_android_surface_view.h | 31 int32_t Init(int32_t zOrder, const float left, const float top, 71 const float left,
|
/external/webrtc/webrtc/modules/video_render/ios/ |
video_render_ios_gles20.h | 37 float left, 48 const float left,
|
/external/webrtc/webrtc/modules/video_render/linux/ |
video_x11_channel.cc | 104 int32_t VideoX11Channel::Init(Window window, float left, float top, 112 _left = left; 134 if ((1 < left || left < 0) || (1 < top || top < 0) || (1 < right || right 150 _xPos = (int32_t) (winWidth * left); 152 _outWidth = (int32_t) (winWidth * (right - left)); 299 float& left, float& top, 306 left = _left;
|
video_x11_channel.h | 43 int32_t Init(Window window, float left, float top, float right, 47 GetStreamProperties(uint32_t& zOrder, float& left,
|
/external/zxing/qr_scanner/src/com/google/zxing/client/android/ |
ViewfinderView.java | 93 canvas.drawRect(0, frame.top, frame.left, frame.bottom + 1, paint); 105 canvas.drawRect(frame.left, frame.top, frame.right + 1, frame.top + 2, paint); 106 canvas.drawRect(frame.left, frame.top + 2, frame.left + 2, frame.bottom - 1, paint); 108 canvas.drawRect(frame.left, frame.bottom - 1, frame.right + 1, frame.bottom + 1, paint); 115 canvas.drawRect(frame.left + 2, middle - 1, frame.right - 1, middle + 2, paint); 123 int frameLeft = frame.left; 155 frame.left - POINT_SIZE,
|