Home
last modified time | relevance | path

Searched refs:xValue (Results 1 – 9 of 9) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DVector2.java32 public Vector2(float xValue, float yValue) { in Vector2() argument
33 set(xValue, yValue); in Vector2()
77 public final void set(float xValue, float yValue) { in set() argument
78 x = xValue; in set()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8DeviceMotionEventCustom.cpp45 v8::Local<v8::Value> xValue = object->Get(v8AtomicString(isolate, "x")); in readAccelerationArgument() local
46 if (xValue.IsEmpty()) in readAccelerationArgument()
48 bool canProvideX = !isUndefinedOrNull(xValue); in readAccelerationArgument()
49 double x = xValue->NumberValue(); in readAccelerationArgument()
/external/guava/guava-tests/test/com/google/common/primitives/
DUnsignedLongsTest.java172 BigInteger xValue = new BigInteger(x, 16); in testToString() local
173 long xLong = xValue.longValue(); // signed in testToString()
174 assertEquals(xValue.toString(base), UnsignedLongs.toString(xLong, base)); in testToString()
/external/clang/test/PCH/
Dstruct.h8 float xValue, yValue, zValue; member
/external/chromium_org/chrome/test/functional/perf/endure_graphs/js/
Dplotter.js684 var p = {'x': coord.xValue(evtPageXY.x - canvasPageXY.x),
804 var xValue = this.coordinates.xValue(positionX);
809 var min_diff = Math.abs(line[0][0] - xValue);
812 var diff = Math.abs(line[i][0] - xValue);
822 var xValue = this.coordinatesOther.xValue(positionX);
826 var min_diff = Math.abs(lineOther[0][0] - xValue);
829 var diff = Math.abs(lineOther[i][0] - xValue);
Dcoordinates.js122 Coordinates.prototype.xValue = function(position) { method in Coordinates
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSParser-in.cpp6570 RefPtr<CSSValue> xValue; in parseObjectPosition() local
6572 parseFillPosition(m_valueList.get(), xValue, yValue); in parseObjectPosition()
6573 if (!xValue || !yValue) in parseObjectPosition()
6577 …createPrimitiveValuePair(toCSSPrimitiveValue(xValue.get()), toCSSPrimitiveValue(yValue.get()), Pai… in parseObjectPosition()
/external/v8/test/cctest/
Dtest-api.cc3682 v8::Persistent<Value> xValue; variable
3691 CHECK(xValue.IsEmpty()); in SetXValue()
3692 xValue = v8::Persistent<Value>::New(value); in SetXValue()
3704 CHECK(xValue.IsEmpty()); in THREADED_TEST()
3706 CHECK_EQ(v8_num(4), xValue); in THREADED_TEST()
3707 xValue.Dispose(); in THREADED_TEST()
3708 xValue = v8::Persistent<Value>(); in THREADED_TEST()
/external/chromium_org/v8/test/cctest/
Dtest-api.cc5568 v8::Persistent<Value> xValue; variable
5577 CHECK(xValue.IsEmpty()); in SetXValue()
5578 xValue.Reset(info.GetIsolate(), value); in SetXValue()
5590 CHECK(xValue.IsEmpty()); in THREADED_TEST()
5592 CHECK_EQ(v8_num(4), Local<Value>::New(CcTest::isolate(), xValue)); in THREADED_TEST()
5593 xValue.Reset(); in THREADED_TEST()
5606 CHECK(xValue.IsEmpty()); in THREADED_TEST()
5608 CHECK_EQ(v8_num(4), Local<Value>::New(CcTest::isolate(), xValue)); in THREADED_TEST()
5609 xValue.Reset(); in THREADED_TEST()