HomeSort by relevance Sort by last modified time
    Searched full:left (Results 151 - 175 of 6784) sorted by null

1 2 3 4 5 67 8 91011>>

  /development/simulator/app/assets/android-sooner/
layout.xml 19 <button keyCode="soft-left" src="menu.png" x="93" y="367"/>
25 <button keyCode="dpad-left" src="left.png" x="141" y="366"/>
  /development/simulator/app/assets/panasonic-x70/
layout.xml 18 <button keyCode="soft-left" src="soft-left.png" x="45" y="324"/>
24 <button keyCode="dpad-left"/>
  /external/guava/src/com/google/common/collect/
LexicographicalOrdering.java 40 Iterator<T> left = leftIterable.iterator(); local
42 while (left.hasNext()) {
46 int result = elementOrder.compare(left.next(), right.next());
NaturalOrdering.java 33 public int compare(Comparable left, Comparable right) {
34 checkNotNull(right); // left null is caught later
35 if (left == right) {
40 int result = left.compareTo(right);
NullsFirstOrdering.java 34 public int compare(T left, T right) {
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
NullsLastOrdering.java 34 public int compare(T left, T right) {
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
ReverseNaturalOrdering.java 31 public int compare(Comparable left, Comparable right) {
32 checkNotNull(left); // right null is caught later
33 if (left == right) {
38 int result = right.compareTo(left);
  /external/webkit/WebCore/css/
Rect.h 34 CSSPrimitiveValue* left() const { return m_left.get(); } function in class:WebCore::RectBase
39 void setLeft(PassRefPtr<CSSPrimitiveValue> left) { m_left = left; }
  /external/webkit/WebCore/rendering/
GapRects.h 31 const IntRect& left() const { return m_left; } function in struct:WebCore::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
  /frameworks/base/awt/java/awt/geom/
RectangularShape.java 44 * Gets the x coordinate of the upper left corner of the rectangle.
46 * @return the x coordinate of the upper left corner of the rectangle.
51 * Gets the y coordinate of the upper left corner of the rectangle.
53 * @return the y coordinate of the upper left corner of the rectangle.
83 * the x coordinate of the upper left corner of the rectangle.
85 * the y coordinate of the upper left corner of the rectangle.
95 * the upper left corner of the rectangle).
105 * the upper left corner of the rectangle).
115 * the upper left corner of the rectangle plus the rectangle's width).
125 * the upper left corner of the rectangle plus the rectangle's height)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 28 * region by left, top, width and height.
139 int[] offsets = calculateOffsets(rectangle.left, rectangle.top);
182 int[] calculateOffsets(int left, int top) {
185 offsets = new int[] {top * mStrides[0] + left,
187 + left / 2 * 2 };
192 offsets = new int[] {top * mStrides[0] + left / 2 * 4};
218 // Make sure left, top, width and height are all even.
221 rect.left &= ~1;
223 rect.right = rect.left + width;
228 // Make sure left and width are both even
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_AlignTest.java 36 assertEquals(Align.LEFT, Align.valueOf("LEFT"));
63 assertEquals(Align.LEFT, actual[0]);
71 assertEquals(Align.LEFT, p.getTextAlign());
  /dalvik/dx/tests/043-dex-two-classes/
Blort.java 19 // This space intentionally left blank.
Zorch.java 19 // This space intentionally left blank.
  /dalvik/dx/tests/089-dex-define-object/
Class.java 20 // This space intentionally left blank.
String.java 20 // This space intentionally left blank.
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/operations/
Div.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() / right.num());
Minus.java 38 * @param left non-null reference to the evaluated left operand.
46 public XObject operate(XObject left, XObject right)
49 return new XNumber(left.num() - right.num());
Mod.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() % right.num());
Mult.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() * right.num());
Plus.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return new XNumber(left.num() + right.num());
  /dalvik/libcore/xml/src/test/resources/
SimpleBuilderTest.xml 11 <nestedStuff one="eins">This space intentionally left blank.</nestedStuff>
  /external/icu4c/samples/layout/
Surface.cpp 21 clip.left = 0;
  /external/kernel-headers/original/asm-arm/
sembuf.h 9 * Pad space is left for:
  /external/kernel-headers/original/asm-x86/
sembuf.h 9 * Pad space is left for:

Completed in 215 milliseconds

1 2 3 4 5 67 8 91011>>