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

<<21222324252627282930>>

  /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 26 // subsequent template contents to determine the right escaping command to use.
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 13 padding-right:4ex;
  /external/libcxxabi/www/
menu.css 13 padding-right:4ex;
  /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 43 rhs_file = rhs_hunk.right.filename.split("/")[1:]
57 # Join the right hand side of the older diff with the left hand side of the
62 old_lines = old_hunk.right
  /external/opencv3/modules/imgproc/src/
utils.cpp 83 int left = offset.x, right = dst.cols - src.cols - left; local
87 cv::copyMakeBorder( src, dst, top, bottom, left, right, borderType, value );
  /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,
90 float wr = right - idx;
98 int left, int idx, int right, int width, int height,
108 left, idx, right, width, height, mapx, mapy);
  /external/parameter-framework/upstream/utility/
Utility.cpp 45 return join<std::string>(begin(lstr), end(lstr), [strSeparator](string acc, string right) {
46 return acc + strSeparator + right;
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_path.cpp 42 rect.right += 0.5f;
47 m_Right = rect.right;
  /external/skia/bench/
TableBench.cpp 58 SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1), local
62 canvas->drawRect(right, borderPaint);
  /external/skia/include/core/
SkRegion.h 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); */
202 fBounds.fRight >= right && fBounds.fBottom >= bottom;
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.
354 Spanerator(const SkRegion&, int y, int left, int right);
    [all...]
  /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) {
45 fRight = right;
  /external/skia/src/pathops/
SkPathOpsLine.cpp 81 double SkDLine::ExactPointH(const SkDPoint& xy, double left, double right, double y) {
86 if (xy.fX == right) {
93 double SkDLine::NearPointH(const SkDPoint& xy, double left, double right, double y) {
97 if (!AlmostBetweenUlps(left, xy.fX, right)) {
100 double t = (xy.fX - left) / (right - left);
103 double realPtX = (1 - t) * left + t * right;
107 double tiniest = SkTMin(SkTMin(y, left), right);
108 double largest = SkTMax(SkTMax(y, left), right);
  /external/toybox/toys/other/
mix.c 12 usage: mix [-d DEV] [-c CHANNEL] [-l VOL] [-r RIGHT]
19 -r RIGHT Volume of right stereo channel (with -r, -l sets left volume)
27 long right;
57 xprintf("%s:%s = left:%d\t right:%d\n",
62 if (!(toys.optflags & FLAG_r)) level = TT.right | (level<<8);
  /external/webrtc/webrtc/modules/desktop_capture/win/
window_capture_utils.cc 30 rect.left, rect.top, rect.right, rect.bottom);
38 rect.right - border.width(),
  /external/webrtc/webrtc/modules/video_render/android/
video_render_android_native_opengl2.h 33 const float right, const float bottom);
84 const float right,
video_render_android_surface_view.h 32 const float right, const float bottom);
73 const float right,
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_gles20.h 39 float right,
50 const float right,
  /external/webrtc/webrtc/modules/video_render/linux/
video_x11_channel.h 43 int32_t Init(Window window, float left, float top, float right,
48 float& top, float& right, float& bottom) const;
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableRect.java 55 int right = left + width; local
58 return new Rect(left, top, right, bottom);
  /frameworks/base/graphics/java/android/graphics/
LargeBitmap.java 54 if (rect.left < 0 || rect.top < 0 || rect.right > getWidth() || rect.bottom > getHeight())
57 rect.right - rect.left, rect.bottom - rect.top, options);

Completed in 357 milliseconds

<<21222324252627282930>>