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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /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());
  /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 29 * represented by the coordinates of its 4 edges (left, top, right bottom).
32 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).
35 public int left; field in class:Rect
62 * checking is performed, so the caller must ensure that left <= right and
65 * @param left The X coordinate of the left side of the rectangle
70 public Rect(int left, int top, int right, int bottom) {
71 this.left = left;
79 * rectangle (which is left unmodified)
    [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/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;
  /frameworks/native/services/surfaceflinger/DisplayHardware/
FloatRect.h 27 float left; member in class:android::FloatRect
34 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
36 inline float getWidth() const { return right - left; }
  /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...]
  /device/asus/fugu/dumpstate/
dumpstate.c 55 int left = 0; local
58 int ret = read(fd, &buffer[left], sizeof(buffer) - left);
62 left += ret;
64 while (left > 2) {
66 left -= 3;
74 if (left) {
75 memmove(buffer, &buffer[ofs], left);
80 if (!left) {
86 count = left;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
SelectionRenderer.java 24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
26 canvas.drawRect(left, top, right, top + stroke, paint);
27 canvas.drawRect(left, bottom - stroke, right, bottom, paint);
28 canvas.drawRect(left, top, left + stroke, bottom, paint);
32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
34 canvas.drawRect(left, top, right, top + stroke, selectPaint);
35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint);
36 canvas.drawRect(left, top, left + stroke, bottom, selectPaint)
    [all...]
  /external/openssh/openbsd-compat/
realpath.c 49 * in which case the path which caused trouble is left in (resolved).
59 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
69 left_len = strlcpy(left, path + 1, sizeof(left));
76 left_len = strlcpy(left, path, sizeof(left));
78 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
84 * Iterate over path components in `left'.
88 * Extract the next path component and adjust `left'
91 p = strchr(left, '/');
    [all...]
  /frameworks/base/libs/hwui/
Rect.h 33 (r).left, (r).top, (r).right, (r).bottom
35 (r).left(), (r).top(), (r).right(), (r).bottom()
43 float left; member in class:android::uirenderer::Rect
55 left(0),
61 inline Rect(float left, float top, float right, float bottom):
62 left(left),
69 left(0.0f),
76 left(rect.fLeft),
91 left = top = right = bottom = 0.0f
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitReaderBuffer.java 19 int left = 8 - position % 8;
21 if (i <= left) {
22 rc = (v << (position % 8) & 0xFF) >> ((position % 8) + (left - i));
25 int now = left;
26 int then = i - left;
40 int left = 8 - position % 8;
41 if (left == 8) {
42 left = 0;
44 readBits(left);
45 return left;
    [all...]
  /libcore/luni/src/main/native/
canonicalize_path.cpp 60 // Iterate over path components in 'left'.
62 std::string left(path + 1);
63 while (!left.empty()) {
65 size_t nextSlash = left.find('/');
66 std::string nextPathComponent = left.substr(0, nextSlash);
68 left.erase(0, nextSlash + 1);
70 left.clear();
111 if (!left.empty()) {
113 left = symlink + maybeSlash + left;
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
SortingCursorWrapper.java 177 int left = 0; local
180 while (left < right) {
181 int mid = (left + right) >>> 1;
190 left = mid + 1;
194 int n = start - left;
197 position[left + 2] = position[left + 1];
198 value[left + 2] = value[left + 1];
200 position[left + 1] = position[left]
223 int left = 0; local
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-multiple-nonvirtual-inheritance.cpp 3 struct Left {
4 virtual void left();
11 struct ChildNoOverride : Left, Right {
14 struct ChildOverride : Left, Right {
15 virtual void left();
25 child->left();
26 // Only need to cast 'this' to Left*.
27 // CHECK: %[[LEFT:.*]] = bitcast %struct.ChildNoOverride* %[[CHILD]] to %struct.Left*
28 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Left* %[[LEFT]] to void (%struct.Left*)**
36 void ChildOverride::left() { function in class:ChildOverride
    [all...]

Completed in 582 milliseconds

1 2 3 4 5 6 7 8 91011>>