/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;
|
/external/chromium_org/tools/gyp/test/ninja/s-needs-no-depfiles/ |
empty.s | 1 # This file intentionally left blank.
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
TSearch.h | 13 static T* QSort_Partition(T* left, T* right, T* pivot) 17 T* newPivot = left; 18 while (left < right) { 19 if (*left < pivotValue) { 20 SkTSwap(*left, *newPivot); 23 left += 1; 30 void QSort(T* left, T* right) 32 if (left >= right) { 35 T* pivot = left + (right - left >> 1) [all...] |
/external/skia/experimental/Intersection/ |
TSearch.h | 13 static T* QSort_Partition(T* left, T* right, T* pivot) 17 T* newPivot = left; 18 while (left < right) { 19 if (*left < pivotValue) { 20 SkTSwap(*left, *newPivot); 23 left += 1; 30 void QSort(T* left, T* right) 32 if (left >= right) { 35 T* pivot = left + (right - left >> 1) [all...] |
/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/chromium_org/chrome/browser/resources/ |
about_version_android.css | 6 text-align: left; 16 margin-left: auto;
|
about_nacl.css | 11 margin-left: 10px;
|
/external/clang/test/Modules/Inputs/ |
diamond_left.h | 3 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());
|
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/ |
AnimatableValue.cpp | 52 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableValue::interpolate(const AnimatableValue* left, const AnimatableValue* right, double fraction) 54 ASSERT(left); 56 ASSERT(!left->isNeutral()); 59 if (fraction && fraction != 1 && left->isSameType(right)) 60 return left->interpolateTo(right, fraction); 62 return defaultInterpolateTo(left, right, fraction); 65 double AnimatableValue::distance(const AnimatableValue* left, const AnimatableValue* right) 67 ASSERT(left); 70 if (left->isSameType(right)) 71 return left->distanceTo(right) [all...] |
/external/chromium_org/components/dom_distiller/core/ |
article_entry_unittest.cc | 31 ArticleEntry left; local 33 left.set_entry_id("entry0"); 35 EXPECT_FALSE(AreEntriesEqual(left, right)); 36 right = left; 37 EXPECT_TRUE(AreEntriesEqual(left, right)); 39 left.set_title("a title"); 40 EXPECT_FALSE(AreEntriesEqual(left, right)); 42 EXPECT_FALSE(AreEntriesEqual(left, right)); 44 EXPECT_TRUE(AreEntriesEqual(left, right)); 48 *left.add_pages() = left_page [all...] |
/frameworks/base/graphics/java/android/graphics/ |
RectF.java | 28 * represented by the coordinates of its 4 edges (left, top, right bottom). 31 * the coordinates are sorted correctly (i.e. left <= right and top <= bottom). 34 public float left; field in class:RectF 46 * checking is performed, so the caller must ensure that left <= right and 49 * @param left The X coordinate of the left side of the rectangle 54 public RectF(float left, float top, float right, float bottom) { 55 this.left = left; 63 * 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);
|
/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/chromium_org/third_party/WebKit/Source/platform/geometry/ |
IntRectExtent.h | 47 IntRectExtent(int top, int right, int bottom, int left) 51 , m_left(left) 64 int left() const { return m_left; } function in class:blink::IntRectExtent 65 void setLeft(int left) { m_left = left; } 67 bool isZero() const { return !left() && !right() && !top() && !bottom(); } 74 rect.move(-left(), -top()); 75 rect.expand(left() + right(), top() + bottom()); 90 && a.left() == b.left(); [all...] |
/external/chromium_org/ui/gfx/geometry/ |
insets.cc | 15 Insets::Insets(int top, int left, int bottom, int right) 16 : InsetsBase<Insets, int>(top, left, bottom, right) {} 22 return base::StringPrintf("%d,%d,%d,%d", top(), left(), bottom(), right());
|
insets_f.cc | 15 InsetsF::InsetsF(float top, float left, float bottom, float right) 16 : InsetsBase<InsetsF, float>(top, left, bottom, right) {} 22 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
|
/external/guava/guava/src/com/google/common/io/ |
LimitInputStream.java | 35 private long left; field in class:LimitInputStream 48 left = limit; 52 return (int) Math.min(in.available(), left); 57 mark = left; 62 if (left == 0) { 68 --left; 74 if (left == 0) { 78 len = (int) Math.min(len, left); 81 left -= result; 95 left = mark [all...] |
/frameworks/base/libs/hwui/ |
Rect.h | 32 (r).left, (r).top, (r).right, (r).bottom 34 (r).left(), (r).top(), (r).right(), (r).bottom() 42 float left; member in class:android::uirenderer::Rect 54 left(0), 60 inline Rect(float left, float top, float right, float bottom): 61 left(left), 68 left(0.0f), 75 left(rect.fLeft), 90 left = top = right = bottom = 0.0f [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
AdaptableSlideViewInterface.java | 27 void setTextRegion(int left, int top, int width, int height); 31 void setImageRegion(int left, int top, int width, int height); 35 void setVideoRegion(int left, int top, int width, int height);
|