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

1 2 3 4 5 6 7 891011>>

  /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/skqp/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/
aes-ctr.c 29 size_t j, len, left = data_len; local
39 while (left > 0) {
42 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
46 left -= len;
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);
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
OverlayRenderer.java 28 private int left; field in class:OverlayRenderer
69 public void layout(int left, int top, int right, int bottom) {
70 this.left = left;
85 return right - left;
  /packages/apps/Launcher3/src/com/android/launcher3/keyboard/
ViewGroupFocusHelper.java 38 outRect.left = 0;
45 outRect.left += (1 - v.getScaleX()) * v.getWidth() / 2;
48 outRect.right = outRect.left + (int) (v.getScaleX() * v.getWidth());
54 outRect.left += child.getX();
60 outRect.left -= page.getScrollForPage(page.indexOfChild(child));
  /toolchain/binutils/binutils-2.27/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 54 assertEquals(1, rect.left);
60 assertEquals(1, rect.left);
71 assertEquals(1, rect.left);
76 assertEquals(1, rect.left);
81 assertEquals(5, rect.left);
87 assertEquals(1, rect.left);
98 assertEquals(1, rect.left);
103 assertEquals(1, rect.left);
109 assertEquals(1, rect.left);
120 assertEquals(5, rect.left);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
redblack32.go 37 if t.left != nil {
38 s = t.left.String() + " "
48 // Standard conventions hold for left = smaller, right = larger
49 left, right, parent *node32
174 return t.left == nil && t.right == nil
178 if t.left != nil {
179 t.left.visitInOrder(f)
188 if t.left == nil {
195 return t.left.rank
197 if t.right.rank > t.left.rank
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
redblack32.go 37 if t.left != nil {
38 s = t.left.String() + " "
48 // Standard conventions hold for left = smaller, right = larger
49 left, right, parent *node32
174 return t.left == nil && t.right == nil
178 if t.left != nil {
179 t.left.visitInOrder(f)
188 if t.left == nil {
195 return t.left.rank
197 if t.right.rank > t.left.rank
    [all...]
  /art/test/550-checker-multiply-accumulate/src/
Main.java 40 /// CHECK: <<Left:i\d+>> ParameterValue
42 /// CHECK: <<Mul:i\d+>> Mul [<<Left>>,<<Right>>]
48 /// CHECK: <<Left:i\d+>> ParameterValue
50 /// CHECK: <<MulAdd:i\d+>> MultiplyAccumulate [<<Acc>>,<<Left>>,<<Right>>] kind:Add
62 /// CHECK: <<Left:i\d+>> ParameterValue
64 /// CHECK: <<Mul:i\d+>> Mul [<<Left>>,<<Right>>]
70 /// CHECK: <<Left:i\d+>> ParameterValue
72 /// CHECK: <<MulAdd:i\d+>> MultiplyAccumulate [<<Acc>>,<<Left>>,<<Right>>] kind:Add
82 public static int $opt$noinline$mulAdd(int acc, int left, int right) {
84 return acc + left * right
    [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);
  /frameworks/base/services/core/java/com/android/server/wm/
TapExcludeRegionHolder.java 31 void updateRegion(int regionId, int left, int top, int width, int height) {
42 region.set(left, top, left + width, top + height);
  /packages/apps/Launcher3/src/com/android/launcher3/anim/
RoundedRectRevealOutlineProvider.java 52 mOutline.left = (int) ((1 - progress) * mStartRect.left + progress * mEndRect.left);
  /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/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);
  /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,
  /frameworks/native/services/surfaceflinger/tests/fakehwc/
FakeComposerUtils.h 32 return os << "(" << rect.left << ","
39 return os << "(" << rect.left << ","
53 a.left == b.left &&
60 a.left == b.left &&
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
RopeByteString.java 118 private final ByteString left; field in class:RopeByteString
127 * @param left string on the left of this node, should have {@code size() >
132 private RopeByteString(ByteString left, ByteString right) {
133 this.left = left;
135 leftLength = left.size();
137 treeDepth = Math.max(left.getTreeDepth(), right.getTreeDepth()) + 1;
151 * @param left string on the left
634 ByteString left = prefixesStack.pop(); local
646 ByteString left = prefixesStack.pop(); local
    [all...]
  /device/google/cuttlefish_common/guest/hals/hwcomposer/legacy/
geometry_utils.cpp 24 int left1 = layer1.displayFrame.left;
29 int left2 = layer2.displayFrame.left;

Completed in 638 milliseconds

1 2 3 4 5 6 7 891011>>