/external/guava/guava/src/com/google/common/collect/ |
UsingToStringOrdering.java | 29 @Override public int compare(Object left, Object right) { 30 return left.toString().compareTo(right.toString());
|
/frameworks/base/core/java/android/view/ |
IMagnificationCallbacks.aidl | 26 void onRectangleOnScreenRequested(int left, int top, int right, int bottom);
|
Gravity.java | 34 /** Raw bit controlling how the right/bottom edge is placed. */ 36 /** Raw bit controlling whether the right/bottom edge is clipped to its 51 /** Push object to the right of its container, not changing its size. */ 52 public static final int RIGHT = (AXIS_PULL_AFTER|AXIS_SPECIFIED)<<AXIS_X_SHIFT; 66 public static final int FILL_HORIZONTAL = LEFT|RIGHT; 85 * absolute LEFT/RIGHT). 118 public static final int END = RELATIVE_LAYOUT_DIRECTION | RIGHT; 176 * pushes it to the right; if gravity is RIGHT it pushes it to 178 * right or left; otherwise it is ignored [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/ |
flags_fmtflags.pass.cpp | 33 test::fmtflags f = t.flags(test::hex | test::right); 35 assert(t.flags() == (test::hex | test::right));
|
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_resources.cc | 17 // Windows and Ash have shadows in the left, right and top parts of the tab. 37 SkScalar right = SkIntToScalar(width) - kTabInset; local 52 path->lineTo(right - kTabCapWidth, 0); 55 // Connect to the right cap. 56 path->lineTo(right - kTabCapWidth, top); 58 // Right end cap. 59 path->lineTo(right - kTabCapWidth + kTabTopCurveWidth, 61 path->lineTo(right - kTabBottomCurveWidth, bottom - kTabBottomCurveWidth); 62 path->lineTo(right, bottom);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_treecoder.c | 48 unsigned int left, right; local 57 right = num_events[-tree[i + 1] - tok0_offset]; 59 right = convert_distribution(tree[i + 1], tree, probs, branch_ct, 62 probs[i>>1] = get_binary_prob(left, right); 64 branch_ct[i>>1][1] = right; 65 return left + right;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
Rect.h | 33 CSSPrimitiveValue* right() const { return m_right.get(); } function in class:WebCore::RectBase 38 void setRight(PassRefPtr<CSSPrimitiveValue> right) { m_right = right; } 85 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText()); 91 right()->customSerializeResolvingVariables(variables), 99 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) 101 return "rect(" + top + ' ' + right + ' ' + bottom + ' ' + left + ')'; 113 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText()); 119 right()->customSerializeResolvingVariables(variables), 127 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left [all...] |
/external/chromium_org/chrome/browser/resources/ |
about_version.css | 14 margin-right: auto; 38 float: right; 40 text-align: right; 46 text-align: right; 51 text-align: right;
|
/external/skia/tools/lua/ |
skia.lua | 20 Sk.Rect = { left = 0, top = 0, right = 0, bottom = 0 } 27 rect = { left = l, top = t, right = r, bottom = b } 30 rect = { right = l, bottom = t } 40 return self.right - self.left 54 value = value * self.right 62 self.right = 0 69 self.right = r 78 self.right = self.right + dx 87 self.right = self.right - d [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
NFAFactory.java | 86 while ( s!=alt.right ) { 120 NFAState right = newState(); local 122 right.associatedASTNode = associatedAST; 123 transitionBetweenStates(left, right, label); 124 StateCluster g = new StateCluster(left, right); 138 NFAState right = newState(); local 140 right.associatedASTNode = associatedAST; 142 Transition e = new Transition(label,right); 144 StateCluster g = new StateCluster(left, right); 165 NFAState right = newState() local 237 NFAState right = newState(); local 248 NFAState right = newState(); local 266 NFAState right = newState(); local 280 NFAState right = newState(); local 673 NFAState right = newState(); local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
dtrule.cpp | 69 DateTimeRule::operator=(const DateTimeRule& right) { 70 if (this != &right) { 71 fMonth = right.fMonth; 72 fDayOfMonth = right.fDayOfMonth; 73 fDayOfWeek = right.fDayOfWeek; 74 fWeekInMonth = right.fWeekInMonth; 75 fMillisInDay = right.fMillisInDay; 76 fDateRuleType = right.fDateRuleType; 77 fTimeRuleType = right.fTimeRuleType;
|
/external/chromium_org/v8/test/webkit/ |
order-of-operations.js | 29 function right() { function 30 leftRight = leftRight + "Right"; 33 shouldBe('(function(){ leftRight = ""; left() > right(); return leftRight; })()', '"LeftRight"'); 34 shouldBe('(function(){ leftRight = ""; left() >= right(); return leftRight; })()', '"LeftRight"'); 35 shouldBe('(function(){ leftRight = ""; left() < right(); return leftRight; })()', '"LeftRight"'); 36 shouldBe('(function(){ leftRight = ""; left() <= right(); return leftRight; })()', '"LeftRight"'); 37 shouldBe('(function(){ leftRight = ""; left() + right(); return leftRight; })()', '"LeftRight"'); 38 shouldBe('(function(){ leftRight = ""; left() - right(); return leftRight; })()', '"LeftRight"'); 39 shouldBe('(function(){ leftRight = ""; left() / right(); return leftRight; })()', '"LeftRight"'); 40 shouldBe('(function(){ leftRight = ""; left() * right(); return leftRight; })()', '"LeftRight"') [all...] |
/external/icu4c/i18n/ |
dtrule.cpp | 69 DateTimeRule::operator=(const DateTimeRule& right) { 70 if (this != &right) { 71 fMonth = right.fMonth; 72 fDayOfMonth = right.fDayOfMonth; 73 fDayOfWeek = right.fDayOfWeek; 74 fWeekInMonth = right.fWeekInMonth; 75 fMillisInDay = right.fMillisInDay; 76 fDateRuleType = right.fDateRuleType; 77 fTimeRuleType = right.fTimeRuleType;
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Cube.java | 22 public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float front) { 25 GLVertex rightBottomBack = addVertex(right, bottom, back); 27 GLVertex rightTopBack = addVertex(right, top, back); 29 GLVertex rightBottomFront = addVertex(right, bottom, front); 31 GLVertex rightTopFront = addVertex(right, top, front); 40 // right
|
/external/chromium_org/sync/internal_api/ |
syncapi_internal.cc | 57 const sync_pb::EntitySpecifics& right) { 70 if (right.has_encrypted()) { 71 if (!cryptographer->CanDecrypt(right.encrypted())) { 75 right_plaintext = cryptographer->DecryptToString(right.encrypted()); 77 right_plaintext = right.SerializeAsString();
|
/external/chromium_org/third_party/icu/source/common/ |
uarrsort.c | 31 uprv_uint16Comparator(const void *context, const void *left, const void *right) { 32 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right; 36 uprv_int32Comparator(const void *context, const void *left, const void *right) { 37 return *(const int32_t *)left - *(const int32_t *)right; 41 uprv_uint32Comparator(const void *context, const void *left, const void *right) { 42 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right; 123 int32_t left, right; local 125 /* start and left are inclusive, limit and right are exclusive */ 133 right=limit; 144 while(/* x<array[right-1] * [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkTSort.h | 121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { 122 for (T* next = left + 1; next <= right; ++next) { 136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { 138 SkTSwap(*pivot, *right); 140 while (left < right) { 147 SkTSwap(*newPivot, *right); 154 * This implementation recurses on the left region after pivoting and loops on the right, 160 * @param right the end of the region to be sorted (inclusive). 163 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { 165 if (right - left < 32) [all...] |
/external/chromium_org/ui/gfx/ |
insets_base.h | 20 Type right() const { return right_; } function in class:gfx::InsetsBase 23 // left and right insets. 33 void Set(Type top, Type left, Type bottom, Type right) { 37 right_ = right; 61 InsetsBase(Type top, Type left, Type bottom, Type right) 65 right_(right) {}
|
/external/icu4c/common/ |
uarrsort.c | 31 uprv_uint16Comparator(const void *context, const void *left, const void *right) { 32 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right; 36 uprv_int32Comparator(const void *context, const void *left, const void *right) { 37 return *(const int32_t *)left - *(const int32_t *)right; 41 uprv_uint32Comparator(const void *context, const void *left, const void *right) { 42 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right; 123 int32_t left, right; local 125 /* start and left are inclusive, limit and right are exclusive */ 133 right=limit; 144 while(/* x<array[right-1] * [all...] |
/external/lzma/CPP/7zip/Common/ |
FilePathAutoRename.cpp | 45 unsigned left = 1, right = (1 << 30);
local 46 while (left != right)
48 unsigned mid = (left + right) / 2;
52 right = mid;
54 return !MakeAutoName(name, extension, right, fullProcessedPath);
|
/external/skia/src/core/ |
SkTSort.h | 121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { 122 for (T* next = left + 1; next <= right; ++next) { 136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { 138 SkTSwap(*pivot, *right); 140 while (left < right) { 147 SkTSwap(*newPivot, *right); 154 * This implementation recurses on the left region after pivoting and loops on the right, 160 * @param right the end of the region to be sorted (inclusive). 163 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { 165 if (right - left < 32) [all...] |
/hardware/qcom/display/msm8960/libtilerenderer/ |
tilerenderer.cpp | 37 int right, int bottom) { 46 if (!left && !right && !top && !bottom) { 49 right = width; 53 if (!left && !right && !top && !bottom) { 59 int l = left, t = (height - bottom), w = (right - left), h = (bottom - top), preserve = 0;
|
/hardware/qcom/display/msm8x26/libtilerenderer/ |
tilerenderer.cpp | 37 int right, int bottom) { 46 if (!left && !right && !top && !bottom) { 49 right = width; 53 if (!left && !right && !top && !bottom) { 59 int l = left, t = (height - bottom), w = (right - left), h = (bottom - top), preserve = 0;
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
RegionIteratorTest.java | 44 assertEquals(10, rect.right); 50 assertEquals(1, rect.right); 61 assertEquals(10, rect.right); 66 assertEquals(15, rect.right); 71 assertEquals(15, rect.right); 77 assertEquals(1, rect.right); 88 assertEquals(10, rect.right); 93 assertEquals(5, rect.right); 99 assertEquals(1, rect.right); 110 assertEquals(10, rect.right); [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
LinearColorBar.java | 194 int right = left + (int)(width*mRedRatio); local 195 int right2 = right + (int)(width*mYellowRatio); 203 indicatorLeft = right; 242 if (left < right) { 244 mRect.right = right; 247 width -= (right-left); 248 left = right; 251 mLastLeftDiv = right; 254 right = right2 [all...] |