/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Gte.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject left, XObject right) 47 return left.greaterThanOrEqual(right)
|
Lt.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject left, XObject right) 47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
Lte.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject left, XObject right) 47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
NotEquals.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject left, XObject right) 47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
Quo.java | 41 * @param right non-null reference to the evaluated right operand. 47 public XObject operate(XObject left, XObject right) 50 return new XNumber((int) (left.num() / right.num()));
|
/external/chromium_org/chrome/browser/chromeos/ui/ |
accessibility_focus_ring.cc | 58 if (top.right() >= middle.right() - 2 * margin) { 59 top.set_width(middle.right() - top.x()); 66 if (bottom.right() >= middle.right() - 2 * margin) { 67 bottom.set_width(middle.right() - bottom.x()); 75 ring.points[4] = gfx::Point(top.right() - margin, top.y()); 76 ring.points[5] = gfx::Point(top.right(), top.y()); 77 ring.points[6] = gfx::Point(top.right(), top.y() + margin); 78 ring.points[7] = gfx::Point(top.right(), top.bottom() - margin) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
Rect.idl | 25 readonly attribute CSSPrimitiveValue right;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ClientRect.idl | 31 readonly attribute float right;
|
/external/chromium_org/third_party/skia/tests/ |
CanvasStateHelpers.cpp | 17 float right, float bottom, int32_t spacer) { 22 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom); 29 float left, float top, float right, float bottom, int32_t spacer) { 34 complex_layers_draw(canvas, left, top, right, bottom, spacer); 40 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion) { 43 SkIntToScalar(right), SkIntToScalar(bottom)); 53 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp, 67 complex_clips_draw(canvas, left, top, right, bottom, clipOp, localRegion);
|
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/ |
nheap.css | 15 float: right;
|
/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());
|
/external/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));
|
/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);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/ |
ver4_patricia_trie_writing_helper.h | 111 bool operator()(const DictProbability &left, const DictProbability &right) { 112 if (left.getProbability() != right.getProbability()) { 113 return left.getProbability() > right.getProbability(); 115 if (left.getTimestamp() != right.getTimestamp()) { 116 return left.getTimestamp() < right.getTimestamp(); 118 return left.getDictPos() > right.getDictPos();
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/ |
ver4_patricia_trie_writing_helper.h | 98 bool operator()(const DictProbability &left, const DictProbability &right) { 99 if (left.getProbability() != right.getProbability()) { 100 return left.getProbability() > right.getProbability(); 102 if (left.getTimestamp() != right.getTimestamp()) { 103 return left.getTimestamp() < right.getTimestamp(); 105 return left.getDictPos() > right.getDictPos();
|
/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/chromium_org/chrome/browser/resources/chromeos/login/ |
screen_gaia_signin.css | 12 #gaia-signin:not(.saml).no-right-panel { 20 #signin-right { 27 #signin-right, 35 #signin-right { 40 .no-right-panel #signin-right, 41 .saml #signin-right { 82 .no-right-panel #gaia-signin-divider, 94 /* Simpler alignment if no right panel. */ 95 .no-right-panel #signin-frame [all...] |
/external/chromium_org/third_party/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/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/chromium_org/sync/internal_api/ |
syncapi_internal.cc | 80 const sync_pb::EntitySpecifics& right) { 93 if (right.has_encrypted()) { 94 if (!cryptographer->CanDecrypt(right.encrypted())) { 98 right_plaintext = cryptographer->DecryptToString(right.encrypted()); 100 right_plaintext = right.SerializeAsString(); 109 const sync_pb::AttachmentMetadata& right) { 110 if (left.SerializeAsString() == right.SerializeAsString()) {
|
/frameworks/base/core/java/android/view/ |
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...] |
/frameworks/base/core/java/com/android/internal/widget/ |
BackgroundFallback.java | 52 int right = 0; local 75 right = Math.max(right, child.getRight()); 79 if (left >= right || top >= bottom) { 92 if (right < width) { 93 mBackgroundFallback.setBounds(right, top, width, height); 97 mBackgroundFallback.setBounds(left, bottom, right, height);
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
Types.h | 393 bool sameElementType(const TType &right) const 395 return type == right.type && 396 primarySize == right.primarySize && 397 secondarySize == right.secondarySize && 398 structure == right.structure; 400 bool operator==(const TType &right) const 402 return type == right.type && 403 primarySize == right.primarySize && 404 secondarySize == right.secondarySize && 405 array == right.array && (!array || arraySize == right.arraySize) & [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...] |