HomeSort by relevance Sort by last modified time
    Searched refs:TestObject (Results 1 - 25 of 37) 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/BlocksRuntime/tests/
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/third_party/WebKit/Source/bindings/tests/idls/
TestCallback.idl 33 boolean callbackWithTestObjectParam(TestObject class1Param);
34 boolean callbackWithTestObjectParam(TestObject class2Param, DOMString strArg);
35 [Custom] long customCallback(TestObject testObjParam, TestObject testObjParam);
38 boolean callbackWithSequence(sequence<TestObject> sequenceParam);
TestImplements.idl 42 [CallWith=ScriptExecutionContext, RaisesException] TestObject implementsMethod2(DOMString strArg, TestObject objArg);
TestPartialInterface.idl 42 [CallWith=ScriptExecutionContext, RaisesException] TestObject supplementalMethod2(DOMString strArg, TestObject objArg);
TestObject.idl 35 callback TestCallbackFunction = void (TestEnumType formal1, TestObject formal2);
40 ] interface TestObject : EventTarget {
44 readonly attribute TestObject readOnlyTestObjectAttr;
59 [MeasureAs=TestFeature] attribute TestObject testObjAttr;
62 attribute TestObject XMLObjAttr;
81 void voidMethodWithArgs(long longArg, DOMString strArg, TestObject objArg);
83 long longMethodWithArgs(long longArg, DOMString strArg, TestObject objArg);
84 [MeasureAs=TestFeature] TestObject objMethod();
85 TestObject objMethodWithArgs(long longArg, DOMString strArg, TestObject objArg)
    [all...]
  /external/chromium_org/tools/gyp/test/mac/framework-headers/
myframework.h 7 @interface TestObject : NSObject
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPDeallocateCalledBeforeNPShutdown.cpp 41 class TestObject : public Object<TestObject> {
43 ~TestObject()
50 // This is the scriptable object. It has a single "testObject" property.
55 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
60 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
63 NPObject* testObject = TestObject::create(pluginTest());
64 OBJECT_TO_NPVARIANT(testObject, *result);
NPRuntimeObjectFromDestroyedPlugin.cpp 39 class TestObject : public Object<TestObject> { };
41 // This is the scriptable object. It has a single "testObject" property and an "evaluate" function.
62 return identifierIs(propertyName, "testObject");
67 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
70 NPObject* testObject = TestObject::create(pluginTest());
71 OBJECT_TO_NPVARIANT(testObject, *result);
NPRuntimeRemoveProperty.cpp 40 struct TestObject : Object<TestObject> {
42 TestObject()
137 if (identifierIs(propertyName, "testObject"))
145 assert(identifierIs(propertyName, "testObject"));
148 m_testObject = TestObject::create(pluginTest());
  /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/third_party/WebKit/Source/testing/plugin/
TestObject.cpp 26 #include "TestObject.h"
71 NPObject* testObject;
72 } TestObject;
92 "testObject",
112 TestObject* newInstance = static_cast<TestObject*>(malloc(sizeof(TestObject)));
113 newInstance->testObject = 0;
126 TestObject* testObject = reinterpret_cast<TestObject*>(obj)
    [all...]
  /external/chromium/base/
id_map_unittest.cc 14 class TestObject {
26 IDMap<TestObject> map;
30 TestObject obj1;
31 TestObject obj2;
60 IDMap<TestObject> map;
62 TestObject obj1;
63 TestObject obj2;
64 TestObject obj3;
71 IDMap<TestObject>::const_iterator iter(&map);
88 IDMap<TestObject> map
    [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...]
  /libcore/luni/src/test/java/tests/api/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 85 class TestObject {
87 public TestObject() {
100 Object testObj = new TestObject();
  /external/chromium/chrome/common/
json_schema_validator_unittest_base.h 47 void TestObject();
  /external/chromium_org/chrome/common/json_schema/
json_schema_validator_unittest_base.h 51 void TestObject();

Completed in 1505 milliseconds

1 2