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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
blank.s 1 @ this file left intentionally blank
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
blank.s 1 @ this file left intentionally blank
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
exports.s 1 # Deliberately left empty.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
StateCluster.java 30 /** A Cluster object points to the left/right (start and end) states of a
34 public NFAState left; field in class:StateCluster
37 public StateCluster(NFAState left, NFAState right) {
38 this.left = left;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnPOS.java 25 /** The part of speech at left side */
26 public int left = 0; field in class:WnnPOS
39 * @param left The part of speech at left side
42 public WnnPOS(int left, int right) {
43 this.left = left;
  /frameworks/base/core/tests/coretests/src/android/app/usage/
UsageStatsTest.java 31 private UsageStats left; field in class:UsageStatsTest
36 left = new UsageStats();
42 left.mPackageName = "com.test";
43 left.mBeginTimeStamp = 100000;
47 left.add(right);
49 assertThat(left.getFirstTimeStamp()).isEqualTo(99999);
54 left.mPackageName = "com.test";
55 left.mEndTimeStamp = 100000;
59 left.add(right);
61 assertThat(left.getLastTimeStamp()).isEqualTo(100001)
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/toys/
FancyAnnotation.java 6 String left(); method in interface:FancyAnnotation
  /external/clang/test/Modules/Inputs/
diamond_left.h 5 float left(float *);
diamond_right.h 6 int left, right; member in struct:left_and_right
category_left.h 3 @interface Foo(Left)
4 -(void)left;
8 -(void)left;
  /external/clang/test/Modules/
va_list.cpp 5 @import left; variable
  /external/jline/src/src/test/java/jline/
TestCompletion.java 59 new Buffer("f baz").left().left().left().left().
62 new Buffer("b foo").left().left().left().left().
65 new Buffer("foo b baz").left().left().left().left()
    [all...]
  /libcore/ojluni/src/main/java/java/util/function/
DoubleBinaryOperator.java 44 * @param left the first operand
48 double applyAsDouble(double left, double right);
IntBinaryOperator.java 45 * @param left the first operand
49 int applyAsInt(int left, int right);
LongBinaryOperator.java 45 * @param left the first operand
49 long applyAsLong(long left, long right);
  /frameworks/base/graphics/java/android/graphics/
RectF.java 27 * represented by the coordinates of its 4 edges (left, top, right bottom).
30 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
33 public float left; field in class:RectF
45 * checking is performed, so the caller must ensure that left <= right and
48 * @param left The X coordinate of the left side of the rectangle
53 public RectF(float left, float top, float right, float bottom) {
54 this.left = left;
62 * rectangle (which is left unmodified)
    [all...]
Insets.java 31 public final int left; field in class:Insets
36 private Insets(int left, int top, int right, int bottom) {
37 this.left = left;
48 * @param left the left inset
55 public static Insets of(int left, int top, int right, int bottom) {
56 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
59 return new Insets(left, top, right, bottom);
70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom)
    [all...]
Rect.java 32 * represented by the coordinates of its 4 edges (left, top, right bottom).
35 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
39 * into the column and row described by its left and top coordinates, but not
43 public int left; field in class:Rect
70 * checking is performed, so the caller must ensure that left <= right and
73 * @param left The X coordinate of the left side of the rectangle
78 public Rect(int left, int top, int right, int bottom) {
79 this.left = left;
    [all...]
  /frameworks/native/libs/ui/include/ui/
FloatRect.h 25 : left(_left), top(_top), right(_right), bottom(_bottom) {}
27 float getWidth() const { return right - left; }
34 (left > other.left) ? left : other.left,
41 float left = 0.0f; member in class:android::FloatRect
48 return a.left == b.left && a.top == b.top && a.right == b.right && a.bottom == b.bottom;
  /external/syslinux/com32/elflink/ldlinux/
getadv.c 42 size_t left; local
45 left = syslinux_adv_size();
47 while (left >= 2) {
50 left -= 2;
55 if (left < plen)
64 left -= plen;
  /external/guava/guava/src/com/google/common/collect/
ComparisonChain.java 75 Comparable left, Comparable right) {
76 return classify(left.compareTo(right));
79 @Nullable T left, @Nullable T right, Comparator<T> comparator) {
80 return classify(comparator.compare(left, right));
82 @Override public ComparisonChain compare(int left, int right) {
83 return classify(Ints.compare(left, right));
85 @Override public ComparisonChain compare(long left, long right) {
86 return classify(Longs.compare(left, right));
88 @Override public ComparisonChain compare(float left, float right) {
89 return classify(Float.compare(left, right))
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
GlobalSortKeyComparator.java 29 public int compare(NotificationRecord left, NotificationRecord right) {
30 if (left.getGlobalSortKey() == null) {
31 Slog.wtf(TAG, "Missing left global sort key: " + left);
38 return left.getGlobalSortKey().compareTo(right.getGlobalSortKey());
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockRectF.java 26 //public float left;
40 it.left = rhs.left;
47 public void $init(float left, float top, float right, float bottom) {
48 it.left = left;
61 it.left = it.left + dx;
69 public void offsetTo(float left, float top) {
71 it.right = left + width();
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/params/
ReprocessFormatsMap.java 77 int left = entry.length; local
81 left--;
84 if (left < 1) {
90 left--;
99 if (left < length) {
103 "expected: %d)", inputFormat, left, length));
107 left -= length;
132 int left = mEntry.length; local
136 left--;
139 if (left < 1)
180 int left = mEntry.length; local
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
SortingCursorWrapper.java 197 int left = 0; local
200 while (left < right) {
201 int mid = (left + right) >>> 1;
234 left = mid + 1;
238 int n = start - left;
241 positions[left + 2] = positions[left + 1];
242 sortKey[left + 2] = sortKey[left + 1];
243 isDirs[left + 2] = isDirs[left + 1]
278 int left = 0; local
    [all...]

Completed in 1397 milliseconds

1 2 3 4 5 6 7 8 91011>>