Home
last modified time | relevance | path

Searched refs:yValue (Results 1 – 6 of 6) 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
79 y = yValue; in set()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8DeviceMotionEventCustom.cpp74 v8::Local<v8::Value> yValue = object->Get(v8::String::New("y")); in readAccelerationArgument() local
75 if (yValue.IsEmpty()) in readAccelerationArgument()
77 bool canProvideY = !isUndefinedOrNull(yValue); in readAccelerationArgument()
78 double y = yValue->NumberValue(); in readAccelerationArgument()
/external/webkit/Source/WebCore/bindings/js/
DJSDeviceMotionEventCustom.cpp54 JSValue yValue = object->get(exec, Identifier(exec, "y")); in readAccelerationArgument() local
57 bool canProvideY = !yValue.isUndefinedOrNull(); in readAccelerationArgument()
58 double y = yValue.toNumber(exec); in readAccelerationArgument()
/external/clang/test/PCH/
Dstruct.h8 float xValue, yValue, zValue; member
/external/webkit/Source/WebCore/svg/
DSVGRectElement.cpp190 float yValue = y().value(this); in toPathData() local
192 FloatRect rect(xValue, yValue, widthValue, heightValue); in toPathData()
/external/webkit/Source/WebCore/css/
DCSSMutableStyleDeclaration.cpp361 RefPtr<CSSValue> yValue; in getLayeredShorthandValue() local
364yValue = static_cast<CSSValueList*>(nextValue.get())->itemWithoutBoundsCheck(i); in getLayeredShorthandValue()
366 yValue = nextValue; in getLayeredShorthandValue()
369 int yId = static_cast<CSSPrimitiveValue*>(yValue.get())->getIdent(); in getLayeredShorthandValue()