HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 526 - 550 of 5035) sorted by null

<<21222324252627282930>>

  /external/objenesis/main/src/org/objenesis/instantiator/basic/
ObjectInputStreamInstantiator.java 133 int left = len; local
136 while(remaining <= left) {
139 left -= remaining;
143 if(left > 0) {
144 System.arraycopy(data, pointer, b, off, left);
145 pointer += left;
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_direct3d9.h 121 const float left,
131 float& left, float& top,
153 const float left, const float top,
159 const float left, const float top,
174 const float left, const float top,
180 const float left, const float top,
  /frameworks/base/core/java/android/transition/
SidePropagation.java 46 * {@link Gravity#LEFT}, {@link Gravity#TOP}, {@link Gravity#RIGHT},
93 int left = loc[0] + Math.round(sceneRoot.getTranslationX()); local
95 int right = left + sceneRoot.getWidth();
104 epicenterX = (left + right) / 2;
109 left, top, right, bottom);
122 int left, int top, int right, int bottom) {
126 side = isRtl ? Gravity.RIGHT : Gravity.LEFT;
129 side = isRtl ? Gravity.LEFT : Gravity.RIGHT;
135 case Gravity.LEFT:
142 distance = viewX - left + Math.abs(epicenterY - viewY)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
AssertHelpers.java 58 * Assert that every element in left is less than or equals to the corresponding element in
64 * @param left Left array
67 public static void assertArrayNotGreater(String message, float[] left, float[] right) {
68 assertEquals("Array lengths did not match", left.length, right.length);
70 String leftString = Arrays.toString(left);
73 for (int i = 0; i < left.length; ++i) {
75 "%s: (%s should be less than or equals than %s; item index %d; left = %s; " +
77 message, left[i], right[i], i, leftString, rightString);
79 assertTrue(msg, left[i] <= right[i])
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 305 /*package*/ static void native_arcTo(long nPath, float left, float top, float right,
313 pathDelegate.arcTo(left, top, right, bottom, startAngle, sweepAngle, forceMoveTo);
328 float left, float top, float right, float bottom, int dir) {
334 pathDelegate.addRect(left, top, right, bottom, dir);
338 /*package*/ static void native_addOval(long nPath, float left, float top, float right,
346 left, top, right - left, bottom - top), false);
362 /*package*/ static void native_addArc(long nPath, float left, float top, float right,
371 left, top, right - left, bottom - top
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
diff.py 46 self.left = DiffLines(file_a, start_a, len_a)
53 self.left.Append(line)
57 self.left.Append(line)
68 return self.left.Complete() and self.right.Complete()
72 self.left.filename, self.right.filename,
73 max(self.left.length, self.right.length))
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
findnearmv.c 37 const MODE_INFO *left = here - 1; local
61 /* Process left */
62 if (left->mbmi.ref_frame != INTRA_FRAME)
64 if (left->mbmi.mv.as_int)
68 this_mv.as_int = left->mbmi.mv.as_int;
69 mv_bias(ref_frame_sign_bias[left->mbmi.ref_frame], refframe, &this_mv, ref_frame_sign_bias);
83 /* Process above left */
108 /* See if above-left MV can be merged with NEAREST */
114 + (left->mbmi.mode == SPLITMV)) * 2
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterCropRepresentation.java 69 || mCrop.left != crop.mCrop.left
97 crop.left *= bitmapWidth;
108 crop.left /= bitmapWidth;
155 writer.name(BOUNDS[0]).value(mCrop.left);
168 mCrop.left = (float) reader.nextDouble();
  /packages/apps/Launcher2/src/com/android/launcher2/
ButtonDropTarget.java 134 final int left; local
139 left = right - width;
141 left = to.left + getPaddingLeft();
142 right = left + width;
148 to.set(left, top, right, bottom);
  /packages/apps/Launcher3/src/com/android/launcher3/
BaseRecyclerViewFastScrollPopup.java 72 mTextBounds.right = (int) (mTextBounds.left + mTextPaint.measureText(sectionName));
90 mBgBounds.left = mRv.getBackgroundPadding().left + (2 * mRv.getMaxScrollbarWidth());
91 mBgBounds.right = mBgBounds.left + bgWidth;
95 mBgBounds.left = mBgBounds.right - bgWidth;
143 c.translate(mBgBounds.left, mBgBounds.top);
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactSectionIndexer.java 67 int left = 0; local
72 if (position <= mSectionStartingPositions.get(left)) {
73 return left;
78 while (left <= right) {
79 final int mid = (left + right) / 2;
87 left = mid + 1;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PercentageBarChart.java 75 final int left = getPaddingLeft(); local
80 final int width = right - left;
96 if (lastX < left) {
97 canvas.drawRect(left, top, nextX, bottom, e.paint);
106 canvas.drawRect(left, top, nextX, bottom, mEmptyPaint);
108 float lastX = left;
  /prebuilts/go/darwin-x86/test/bench/garbage/
tree.go 49 left, right *Node
60 if n.left == nil {
63 return n.item + n.left.itemCheck() - n.right.itemCheck()
  /prebuilts/go/linux-x86/test/bench/garbage/
tree.go 49 left, right *Node
60 if n.left == nil {
63 return n.item + n.left.itemCheck() - n.right.itemCheck()
  /prebuilts/misc/windows/sdl2/test/
checkkeys.c 90 size_t left; local
93 left = sizeof(message);
97 print_string(&spot, &left,
104 print_string(&spot, &left,
110 print_modifiers(&spot, &left);
112 print_string(&spot, &left, " (repeat)");
  /external/libopus/doc/
customdoxygen.css 136 margin-left: -1cm;
169 background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
174 margin-left: 16px;
180 margin-left: 16px;
192 margin-left: 8px;
298 border-left: 2px solid #B8B8B8;
397 margin-left: 9px;
422 margin-left: 6px;
427 border-left: 1px solid #C0C0C0
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_server_read.c 125 size_t left, len, i, j; local
140 left = *in_len;
142 if (left < 4)
158 left -= 4;
160 if (len > left)
372 size_t left, len, list_len, cert_len, idx; local
386 left = *in_len;
388 if (left < 4) {
390 (unsigned long) left);
399 left -= 4
783 size_t left, len; local
860 size_t left, len; local
1022 size_t left; local
1071 size_t left, len, hlen; local
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/css/
default.css 57 padding-left: 10px; }
77 margin-left: 190px;
92 float: left; }
125 float: left; }
207 clear: left;
327 text-align: left;
382 float: left;
383 margin-left: 20px; }
385 margin-left: 0; }
585 padding-left:10px
    [all...]
  /build/tools/droiddoc/templates-sdk-refonly/assets/css/
default.css 57 padding-left: 10px; }
77 margin-left: 190px;
92 float: left; }
125 float: left; }
207 clear: left;
327 text-align: left;
382 float: left;
383 margin-left: 20px; }
385 margin-left: 0; }
585 padding-left:10px
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
FixedGridLayout.java 92 int left = x + ((cellWidth-w)/2); local
95 child.layout(left, top, left+w, top+h);
  /external/blktrace/
