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/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DeviceMotionEventCustom.cpp46 v8::Local<v8::Value> xValue = object->Get(v8::String::NewSymbol("x")); local
47 if (xValue.IsEmpty())
49 bool canProvideX = !isUndefinedOrNull(xValue);
50 double x = xValue->NumberValue();
/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/chromium_org/chrome/test/functional/perf/endure_graphs/js/
H A Dcoordinates.js122 Coordinates.prototype.xValue = function(position) {
/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>();
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc5161 v8::Persistent<Value> xValue; variable
5170 CHECK(xValue.IsEmpty());
5171 xValue.Reset(info.GetIsolate(), value);
5183 CHECK(xValue.IsEmpty());
5185 CHECK_EQ(v8_num(4), Local<Value>::New(v8::Isolate::GetCurrent(), xValue)); local
5186 xValue.Dispose(context->GetIsolate());
5187 xValue.Clear();
5200 CHECK(xValue.IsEmpty());
5202 CHECK_EQ(v8_num(4), Local<Value>::New(v8::Isolate::GetCurrent(), xValue)); local
5203 xValue
[all...]

Completed in 355 milliseconds