HomeSort by relevance Sort by last modified time
    Searched refs:TestObject (Results 1 - 25 of 34) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
copy-in-cplus-object.cpp 8 struct TestObject
10 TestObject(const TestObject& inObj, int def = 100, const S &Silly = "silly");
11 TestObject();
12 ~TestObject();
13 TestObject& operator=(const TestObject& inObj);
19 TestObject one;
  /external/compiler-rt/test/BlocksRuntime/
reference.C 22 class TestObject
25 TestObject(CONST TestObject& inObj);
26 TestObject();
27 ~TestObject();
29 TestObject& operator=(CONST TestObject& inObj);
38 TestObject::TestObject(CONST TestObject& inObj
    [all...]
copyconstructor.C 19 class TestObject
22 TestObject(CONST TestObject& inObj);
23 TestObject();
24 ~TestObject();
26 TestObject& operator=(CONST TestObject& inObj);
33 TestObject::TestObject(CONST TestObject& inObj
    [all...]
josh.C 15 struct TestObject {
  /external/chromium_org/tools/gyp/test/mac/framework-headers/
myframework.h 7 @interface TestObject : NSObject
  /external/chromium_org/content/shell/tools/plugin/Tests/
NPDeallocateCalledBeforeNPShutdown.cpp 45 class TestObject : public Object<TestObject> {
47 virtual ~TestObject()
54 // This is the scriptable object. It has a single "testObject" property.
59 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
64 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
67 NPObject* testObject = TestObject::create(pluginTest());
68 OBJECT_TO_NPVARIANT(testObject, *result);
NPRuntimeObjectFromDestroyedPlugin.cpp 43 class TestObject : public Object<TestObject> { };
45 // This is the scriptable object. It has a single "testObject" property and an "evaluate" function.
66 return identifierIs(propertyName, "testObject");
71 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
74 NPObject* testObject = TestObject::create(pluginTest());
75 OBJECT_TO_NPVARIANT(testObject, *result);
NPRuntimeRemoveProperty.cpp 44 struct TestObject : Object<TestObject> {
46 TestObject()
141 if (identifierIs(propertyName, "testObject"))
149 assert(identifierIs(propertyName, "testObject"));
152 m_testObject = TestObject::create(pluginTest());
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestObject.h 14 #include "bindings/tests/idls/core/TestObject.h"
23 static bool voidMethodImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl);
24 static bool shortMethodImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, int* result);
25 static bool shortMethodWithShortArgumentImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, int value, int* result);
26 static bool stringMethodWithStringArgumentImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, String value, String* result);
27 static bool nodeMethodWithNodeArgumentImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, PassRefPtrWillBeRawPtr<Node> value, RefPtrWillBeRawPtr<Node>* result);
28 static bool nodeMethodWithVariousArgumentsImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, PassRefPtrWillBeRawPtr<Document> document, PassRefPtrWillBeRawPtr<Node> node, int value1, double value2, String string, RefPtrWillBeRawPtr<Node>* result);
29 static bool methodForPrivateScriptOnlyMethod(LocalFrame* frame, TestObject* holderImpl, int value1, int value2, int* result);
30 static bool readonlyShortAttributeAttributeGetter(LocalFrame* frame, TestObject* holderImpl, int* result);
31 static bool shortAttributeAttributeGetter(LocalFrame* frame, TestObject* holderImpl, int* result)
    [all...]
V8TestObject.cpp 74 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestObject.h.
77 const WrapperTypeInfo& TestObject::s_wrapperTypeInfo = V8TestObject::wrapperTypeInfo;
102 TestObject* impl = V8TestObject::toImpl(holder);
116 TestObject* impl = V8TestObject::toImpl(holder);
131 TestObject* impl = V8TestObject::toImpl(holder);
145 TestObject* impl = V8TestObject::toImpl(holder);
166 TestObject* impl = V8TestObject::toImpl(holder);
180 TestObject* impl = V8TestObject::toImpl(holder);
194 TestObject* impl = V8TestObject::toImpl(holder);
209 TestObject* impl = V8TestObject::toImpl(holder)
    [all...]
  /external/chromium_org/base/
id_map_unittest.cc 11 class TestObject {
24 IDMap<TestObject> map;
28 TestObject obj1;
29 TestObject obj2;
60 IDMap<TestObject> map;
62 TestObject obj1;
63 TestObject obj2;
64 TestObject obj3;
71 IDMap<TestObject>::const_iterator iter(&map);
93 IDMap<TestObject> map
    [all...]
  /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeFieldsTest.java 29 private class TestObject extends Controller {
59 TestObject mTestObject;
64 mTestObject = new TestObject();
65 setUpWebView(mTestObject, "testObject");
70 executeJavaScript("testObject.setStringValue(" + script + ");");
78 executeJavaScriptAndGetStringResult("typeof testObject.booleanField"));
80 executeJavaScriptAndGetStringResult("typeof testObject.byteField"));
82 executeJavaScriptAndGetStringResult("typeof testObject.charField"));
84 executeJavaScriptAndGetStringResult("typeof testObject.shortField"));
86 executeJavaScriptAndGetStringResult("typeof testObject.intField"))
    [all...]
