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

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configHelpSourceEdit.py 50 labelMenu = Label(self.frameMain, anchor=W, justify=LEFT,
55 labelPath = Label(self.frameMain, anchor=W, justify=LEFT,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 25 import static com.android.ide.common.api.SegmentType.LEFT;
329 if (sourceSegmentTypeX == LEFT) {
339 if (targetSegmentTypeX == LEFT) {
655 } else if (targetSegmentTypeX == LEFT && targetMargins.left > 5) {
656 int sharedX = targetX - targetMargins.left;
673 } else if (sourceSegmentTypeX == LEFT ) {
692 if (targetSegmentTypeX == LEFT) {
693 sharedX -= targetMargins.left;
718 if (sourceSegmentTypeX == LEFT) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutWizard.java 81 fromLabel.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1));
105 mFlatten.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 105 dummy1.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, true, 1, 1));
113 dummy2.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, true, 1, 1));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
TestTargetPage.java 79 mCurrentRadioButton.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1));
84 mExistingRadioButton.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectPage.java 125 GridData gdApplicationText = new GridData(SWT.LEFT, SWT.CENTER, true, false, 2, 1);
138 GridData gdProjectText = new GridData(SWT.LEFT, SWT.CENTER, true, false, 2, 1);
152 GridData gdPackageText = new GridData(SWT.LEFT, SWT.CENTER, true, false, 2, 1);
178 GridData gdMinSdkCombo = new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1);
251 GridData gdTargetSdkCombo = new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1);
277 GridData gdBuildSdkCombo = new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1);
304 GridData gdThemeCombo = new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1);
401 ControlDecoration dec = new ControlDecoration(control, SWT.LEFT);
    [all...]
ActivityPage.java 109 mCreateToggle.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 3, 1));
166 mHeading.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1));
170 mDescription.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false, 2, 1));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 421 SWT.LEFT, "AAA+AAAAAAAAAAAAAAAAAAA", //$NON-NLS-1$
425 SWT.LEFT, "AAAAAAAAAAAAAAAAAAA", //$NON-NLS-1$
429 SWT.LEFT, "AAA+Android 9.9.9", //$NON-NLS-1$
433 SWT.LEFT, "Debug", //$NON-NLS-1$
437 SWT.LEFT, "bootloader", //$NON-NLS-1$
  /bootable/recovery/
ui.cpp 176 enum SwipeDirection { UP, DOWN, RIGHT, LEFT } direction;
182 direction = dx < 0 ? SwipeDirection::LEFT : SwipeDirection::RIGHT;
209 case SwipeDirection::LEFT:
  /external/pdfium/fpdfsdk/
fpdf_flatten.cpp 28 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM };
41 return rect.left - rcPage.left >= -kMinBorderSize &&
55 rc.left = pPageObject->m_Left;
128 case LEFT:
130 pArray[i] = array[i].left;
163 rcRet.left = GetMinMaxValue(*pRectArray, MIN, LEFT);
230 float e = rcAnnot.left - rcStream.left * a
    [all...]
  /external/python/cpython2/Demo/tkinter/guido/
tkman.py 68 self.leftsubframe.pack(side=LEFT, expand=1, fill=BOTH)
103 self.l2.pack(side=LEFT)
109 self.casesense.pack(side=LEFT)
  /external/swiftshader/src/OpenGL/libGLESv2/
Texture.cpp 1171 negX->copyCubeEdge(sw::Surface::BOTTOM, negY, sw::Surface::LEFT);
1178 negX->copyCubeEdge(sw::Surface::TOP, posY, sw::Surface::LEFT);
1182 // Copy left / right after top and bottom are done.
1184 posX->copyCubeEdge(sw::Surface::RIGHT, negZ, sw::Surface::LEFT);
1186 posZ->copyCubeEdge(sw::Surface::RIGHT, posX, sw::Surface::LEFT);
1187 negX->copyCubeEdge(sw::Surface::RIGHT, posZ, sw::Surface::LEFT);
1189 negZ->copyCubeEdge(sw::Surface::RIGHT, negX, sw::Surface::LEFT);
1191 posX->copyCubeEdge(sw::Surface::LEFT, posZ, sw::Surface::RIGHT);
1192 posY->copyCubeEdge(sw::Surface::LEFT, negX, sw::Surface::TOP);
1193 posZ->copyCubeEdge(sw::Surface::LEFT, negX, sw::Surface::RIGHT)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/helper/
ItemTouchHelper.java 85 * Left direction, used for swipe & drag control.
87 public static final int LEFT = 1 << 2;
97 * Horizontal start direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
100 public static final int START = LEFT << 2;
103 * Horizontal end direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
433 private static boolean hitTest(View child, float x, float y, float left, float top) {
434 return x >= left
435 && x <= left + child.getWidth()
501 if ((mSelectedFlags & (LEFT | RIGHT)) != 0) {
576 case LEFT
774 final int left = Math.round(mSelectedStartX + mDx) - margin; local
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityGestureDetector.java 60 private static final int LEFT = 0;
558 case LEFT:
590 /** Maps a vector to a dominant direction in set {LEFT, RIGHT, UP, DOWN}. */
594 return (dX < 0) ? LEFT : RIGHT;
  /frameworks/base/services/core/java/com/android/server/display/
OverlayDisplayWindow.java 231 mWindowParams.gravity = Gravity.TOP | Gravity.LEFT;
239 mWindowX = (mGravity & Gravity.LEFT) == Gravity.LEFT ?
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
ItemTouchHelper.java 83 * Left direction, used for swipe & drag control.
85 public static final int LEFT = 1 << 2;
95 * Horizontal start direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
98 public static final int START = LEFT << 2;
101 * Horizontal end direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
443 private static boolean hitTest(View child, float x, float y, float left, float top) {
444 return x >= left
445 && x <= left + child.getWidth()
520 if ((mSelectedFlags & (LEFT | RIGHT)) != 0) {
599 case LEFT
797 final int left = Math.round(mSelectedStartX + mDx) - margin; local
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 225 linearLayout.setHorizontalGravity(Gravity.LEFT);
249 linearLayout.setHorizontalGravity(Gravity.LEFT);
278 linearLayout.setHorizontalGravity(Gravity.LEFT);
318 linearLayout.setHorizontalGravity(Gravity.LEFT);
  /development/apps/Development/src/com/android/development/
LogViewer.java 57 text.setGravity(Gravity.BOTTOM | Gravity.LEFT);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 119 textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
  /external/droiddriver/src/io/appium/droiddriver/actions/
SwipeAction.java 127 * @param leftMarginRatio margin ratio from left
153 int adjustedLeft = elementRect.left + leftMargin;
173 case LEFT:
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DemoUtility.java 66 case Label.LEFT: c.anchor = GridBagConstraints.WEST; break;
  /external/python/cpython2/Lib/idlelib/
ToolTip.py 52 label = Label(self.tipwindow, text=text, justify=LEFT,
textView.py 60 self.textView.pack(side=LEFT,expand=TRUE,fill=BOTH)
  /external/python/cpython2/Lib/lib-tk/
SimpleDialog.py 33 b.pack(side=LEFT, fill=BOTH, expand=1)
  /external/python/cpython3/Lib/idlelib/
textview.py 60 self.textView.pack(side=LEFT,expand=TRUE,fill=BOTH)

Completed in 1349 milliseconds

<<11121314151617181920>>