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

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/public/
fpdf_transformpage.h 22 * @param[in] left - The left of the rectangle.
29 float left,
37 * @param[in] left - The left of the rectangle.
44 float left,
51 * @param[in] left - Pointer to a double value receiving the left of the
62 float* left,
69 * @param[in] left - Pointer to a double value receiving the left of th
    [all...]
  /external/skia/tools/lua/
skia.lua 20 Sk.Rect = { left = 0, top = 0, right = 0, bottom = 0 }
27 rect = { left = l, top = t, right = r, bottom = b }
40 return self.right - self.left
52 local value = self.left * 0
60 self.left = 0
67 self.left = l
76 self.left = self.left + dx
85 self.left = self.left + d
    [all...]
  /external/wpa_supplicant_8/src/crypto/
sha1-pbkdf2.c 77 size_t left = buflen, plen; local
80 while (left > 0) {
85 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
88 left -= plen;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraUtils.java 59 long left = widthA * (long) heightA; local
61 if (left == right) {
62 left = widthA;
65 return (left < right) ? -1 : (left > right ? 1 : 0);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_treewriter.c 37 unsigned int left, right; local
40 left = num_events[-tree[i]];
42 left = convert_distribution(tree[i], tree, branch_ct, num_events);
49 branch_ct[i >> 1][0] = left;
51 return left + right;
  /packages/apps/Launcher3/src/com/android/launcher3/keyboard/
ViewGroupFocusHelper.java 39 outRect.left = 0;
46 outRect.left += (1 - v.getScaleX()) * v.getWidth() / 2;
49 outRect.right = outRect.left + (int) (v.getScaleX() * v.getWidth());
55 outRect.left += child.getLeft();
61 outRect.left -= page.getScrollForPage(page.indexOfChild(child));
  /external/v8/src/compiler/
machine-operator-reducer.cc 141 if (m.right().Is(0)) return Replace(m.left().node()); // x ^ 0 => x
143 return ReplaceInt32(m.left().Value() ^ m.right().Value());
146 if (m.left().IsWord32Xor() && m.right().Is(-1)) {
147 Int32BinopMatcher mleft(m.left().node());
149 return Replace(mleft.left().node());
162 if (m.right().Is(0)) return Replace(m.left().node()); // x ror 0 => x
165 base::bits::RotateRight32(m.left().Value(), m.right().Value()));
172 return ReplaceBool(m.left().Value() == m.right().Value());
174 if (m.left().IsInt32Sub() && m.right().Is(0)) { // x - y == 0 => x == y
175 Int32BinopMatcher msub(m.left().node())
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
sym_ids.c 48 struct match left, right;
80 the left half's CHILDREN pointers (so it's crucial not
187 parse_spec (id->spec, &id->left.sym);
192 printf ("%s:", id->left.sym.file ? id->left.sym.file->name : "*");
194 if (id->left.sym.name)
195 printf ("%s", id->left.sym.name);
196 else if (id->left.sym.line_num)
197 printf ("%d", id->left.sym.line_num);
279 Sym *sym, *left, *right
47 struct match left, right; member in struct:sym_id
278 Sym *sym, *left, *right; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionIteratorTest.java 42 assertEquals(1, rect.left);
48 assertEquals(1, rect.left);
59 assertEquals(1, rect.left);
64 assertEquals(1, rect.left);
69 assertEquals(5, rect.left);
75 assertEquals(1, rect.left);
86 assertEquals(1, rect.left);
91 assertEquals(1, rect.left);
97 assertEquals(1, rect.left);
108 assertEquals(5, rect.left);
    [all...]
RectTest.java 53 assertEquals(1, mRect.left);
65 assertEquals(1, mRect.left);
75 assertEquals(0, mRect.left);
82 assertEquals(0, mRect.left);
113 assertEquals(1, mRect.left);
128 assertEquals(5, mRect.left);
136 assertEquals(5, mRect.left);
146 // 1. left < right, top < bottom
147 // this.left < this.right, this.top < this.bottom
151 assertEquals(0, mRect.left);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
NaturalOrdering.java 32 @Override public int compare(Comparable left, Comparable right) {
33 checkNotNull(left); // for GWT
35 return left.compareTo(right);
  /external/libbrillo/brillo/
unittest_utils.cc 42 left = fds[0];
47 if (left != -1)
48 close(left);
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
copyMakeBorder_demo.cpp 17 int top, bottom, left, right; variable
51 left = (int) (0.05*src.cols); right = (int) (0.05*src.cols);
68 copyMakeBorder( src, dst, top, bottom, left, right, borderType, value );
  /frameworks/base/services/core/java/com/android/server/policy/
RecentApplicationsBackground.java 60 protected boolean setFrame(int left, int top, int right, int bottom) {
62 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
65 return super.setFrame(left, top, right, bottom);
105 int left, right; local
108 left = chld.left - bkg.left;
112 left = 0;
115 background.setBounds(left, top, right, bottom);
144 r.left = r.top = Integer.MAX_VALUE
    [all...]
  /ndk/tests/device/b16355858/jni/
sample_lib.c 18 static unsigned Predictor11(unsigned left, const unsigned* const top) {
19 const unsigned pred = Select(top[0], left, top[-1]);
23 typedef unsigned (*VP8LPredictorFunc)(unsigned left, const unsigned* const top);
  /sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/
Rect.java 7 public int left; field in class:Rect
30 out.writeInt(left);
37 left = in.readInt();
  /external/ImageMagick/MagickCore/
splay-tree.c 81 *left,
203 node->left=(NodeInfo *) NULL;
209 node->left=splay_tree->root;
210 node->right=node->left->right;
211 node->left->right=(NodeInfo *) NULL;
216 node->left=node->right->left;
217 node->right->left=(NodeInfo *) NULL;
264 node->left=(NodeInfo *) NULL;
266 node->left=LinkSplayTreeNodes(nodes,low,bisect-1)
78 *left, member in struct:_NodeInfo
520 *left, local
609 *left, local
1186 *left, local
1266 *left, local
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_coords.cpp 13 if (left > right) {
14 int temp = left;
15 left = right;
28 left = left > src_n.left ? left : src_n.left;
32 if (left > right || top > bottom) {
33 left = top = right = bottom = 0
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
BoxModel.java 63 return new RectF( boundsRect.left + getMarginLeft(),
75 return new RectF(marginRect.left + getPaddingLeft(),
82 public void setMargins(float left, float top, float right, float bottom) {
83 setMarginLeft(left);
90 public void setPadding(float left, float top, float right, float bottom) {
91 setPaddingLeft(left);
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/opencv3/samples/gpu/
stereo_match.cpp 21 string left; member in struct:Params
57 ss << "(" << p.method_str() << ") FPS: " << setiosflags(ios::left)
66 Mat left, right; member in struct:App
80 << "\t--left <left_view> --right <right_view> # must be rectified\n"
122 if (string(argv[i]) == "--left") p.left = argv[++i];
163 left_src = imread(p.left);
165 if (left_src.empty()) throw runtime_error("can't open file \"" + p.left + "\"");
167 cvtColor(left_src, left, COLOR_BGR2GRAY);
169 d_left.upload(left);
    [all...]
  /external/v8/test/mjsunit/compiler/
shift-shr.js 7 // Check the results of `left >>> right`. The result is always unsigned (and
9 function test_shr(left) {
13 var temp = left >>> i;
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_impl.h 38 const float left,
47 float& left,
66 const float left,
72 const float left,
82 const float left,
89 const float left,
  /external/webrtc/webrtc/modules/video_render/
video_render.h 87 * left - position of the stream in the window, [0.0f, 1.0f]
97 const float left, const float top,
124 * left - [out] position of the stream in the window, [0.0f, 1.0f]
132 float& left, float& top,
214 const float left,
231 const float left,
243 const float left, const float top,
251 const float left, const float top,
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_windows_impl.h 56 const float left, const float top,
65 float& left, float& top,
101 const float left, const float top,
106 const float left, const float top,
116 const float left, const float top,
122 const float left, const float top,

Completed in 4185 milliseconds

1 2 3 4 5 6 7 8 91011>>