Searched defs:right (Results 1 - 25 of 742) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/
H A Ddiamond_right.h3 double right(double *);
6 int left, right; member in struct:left_and_right
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DStateCluster.java30 /** A Cluster object points to the left/right (start and end) states of a
35 public NFAState right; field in class:StateCluster
37 public StateCluster(NFAState left, NFAState right) { argument
39 this.right = right;
/external/chromium_org/content/common/
H A Dfind_match_rect_android.cc12 right(0.0f),
16 FindMatchRect::FindMatchRect(float left, float top, float right, float bottom) argument
19 right(right),
H A Dfind_match_rect_android.h13 FindMatchRect(float left, float top, float right, float bottom);
16 float right; member in struct:content::FindMatchRect
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
H A DWebFloatQuad.cpp45 int right = static_cast<int>(ceilf(max(max(max(p[0].x, p[1].x), p[2].x), p[3].x))); local
48 return WebRect(left, top, right - left, bottom - top);
/external/chromium_org/third_party/icu/source/i18n/
H A Dtzrule.cpp23 compareDates(const void * /*context*/, const void *left, const void *right) { argument
25 UDate r = *((UDate*)right);
45 TimeZoneRule::operator=(const TimeZoneRule& right) {
46 if (this != &right) {
47 fName = right.fName;
48 fRawOffset = right.fRawOffset;
49 fDSTSavings = right.fDSTSavings;
114 InitialTimeZoneRule::operator=(const InitialTimeZoneRule& right) {
115 if (this != &right) {
116 TimeZoneRule::operator=(right);
[all...]
/external/chromium_org/v8/test/webkit/
H A Dorder-of-operations.js29 function right() { function
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"');
41 shouldBe('(function(){ leftRight = ""; left() % right(); retur
[all...]
/external/icu4c/i18n/
H A Dtzrule.cpp23 compareDates(const void * /*context*/, const void *left, const void *right) { argument
25 UDate r = *((UDate*)right);
45 TimeZoneRule::operator=(const TimeZoneRule& right) {
46 if (this != &right) {
47 fName = right.fName;
48 fRawOffset = right.fRawOffset;
49 fDSTSavings = right.fDSTSavings;
114 InitialTimeZoneRule::operator=(const InitialTimeZoneRule& right) {
115 if (this != &right) {
116 TimeZoneRule::operator=(right);
[all...]
/external/valgrind/main/helgrind/tests/
H A Dtc14_laog_dinphils.c16 long right = (left + 1) % 5; local
19 pthread_mutex_lock(&chop[right]);
22 pthread_mutex_unlock(&chop[right]);
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DBool.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException argument
47 if (XObject.CLASS_BOOLEAN == right.getType())
48 return right;
50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DGt.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject left, XObject right) argument
47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DGte.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject left, XObject right) argument
47 return left.greaterThanOrEqual(right)
H A DLt.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject left, XObject right) argument
47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DLte.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject left, XObject right) argument
47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DNeg.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException argument
46 return new XNumber(-right.num());
H A DNotEquals.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject left, XObject right) argument
47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DNumber.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException argument
47 if (XObject.CLASS_NUMBER == right.getType())
48 return right;
50 return new XNumber(right.num());
H A DQuo.java41 * @param right non-null reference to the evaluated right operand.
47 public XObject operate(XObject left, XObject right) argument
50 return new XNumber((int) (left.num() / right.num()));
H A DString.java37 * @param right non-null reference to the evaluated right operand.
43 public XObject operate(XObject right) throws javax.xml.transform.TransformerException argument
45 return (XString)right.xstr(); // semi-safe cast.
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableValue.cpp44 PassRefPtr<AnimatableValue> AnimatableValue::interpolate(const AnimatableValue* left, const AnimatableValue* right, double fraction) argument
47 ASSERT(right);
49 ASSERT(!right->isNeutral());
51 if (fraction && fraction != 1 && left->isSameType(right))
52 return left->interpolateTo(right, fraction);
54 return defaultInterpolateTo(left, right, fraction);
57 PassRefPtr<AnimatableValue> AnimatableValue::add(const AnimatableValue* left, const AnimatableValue* right) argument
60 ASSERT(right);
63 return takeConstRef(right);
64 if (right
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DCalculationValue.cpp41 float right = m_rightSide->evaluate(maxValue); local
44 return left + right;
46 return left - right;
48 return left * right;
50 if (!right)
52 return left / right;
/external/chromium_org/third_party/skia/src/core/
H A DSkScalar.cpp22 int right = 0; local
23 while (right < length && searchKey > keys[right])
24 right++;
27 if (length == right)
29 if (0 == right)
31 // Otherwise, interpolate between right - 1 and right.
32 SkScalar rightKey = keys[right];
33 SkScalar leftKey = keys[right
[all...]
/external/chromium_org/ui/gfx/
H A Dinsets_f.cc15 InsetsF::InsetsF(float top, float left, float bottom, float right) argument
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/collect/
H A DBstNodeFactory.java35 * {@code left}, and right child {@code right}. If {@code left} or {@code right} is null, the
38 public abstract N createNode(N source, @Nullable N left, @Nullable N right); argument
/external/skia/src/core/
H A DSkScalar.cpp22 int right = 0; local
23 while (right < length && searchKey > keys[right])
24 right++;
27 if (length == right)
29 if (0 == right)
31 // Otherwise, interpolate between right - 1 and right.
32 SkScalar rightKey = keys[right];
33 SkScalar leftKey = keys[right
[all...]

Completed in 508 milliseconds

1234567891011>>