Searched defs:testObj (Results 1 - 4 of 4) sorted by relevance

/external/v8/test/webkit/
H A Darray-proto-func-length-getter-except.js28 var testObj = {
36 Object.defineProperty(testObj, "length", lengthGetter);
40 f.call(testObj, undefined);
H A Darray-proto-func-property-getter-except.js30 var testObj = {
36 Object.defineProperty(testObj, 0, propertyGetter);
37 Object.defineProperty(testObj, 1, propertyGetter);
38 Object.defineProperty(testObj, 2, propertyGetter);
41 f.call(testObj, function(){});
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DForceEarlyReturnDebuggee.java40 static TestObject testObj = new TestObject(); field in class:ForceEarlyReturnDebuggee
/external/skia/tests/
H A DSerializationTest.cpp29 static void TestAlignment(T* testObj, skiatest::Reporter* reporter) { argument
32 size_t bytesWrittenToMemory = testObj->writeToMemory(dataWritten);
34 size_t bytesReadFromMemory = testObj->readFromMemory(dataWritten, bytesWrittenToMemory);
140 static void TestObjectSerializationNoAlign(T* testObj, skiatest::Reporter* reporter) { argument
142 SerializationUtils<T>::Write(writer, testObj);
171 static void TestObjectSerialization(T* testObj, skiatest::Reporter* reporter) { argument
172 TestObjectSerializationNoAlign<T, false>(testObj, reporter);
173 TestAlignment(testObj, reporter);
177 static T* TestFlattenableSerialization(T* testObj, bool shouldSucceed, argument
180 SerializationUtils<T>::Write(writer, testObj);
[all...]

Completed in 147 milliseconds