Searched defs:xValue (Results 1 - 6 of 6) 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/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/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/v8/test/cctest/
H A Dtest-api.cc3254 v8::Persistent<Value> xValue; variable
3263 CHECK(xValue.IsEmpty());
3264 xValue = v8::Persistent<Value>::New(value);
3276 CHECK(xValue.IsEmpty());
3278 CHECK_EQ(v8_num(4), xValue);
3279 xValue.Dispose();
3280 xValue = v8::Persistent<Value>();

Completed in 167 milliseconds