HomeSort by relevance Sort by last modified time
    Searched refs:LEFT (Results 1 - 25 of 800) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
FillDirection.java 24 * LEFT - (Not implemented) Use the left edge of the plot.
32 LEFT,
  /external/clang/test/Modules/Inputs/
macros_left.h 2 #define LEFT unsigned long
  /external/libavc/encoder/
ime_defs.h 46 #define LEFT 1
  /external/python/cpython2/Demo/tkinter/matt/
slider-demo-1.py 26 self.slider.pack(side=LEFT)
27 self.reset.pack(side=LEFT)
28 self.QUIT.pack(side=LEFT, fill=BOTH)
00-HELLO-WORLD.py 14 self.QUIT.pack(side=LEFT, fill=BOTH)
19 self.hi_there.pack(side=LEFT)
animation-simple.py 12 self.QUIT.pack(side=LEFT, fill=BOTH)
18 self.draw.pack(side=LEFT)
dialog-box.py 42 # buttons that appear left to right in the dialog box
49 self.QUIT.pack(side=LEFT, fill=BOTH)
54 self.hi_there.pack(side=LEFT)
not-what-you-might-think-1.py 9 self.Gpanel.pack(side=LEFT)
15 self.Gpanel.QUIT.pack(side=LEFT)
not-what-you-might-think-2.py 13 self.Gpanel.pack(side=LEFT)
18 self.Gpanel.QUIT.pack(side=LEFT)
packer-simple.py 12 self.QUIT.pack(side=LEFT, fill=BOTH)
16 self.hi_there.pack(side=LEFT)
subclass-existing-widgets.py 16 f.QUIT.pack(side=LEFT, fill=BOTH)
22 f.hi_there.pack(side=LEFT)
window-creation-more.py 21 self.QUIT.pack(side=LEFT, fill=BOTH)
26 self.hi_there.pack(side=LEFT)
window-creation-simple.py 18 self.QUIT.pack(side=LEFT, fill=BOTH)
23 self.hi_there.pack(side=LEFT)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/focus/
NavigateTaskViewEvent.java 27 UNDEFINED, UP, DOWN, LEFT, RIGHT;
42 return Direction.LEFT;
  /art/test/115-native-bridge/
run 31 LEFT=$(echo ${ARGS} | sed -r 's/-Djava.library.path.*//')
33 MODARGS="${LEFT} -Djava.library.path=`pwd` ${RIGHT}"
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
TextAlignment.java 26 LEFT(0x0),
  /art/tools/ahat/src/main/com/android/ahat/
Column.java 28 LEFT, RIGHT
46 * Construct a left-aligned column with a simple heading.
49 this(DocString.text(heading), Align.LEFT);
  /external/libavc/decoder/
ih264d_mvpred.c 61 * \param ps_currMv: Pointer to the left top edge of the current block in
69 * the candidate predictors and the pointer to the top left edge of the
87 (ps_mv_pred[LEFT]->i1_ref_frame[u1_B] == u1_ref_idx)
130 * \param ps_currMv: Pointer to the left top edge of the current block in
138 * the candidate predictors and the pointer to the top left edge of the
167 ps_mv_pred[LEFT] = &ps_dec->s_default_mv_pred;
171 /* Check if the left subMb is available */
175 ps_mv_pred[LEFT] = (ps_mv_nmb - 1);
203 ps_mv_pred[LEFT] = (ps_mvpred_l - uc_temp);
204 pu0_scale[LEFT] = u1_is_cur_mb_fld - u1_is_left_mb_fld
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_AlignTest.java 34 assertEquals(Align.LEFT, Align.valueOf("LEFT"));
45 assertEquals(Align.LEFT, actual[0]);
53 assertEquals(Align.LEFT, p.getTextAlign());
  /external/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 19 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.LEFT;
68 LEFT {
82 return LEFT;
97 private final PhysicalDirection[] directions = {LEFT, RIGHT};
118 * override this for RTL (right-to-left) views, for example.
122 /** Follows standard convention: up-to-down, left-to-right */
135 /** Follows RTL convention: up-to-down, right-to-left */
139 return LEFT;
  /frameworks/base/core/java/android/database/
CursorJoiner.java 32 * case LEFT:
59 /** The row currently pointed to by the left cursor is unique */
62 LEFT,
68 * Initializes the CursorJoiner and resets the cursors to the first row. The left and right
70 * @param cursorLeft The left cursor to compare
71 * @param columnNamesLeft The column names to compare from the left cursor
80 "you must have the same number of columns on the left and right, "
126 case LEFT:
152 * @return LEFT, if the row pointed to by the left cursor is unique, RIGH
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintType.java 22 import static com.android.ide.common.api.SegmentType.LEFT;
63 ALIGN_LEFT(ATTR_LAYOUT_ALIGN_LEFT, LEFT, null, LEFT, null, false, false, true, false),
65 LAYOUT_LEFT_OF(ATTR_LAYOUT_TO_LEFT_OF, RIGHT, null, LEFT, null, false, false, true, true),
66 LAYOUT_RIGHT_OF(ATTR_LAYOUT_TO_RIGHT_OF, LEFT, null, RIGHT, null, false, false, true, true),
70 ALIGN_PARENT_LEFT(ATTR_LAYOUT_ALIGN_PARENT_LEFT, LEFT, null, LEFT, null, true, false, true,
184 case LEFT:
219 case LEFT:
221 case LEFT
    [all...]
  /frameworks/support/compat/src/androidTest/java/androidx/core/view/
GravityCompatTest.java 43 assertEquals("Left under LTR",
44 GravityCompat.getAbsoluteGravity(Gravity.LEFT, ViewCompat.LAYOUT_DIRECTION_LTR),
45 Gravity.LEFT);
49 assertEquals("Left under RTL",
50 GravityCompat.getAbsoluteGravity(Gravity.LEFT, ViewCompat.LAYOUT_DIRECTION_RTL),
51 Gravity.LEFT);
59 Gravity.LEFT);
74 Gravity.LEFT);
76 // And on older devices START is always LEFT, END is always RIGHT
80 Gravity.LEFT);
    [all...]
  /external/clang/test/Modules/
macros.c 62 #ifdef LEFT
63 # error LEFT should not be visible
77 // Import left module (which also imports top)
82 #ifndef LEFT
83 # error LEFT should be visible
111 #ifndef LEFT
112 # error LEFT should be visible
  /external/python/cpython2/Lib/lib-tk/
ScrolledText.py 17 from Tkconstants import RIGHT, LEFT, Y, BOTH
27 self.pack(side=LEFT, fill=BOTH, expand=True)
50 stext.pack(fill=BOTH, side=LEFT, expand=True)

Completed in 460 milliseconds

1 2 3 4 5 6 7 8 91011>>