rbtree.c 50 struct rb_node *left = node->rb_left; local
53 if ((node->rb_left = left->rb_right))
54 rb_set_parent(left->rb_right, node);
55 left->rb_right = node;
57 rb_set_parent(left, parent);
62 parent->rb_right = left;
64 parent->rb_left = left;
67 root->rb_node = left;
68 rb_set_parent(node, left);
233 struct rb_node *old = node, *left; local
    [all...]
  /external/fio/lib/
prio_tree.h 8 struct prio_tree_node *left; member in struct:prio_tree_node
48 (ptr)->left = (ptr)->right = (ptr)->parent = (ptr); \
74 return node->left == node;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
BinaryTreeTraverser.java 36 * Returns the left child of the specified node, or {@link Optional#absent()} if the specified
37 * node has no left child.
48 * Returns the children of this node, in left-to-right order.
64 Optional<T> left = leftChild(root); local
65 if (left.isPresent()) {
66 return left.get();
  /external/guava/
javadoc-stylesheet.css 84 margin-left:.5em;
96 background-position:left top;
119 float:left;
132 float:left;
143 float:left;
148 clear:left;
149 float:left;
153 float:left;
159 float:left;
164 float:left;
    [all...]
  /external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 19 // static const fmtflags left;
29 // static const fmtflags adjustfield = left | right | internal;
43 assert(std::ios_base::left);
61 & std::ios_base::left
73 assert(std::ios_base::adjustfield == (std::ios_base::left

Completed in 1459 milliseconds

<<21222324252627282930>>