Searched refs:yValue (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/PCH/
H A Dstruct.h8 float xValue, yValue, zValue; member in struct:Point2
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java32 public Vector2(float xValue, float yValue) { argument
33 set(xValue, yValue);
77 public final void set(float xValue, float yValue) { argument
79 y = yValue;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DeviceMotionEventCustom.cpp51 v8::Local<v8::Value> yValue = object->Get(v8AtomicString(isolate, "y")); local
52 if (yValue.IsEmpty())
54 bool canProvideY = !isUndefinedOrNull(yValue);
55 double y = yValue->NumberValue();
/external/chromium_org/chrome/test/functional/perf/endure_graphs/js/
H A Dplotter.js58 * @param {Number} yValue The data value corresponding to the vertical click
64 function HorizontalMarker(canvasElement, yValue, yOtherValue) {
73 this.value = yValue;
685 'y': coord.yValue(evtPageXY.y - canvasPageXY.y)};
843 function valuesAtCursor(lineIndex, pointIndex, unitsY, yValue) {
847 unitsY + '</span> [hovering at ' + addCommas(yValue.toFixed(2)) +
853 lineIndex, indexValueX, this.unitsY_, this.coordinates.yValue(positionY));
859 this.coordinatesOther.yValue(positionY));
867 indexValueX, this.unitsY_, this.coordinates.yValue(positionY));
871 1, indexValueX, this.unitsY_, this.coordinates.yValue(position
[all...]
H A Dcoordinates.js133 Coordinates.prototype.yValue = function(position) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySerializer.cpp593 RefPtr<CSSValue> yValue; local
596 yValue = toCSSValueList(nextValue.get())->itemWithoutBoundsCheck(i);
598 yValue = nextValue;
602 if (value->isImplicitInitialValue() || yValue->isImplicitInitialValue())
607 if (!value->isPrimitiveValue() || !yValue->isPrimitiveValue())
611 CSSValueID yId = toCSSPrimitiveValue(yValue.get())->getValueID();
H A DCSSParser-in.cpp6571 RefPtr<CSSValue> yValue;
6572 parseFillPosition(m_valueList.get(), xValue, yValue);
6573 if (!xValue || !yValue)
6577 createPrimitiveValuePair(toCSSPrimitiveValue(xValue.get()), toCSSPrimitiveValue(yValue.get()), Pair::KeepIdenticalValues),

Completed in 672 milliseconds