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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
blank.s 1 @ this file left intentionally blank
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
blank.s 1 @ this file left intentionally blank
  /toolchain/binutils/binutils-2.25/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;
  /ndk/tests/device/b16355858/jni/
sample.c 3 typedef unsigned (*VP8LPredictorFunc)(unsigned left, const unsigned* const top);
8 const unsigned left = 0xff7b7b7b; local
9 const unsigned pred = kPredictorsC[0](left, top + 1);
10 fprintf(stderr, "top[-1]: %8x top[0]: %8x left: %8x pred: %8x\n",
11 top[0], top[1], left, pred);
12 if (pred == left)
14 fprintf(stderr, "pred != left\n");
  /frameworks/base/test-runner/src/junit/runner/
Sorter.java 13 public void swap(Vector values, int left, int right);
16 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
17 int oleft= left;
19 String mid= (String)values.elementAt((left + right) / 2);
21 while (((String)(values.elementAt(left))).compareTo(mid) < 0)
22 left++;
25 if (left <= right) {
26 swapper.swap(values, left, right);
27 left++;
30 } while (left <= right)
    [all...]
  /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
  /frameworks/base/services/core/java/com/android/server/notification/
GlobalSortKeyComparator.java 25 public int compare(NotificationRecord left, NotificationRecord right) {
26 if (left.getGlobalSortKey() == null) {
27 throw new IllegalStateException("Missing left global sort key: " + left);
32 return left.getGlobalSortKey().compareTo(right.getGlobalSortKey());
  /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/native/services/surfaceflinger/DisplayHardware/
FloatRect.h 28 float left; member in class:android::FloatRect
34 : left(0), top(0), right(0), bottom(0) { }
36 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
38 inline float getWidth() const { return right - left; }
  /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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
swap.hpp 30 void swap_impl(T& left, T& right)
33 swap(left,right);
37 void swap_impl(T (& left)[N], T (& right)[N])
41 ::boost_swap_impl::swap_impl(left[i], right[i]);
49 void swap(T1& left, T2& right)
51 ::boost_swap_impl::swap_impl(left, right);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
QuickSelect.java 35 private int partition (int left, int right, int pivot) {
38 int storage = left;
39 for (int i = left; i < right; i++) {
49 private int recursiveSelect (int left, int right, int k) {
50 if (left == right) return left;
51 int pivotIndex = medianOfThreePivot(left, right);
52 int pivotNewIndex = partition(left, right, pivotIndex);
53 int pivotDist = (pivotNewIndex - left) + 1;
58 result = recursiveSelect(left, pivotNewIndex - 1, k)
67 T left = array[leftIdx]; local
    [all...]
Align.java 25 static public final int left = 1 << 3; field in class:Align
28 static public final int topLeft = top | left;
30 static public final int bottomLeft = bottom | left;
  /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/av/media/libeffects/lvm/lib/Common/src/
From2iToMS_16x16.c 33 LVM_INT32 temp1,left,right; local
37 left = (LVM_INT32)*src;
44 temp1 = (left+right)>>1;
49 temp1 = (left-right)>>1;
  /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...]

Completed in 768 milliseconds

1 2 3 4 5 6 7 8 91011>>