Searched refs:xValue (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
78 x = xValue;
/external/guava/guava-tests/test/com/google/common/primitives/
H A DUnsignedLongsTest.java172 BigInteger xValue = new BigInteger(x, 16);
173 long xLong = xValue.longValue(); // signed
174 assertEquals(xValue.toString(base), UnsignedLongs.toString(xLong, base));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DeviceMotionEventCustom.cpp68 v8::Local<v8::Value> xValue = object->Get(v8::String::New("x")); local
69 if (xValue.IsEmpty())
71 bool canProvideX = !isUndefinedOrNull(xValue);
72 double x = xValue->NumberValue();
/external/webkit/Source/WebCore/bindings/js/
H A DJSDeviceMotionEventCustom.cpp46 JSValue xValue = object->get(exec, Identifier(exec, "x")); local
49 bool canProvideX = !xValue.isUndefinedOrNull();
50 double x = xValue.toNumber(exec);
/external/webkit/Source/WebCore/svg/
H A DSVGRectElement.cpp189 float xValue = x().value(this); local
192 FloatRect rect(xValue, yValue, widthValue, heightValue);
/external/v8/test/cctest/
H A Dtest-api.cc3682 v8::Persistent<Value> xValue; variable
3691 CHECK(xValue.IsEmpty());
3692 xValue = v8::Persistent<Value>::New(value);
3704 CHECK(xValue.IsEmpty());
3706 CHECK_EQ(v8_num(4), xValue);
3707 xValue.Dispose();
3708 xValue = v8::Persistent<Value>();

Completed in 214 milliseconds