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

<<21222324252627282930>>

  /frameworks/base/core/tests/coretests/res/layout/
framelayout_gravity.xml 28 <Button android:id="@+id/right"
29 android:layout_gravity="right"
47 android:layout_gravity="center_vertical|right"
65 android:layout_gravity="bottom|right"
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusAfterRemoval.java 59 // top right button makes top right button GONE
68 // bottom right button makes bottom right button INVISIBLE
  /frameworks/base/libs/hwui/
CanvasState.cpp 157 bool CanvasState::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) {
158 mDirtyClip |= mSnapshot->clip(left, top, right, bottom, op);
180 clipRect(bounds.left, bounds.top, bounds.right, bounds.bottom, SkRegion::kIntersect_Op);
211 float right, float bottom,
214 if (mSnapshot->isIgnored() || bottom <= top || right <= left) {
218 Rect r(left, top, right, bottom);
241 float right, float bottom) const {
242 if (mSnapshot->isIgnored() || bottom <= top || right <= left) {
246 Rect r(left, top, right, bottom);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
RtlSpacingHelper.java 21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
69 public void setAbsolute(int left, int right) {
72 if (right != UNDEFINED) mRight = mExplicitRight = right;
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_Device.h 78 PAT1, /* obverse: 1st pin is right down */
81 PAT4, /* obverse: 1st pin is right top */
84 PAT7, /* reverse: 1st pin is right top (from top view) */
85 PAT8 /* reverse: 1st pin is right down (from top view) */
  /ndk/tests/device/test-gnustl-full/unit/
math_aux.h 16 * right prototype.
  /ndk/tests/device/test-stlport/unit/
math_aux.h 16 * right prototype.
  /ndk/tests/device/test-stlport_shared-exception/jni/
ctor2.cpp 3 // constructor throws gets the right address for a virtual base.
new1.cpp 3 // right pointer to operator delete.
ptr1.cpp 2 // Bug: catching pointers by reference doesn't work right.
  /ndk/tests/device/test-stlport_static-exception/jni/
ctor2.cpp 3 // constructor throws gets the right address for a virtual base.
new1.cpp 3 // right pointer to operator delete.
ptr1.cpp 2 // Bug: catching pointers by reference doesn't work right.
  /packages/apps/Camera2/src/com/android/camera/util/
DebugBoundsRenderer.java 33 drawBounds(canvas, paint, size, rect.left, rect.top, rect.right, rect.bottom);
41 drawBounds(canvas, paint, size, rect.left, rect.top, rect.right, rect.bottom);
56 // top right
62 // bottom right
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java 215 ret.right = (p[0] < ret.right) ? p[0] : ret.right;
220 ret.right = (p[0] < ret.right) ? p[0] : ret.right;
263 else if (inner.right == newInner.right)
264 fixed = 2; // top right
266 if (inner.right == newInner.right
    [all...]
CropObject.java 205 dx = Math.min(crop.left + dX, crop.right - minWidthHeight) - crop.left;
211 dx = Math.max(crop.right + dX, crop.left + minWidthHeight)
212 - crop.right;
224 crop.right, crop.top
251 crop.right += dx;
268 float right = Math.abs(x - cropped.right); local
273 // Check left or right.
275 && ((y - mTouchTolerance) <= cropped.bottom) && (left < right)) {
278 else if ((right <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top
    [all...]
  /packages/inputmethods/LatinIME/java/res/xml/
rows_number_password.xml 34 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
48 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
62 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
77 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
  /packages/inputmethods/LatinIME/java/res/xml-sw600dp/
rows_number_password.xml 34 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
48 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
62 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
77 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_priority_queue.h 103 const DicNode *const right) {
104 return left->compare(right);
108 bool operator ()(const DicNode *left, const DicNode *right) const {
109 return compareDicNode(left, right);
  /sdk/build/
windows_sdk_tools.mk 7 # *platform* builds. Right now we are not building any SDK Tools
  /system/bt/stack/include/
uipc_msg.h 315 #define CODEC_INFO_AAC_2_CH 2 /*left, right front speaker */
316 #define CODEC_INFO_AAC_3_CH 3 /*center front speaker, left right front speaker */
317 #define CODEC_INFO_AAC_4_CH 4 /*center/rear front speaker, left/right front speaker */
318 #define CODEC_INFO_AAC_5_CH 5 /*center, left, right front speaker, left/right surround */
319 #define CODEC_INFO_AAC_6_CH 6 /*center, left, right front speaker, left/right surround, LFE */
320 #define CODEC_INFO_AAC_7_CH 7 /*(left, right)center/left,right front speaker, left/right surround, LFE *
    [all...]
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 191 + aggregateBelowRange(aggr, node.right);
201 return aggregateAboveRange(aggr, node.right);
205 return aggr.nodeAggregate(node) + aggr.treeAggregate(node.right);
207 return aggr.treeAggregate(node.right);
212 return aggr.treeAggregate(node.right) + aggr.nodeAggregate(node)
529 private AvlNode<E> right;
541 this.right = null;
549 return (right == null) ? 0 : right.count(comparator, e);
556 right = new AvlNode<E>(e, count)
    [all...]
  /external/lldb/www/python_reference/
lldb.SBProcess-class.html 31 <th class="navbar" align="right" width="100%">
49 <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
51 <tr><td align="right"><span class="options"
131 <td align="right" valign="top"
140 <td width="15%" align="right" valign="top" class="summary">
158 <td align="right" valign="top"
167 <td width="15%" align="right" valign="top" class="summary">
176 <td align="right" valign="top">
186 <td width="15%" align="right" valign="top" class="summary">
193 <td align="right" valign="top"
    [all...]
lldb.SBBlock-class.html 31 <th class="navbar" align="right" width="100%">
49 <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
51 <tr><td align="right"><span class="options"
106 <td align="right" valign="top"
115 <td width="15%" align="right" valign="top" class="summary">
133 <td align="right" valign="top"
142 <td width="15%" align="right" valign="top" class="summary">
151 <td align="right" valign="top">
161 <td width="15%" align="right" valign="top" class="summary">
168 <td align="right" valign="top"
    [all...]
lldb.SBModule-class.html 31 <th class="navbar" align="right" width="100%">
49 <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
51 <tr><td align="right"><span class="options"
189 <td align="right" valign="top"
198 <td width="15%" align="right" valign="top" class="summary">
205 <td width="15%" align="right" valign="top" class="summary">
212 <td width="15%" align="right" valign="top" class="summary">
228 <td align="right" valign="top"
237 <td width="15%" align="right" valign="top" class="summary">
246 <td align="right" valign="top"
    [all...]

Completed in 587 milliseconds

<<21222324252627282930>>