Searched refs:xValue (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/PCH/
H A Dstruct.h8 float xValue, yValue, zValue; member in struct:Point2
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DMessageHeaderTest.java23 final int xValue = 1;
27 p.x = xValue;
47 final int xValue = 1;
52 p.x = xValue;
/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/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8DeviceMotionEventCustom.cpp45 v8::Local<v8::Value> xValue = object->Get(v8AtomicString(isolate, "x")); local
46 if (xValue.IsEmpty())
48 bool canProvideX = !isUndefinedOrNull(xValue);
49 double x = xValue->NumberValue();
/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/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp5593 RefPtrWillBeRawPtr<CSSValue> xValue = nullptr; local
5595 parseFillPosition(m_valueList, xValue, yValue);
5596 if (!xValue || !yValue)
5598 return createPrimitiveValuePair(toCSSPrimitiveValue(xValue.get()), toCSSPrimitiveValue(yValue.get()), Pair::KeepIdenticalValues);
7249 RefPtrWillBeRawPtr<CSSValue> xValue = nullptr; local
7253 xValue = cssValuePool().createIdentifierValue(id);
7259 xValue = createPrimitiveNumericValue(value);
7267 if (!xValue && (id == CSSValueLeft || id == CSSValueRight)) {
7268 xValue = cssValuePool().createIdentifierValue(id);
7280 if (!xValue)
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscgats.c1160 KEYVALUE* AddToList(cmsIT8* it8, KEYVALUE** Head, const char *Key, const char *Subkey, const char* xValue, WRITEMODE WriteAs) argument
1216 if (xValue != NULL) {
1218 p->Value = AllocString(it8, xValue);
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc5918 v8::Persistent<Value> xValue; variable
5927 CHECK(xValue.IsEmpty());
5928 xValue.Reset(info.GetIsolate(), value);
5941 CHECK(xValue.IsEmpty());
5943 CHECK_EQ(v8_num(4), Local<Value>::New(CcTest::isolate(), xValue)); local
5944 xValue.Reset();
5958 CHECK(xValue.IsEmpty());
5960 CHECK_EQ(v8_num(4), Local<Value>::New(CcTest::isolate(), xValue)); local
5961 xValue.Reset();

Completed in 2758 milliseconds