JavaBridgeReturnValuesTest.java 39 private class TestObject extends Controller {
117 TestObject mTestObject;
122 mTestObject = new TestObject();
123 setUpWebView(mTestObject, "testObject");
128 executeJavaScript("testObject.setStringValue(" + script + ");");
134 executeJavaScript("testObject.setBooleanValue(" + script + ");");
140 executeJavaScriptAndGetStringResult("typeof testObject.getBooleanValue()"));
142 executeJavaScriptAndGetStringResult("typeof testObject.getByteValue()"));
145 executeJavaScriptAndGetStringResult("typeof testObject.getCharValue()"));
147 executeJavaScriptAndGetStringResult("typeof testObject.getShortValue()"))
    [all...]
JavaBridgeArrayTest.java 36 private class TestObject extends Controller {
100 private TestObject mTestObject;
105 mTestObject = new TestObject();
106 setUpWebView(mTestObject, "testObject");
110 executeJavaScript("testObject.setIntArray([42, 43, 44]);");
119 executeJavaScript("testObject.setIntArray(null);");
124 executeJavaScript("testObject.setIntArray(undefined);");
129 executeJavaScript("testObject.setIntArray([]);");
137 executeJavaScript("testObject.setStringValue([42, 42, 42]);");
145 executeJavaScript("testObject.setIntValue([42, 42, 42]);")
    [all...]
  /external/guava/guava-tests/test/com/google/common/testing/
EquivalenceTesterTest.java 59 Object group1Item1 = new TestObject(1, 1);
60 Object group1Item2 = new TestObject(1, 2);
61 Object group2Item1 = new TestObject(2, 1);
62 Object group2Item2 = new TestObject(2, 2);
90 Object group1Item1 = new TestObject(1, 1);
91 Object group1Item2 = new TestObject(1, 2);
104 assertEquals("TestObject{group=1, item=2} [group 1, item 2] must be equivalent to "
105 + "TestObject{group=1, item=1} [group 1, item 1]", expected.getMessage());
112 Object group1Item1 = new TestObject(1, 1);
113 Object group1Item2 = new TestObject(1, 2)
    [all...]
  /external/chromium_org/content/shell/tools/plugin/
TestObject.cpp 66 NPObject* testObject;
67 } TestObject;
84 "foo", "bar", "objectPointer", "testObject", "refCount", };
101 TestObject* newInstance =
102 static_cast<TestObject*>(malloc(sizeof(TestObject)));
103 newInstance->testObject = 0;
115 TestObject* testObject = reinterpret_cast<TestObject*>(obj)
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
JavaBridgeFieldsTest.java 16 private class TestObject extends Controller {
46 TestObject mTestObject;
51 mTestObject = new TestObject();
52 setUpContentView(mTestObject, "testObject");
57 executeJavaScript("testObject.setStringValue(" + script + ");");
67 executeJavaScriptAndGetStringResult("typeof testObject.booleanField"));
69 executeJavaScriptAndGetStringResult("typeof testObject.byteField"));
71 executeJavaScriptAndGetStringResult("typeof testObject.charField"));
73 executeJavaScriptAndGetStringResult("typeof testObject.shortField"));
75 executeJavaScriptAndGetStringResult("typeof testObject.intField"))
    [all...]
JavaBridgeReturnValuesTest.java 25 private class TestObject extends Controller {
103 TestObject mTestObject;
108 mTestObject = new TestObject();
109 setUpContentView(mTestObject, "testObject");
114 executeJavaScript("testObject.setStringValue(" + script + ");");
120 executeJavaScript("testObject.setBooleanValue(" + script + ");");
128 executeJavaScriptAndGetStringResult("typeof testObject.getBooleanValue()"));
130 executeJavaScriptAndGetStringResult("typeof testObject.getByteValue()"));
133 executeJavaScriptAndGetStringResult("typeof testObject.getCharValue()"));
135 executeJavaScriptAndGetStringResult("typeof testObject.getShortValue()"))
    [all...]
JavaBridgeArrayTest.java 22 private class TestObject extends Controller {
86 private TestObject mTestObject;
91 mTestObject = new TestObject();
92 setUpContentView(mTestObject, "testObject");
98 executeJavaScript("testObject.setIntArray([42, 43, 44]);");
109 executeJavaScript("testObject.setIntArray(null);");
116 executeJavaScript("testObject.setIntArray(undefined);");
123 executeJavaScript("testObject.setIntArray([]);");
133 executeJavaScript("testObject.setStringValue([42, 42, 42]);");
143 executeJavaScript("testObject.setIntValue([42, 42, 42]);")
    [all...]
  /external/chromium_org/components/json_schema/
json_schema_validator_unittest_base.h 46 void TestObject();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
ReferenceTest.java 184 class TestObject {
202 TestObject testObj = new TestObject();
286 class TestObject {
289 public TestObject(String referent) {
314 TestObject testObj = new TestObject(new String("sup /b/"));
SoftReferenceTest.java 83 class TestObject {
85 public TestObject() {
98 Object testObj = new TestObject();
  /external/chromium_org/v8/test/webkit/
codegen-temporaries.js 36 function TestObject() {
44 var testObject = new TestObject;
45 var a = testObject;
47 return testObject.test;
54 var testObject = new TestObject;
55 var a = testObject;
57 return testObject.test;
64 var testObject = new TestObject
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ForceEarlyReturnDebuggee.java 40 static TestObject testObj = new TestObject();
195 if (result instanceof TestObject) {
278 class TestObject {
  /external/chromium_org/extensions/renderer/
json_schema_unittest.cc 50 TEST_F(JsonSchemaTest, TestObject) {
51 TestFunction("testObject");

Completed in 720 milliseconds

1 2