/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnPOS.java | 28 /** The part of speech at right side */ 29 public int right = 0; field in class:WnnPOS 40 * @param right The part of speech at right side 42 public WnnPOS(int left, int right) { 44 this.right = right;
|
/sdk/rule_api/src/com/android/ide/common/api/ |
Margins.java | 20 * Set of margins - distances to outer left, top, right and bottom edges. These objects 28 /** The right margin */ 29 public final int right; field in class:Margins 41 * @param right the right side margin 45 public Margins(int left, int right, int top, int bottom) { 48 this.right = right; 55 return "Margins [left=" + left + ", right=" + right + ", top=" + top + ", bottom=" + botto [all...] |
/dalvik/dx/src/junit/runner/ |
Sorter.java | 14 public void swap(Vector values, int left, int right); 17 public static void sortStrings(Vector values , int left, int right, Swapper swapper) { 19 int oright= right; 20 String mid= (String)values.elementAt((left + right) / 2); 24 while (mid.compareTo((String)(values.elementAt(right))) < 0) 25 right--; 26 if (left <= right) { 27 swapper.swap(values, left, right); 29 right--; 31 } while (left <= right); [all...] |
/external/junit/src/junit/runner/ |
Sorter.java | 12 public void swap(Vector values, int left, int right); 15 public static void sortStrings(Vector values , int left, int right, Swapper swapper) { 17 int oright= right; 18 String mid= (String)values.elementAt((left + right) / 2); 22 while (mid.compareTo((String)(values.elementAt(right))) < 0) 23 right--; 24 if (left <= right) { 25 swapper.swap(values, left, right); 27 right--; 29 } while (left <= right); [all...] |
/frameworks/base/test-runner/src/junit/runner/ |
Sorter.java | 15 public void swap(Vector values, int left, int right); 18 public static void sortStrings(Vector values , int left, int right, Swapper swapper) { 20 int oright= right; 21 String mid= (String)values.elementAt((left + right) / 2); 25 while (mid.compareTo((String)(values.elementAt(right))) < 0) 26 right--; 27 if (left <= right) { 28 swapper.swap(values, left, right); 30 right--; 32 } while (left <= right); [all...] |
/bionic/libstdc++/src/ |
typeinfo.cpp | 16 type_info::operator==(type_info const & right) const { 21 type_info::operator!=(type_info const & right) const { 26 type_info::before(type_info const & right) const { 30 type_info::type_info(type_info const & right) {
|
/external/guava/src/com/google/common/collect/ |
ComparisonChain.java | 66 Comparable left, Comparable right) { 67 return classify(left.compareTo(right)); 70 @Nullable T left, @Nullable T right, Comparator<T> comparator) { 71 return classify(comparator.compare(left, right)); 73 @Override public ComparisonChain compare(int left, int right) { 74 return classify(Ints.compare(left, right)); 76 @Override public ComparisonChain compare(long left, long right) { 77 return classify(Longs.compare(left, right)); 79 @Override public ComparisonChain compare(float left, float right) { 80 return classify(Float.compare(left, right)); [all...] |
/external/skia/src/core/ |
SkScalar.cpp | 28 int right = 0; local 29 while (right < length && searchKey > keys[right]) 30 right++; 33 if (length == right) 35 if (0 == right) 37 // Otherwise, interpolate between right - 1 and right. 38 SkScalar rightKey = keys[right]; 39 SkScalar leftKey = keys[right-1] [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Rect.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). 36 public int right; field in class:Rect 49 * checking is performed, so the caller must ensure that left <= right and 54 * @param right The X coordinate of the right side of the rectagle 57 public Rect(int left, int top, int right, int bottom) { 60 this.right = right; 74 right = r.right [all...] |
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). 36 public float right; field in class:RectF 46 * checking is performed, so the caller must ensure that left <= right and 51 * @param right The X coordinate of the right side of the rectagle 54 public RectF(float left, float top, float right, float bottom) { 57 this.right = right; 71 right = r.right [all...] |
/dalvik/vm/compiler/template/armv5te-vfp/ |
TEMPLATE_CMPG_DOUBLE_VFP.S | 4 %verify "right arg NaN"
|
TEMPLATE_CMPG_FLOAT_VFP.S | 4 %verify "right arg NaN"
|
TEMPLATE_CMPL_DOUBLE_VFP.S | 4 %verify "right arg NaN"
|
TEMPLATE_CMPL_FLOAT_VFP.S | 4 %verify "right arg NaN"
|
/dalvik/vm/mterp/arm-vfp/ |
OP_CMPG_DOUBLE.S | 4 %verify "right arg NaN"
|
OP_CMPG_FLOAT.S | 4 %verify "right arg NaN"
|
OP_CMPL_DOUBLE.S | 4 %verify "right arg NaN"
|
OP_CMPL_FLOAT.S | 4 %verify "right arg NaN"
|
/dalvik/vm/mterp/armv5te/ |
OP_CMPL_DOUBLE.S | 5 %verify "right arg NaN"
|
OP_CMPL_FLOAT.S | 5 %verify "right arg NaN"
|
/frameworks/base/media/libeffects/lvm/lib/Common/src/ |
From2iToMS_16x16.c | 33 LVM_INT32 temp1,left,right; local 40 right = (LVM_INT32)*src; 44 temp1 = (left+right)>>1; 49 temp1 = (left-right)>>1;
|
/frameworks/compile/linkloader/tests/images/ |
simple-test.c | 27 unsigned int right = 99; local 32 printf("Please input a number [%d-%d]:\n", left, right); 38 if (user < left || user > right) { 47 right = user;
|
/frameworks/base/libs/hwui/ |
Rect.h | 38 tmp.right = min(right, r); 46 float right; member in class:android::uirenderer::Rect 58 right(0), 62 inline Rect(float left, float top, float right, float bottom): 65 right(right), 72 right(width), 85 left = top = right = bottom = 0.0f; 91 return !((left < right) && (top < bottom)) [all...] |
/external/webkit/Source/WebCore/html/parser/ |
HTMLEntitySearch.cpp | 35 const HTMLEntityTableEntry* halfway(const HTMLEntityTableEntry* left, const HTMLEntityTableEntry* right) 37 return &left[(right - left) / 2]; 64 const HTMLEntityTableEntry* right = m_last; local 65 if (left == right) 71 return right; 72 while (left + 1 < right) { 73 const HTMLEntityTableEntry* probe = halfway(left, right); 79 right = probe; 82 ASSERT(left + 1 == right); 83 return right; 89 const HTMLEntityTableEntry* right = m_last; local [all...] |
/external/javassist/src/main/javassist/compiler/ast/ |
DoubleConst.java | 44 public ASTree compute(int op, ASTree right) { 45 if (right instanceof IntConst) 46 return compute0(op, (IntConst)right); 47 else if (right instanceof DoubleConst) 48 return compute0(op, (DoubleConst)right); 53 private DoubleConst compute0(int op, DoubleConst right) { 56 || right.type == TokenId.DoubleConstant) 61 return compute(op, this.value, right.value, newType); 64 private DoubleConst compute0(int op, IntConst right) { 65 return compute(op, this.value, (double)right.value, this.type) [all...] |