HomeSort by relevance Sort by last modified time
    Searched full:objectfactory (Results 1 - 25 of 386) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/test/java/test/objectfactory/
BadMethodFactoryFactory.java 1 package test.objectfactory;
3 import org.testng.annotations.ObjectFactory;
12 @ObjectFactory
MyFactoryFactory.java 1 package test.objectfactory;
4 import org.testng.annotations.ObjectFactory;
13 @ObjectFactory
ContextAwareFactoryFactory.java 1 package test.objectfactory;
5 import org.testng.annotations.ObjectFactory;
15 @ObjectFactory
CustomFactoryTest.java 1 package test.objectfactory;
17 XmlSuite suite = TestHelper.createSuite("test.objectfactory.Simple", "objectfactory");
33 XmlSuite suite = TestHelper.createSuite("test.objectfactory.Simple", "objectfactory");
43 XmlSuite suite = TestHelper.createSuite("test.objectfactory.Simple", "objectfactory");
45 .add(new XmlClass("test.objectfactory.MyFactoryFactory"));
54 XmlSuite suite = TestHelper.createSuite("test.objectfactory.Simple", "objectfactory");
    [all...]
Simple.java 1 package test.objectfactory;
CombinedTestAndObjectFactorySample.java 1 package test.objectfactory;
5 import org.testng.annotations.ObjectFactory;
14 @ObjectFactory public IObjectFactory create() {
ClassObjectFactory.java 1 package test.objectfactory;
ClassObjectFactorySampleTest.java 1 package test.objectfactory;
LoggingObjectFactory.java 1 package test.objectfactory;
CombinedTestAndObjectFactoryTest.java 1 package test.objectfactory;
ObjectFactory2Test.java 1 package test.objectfactory;
  /external/testng/src/main/java/org/testng/internal/annotations/
ObjectFactoryAnnotation.java 6 * The internal representation of @ObjectFactory
  /external/guice/extensions/struts2/src/
struts-plugin.xml 9 <bean type="com.opensymphony.xwork2.ObjectFactory"
14 <constant name="struts.objectFactory" value="guice" />
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ObjectFactory.java 19 * $Id: ObjectFactory.java 468637 2006-10-28 06:51:02Z minchau $
35 * This class was moved from the <code>javax.xml.parsers.ObjectFactory</code>
39 * @version $Id: ObjectFactory.java 468637 2006-10-28 06:51:02Z minchau $
41 class ObjectFactory {
95 ClassLoader current = ObjectFactory.class.getClassLoader();
154 } // class ObjectFactory
  /external/testng/src/main/java/org/testng/annotations/
ObjectFactory.java 16 public @interface ObjectFactory
  /external/testng/src/main/java/org/testng/internal/
BaseClassFinder.java 44 ITestObjectFactory objectFactory)
49 objectFactory);
TestNGClassFinder.java 47 ITestObjectFactory objectFactory = configuration.getObjectFactory();
54 //very first pass is to find ObjectFactory, can't create anything else until then
55 if(objectFactory == null) {
56 objectFactory = new ObjectFactoryImpl();
79 objectFactory = (ITestObjectFactory) m.invoke(instance, testContext);
81 objectFactory = (ITestObjectFactory) m.invoke(instance);
128 xmlTest, annotationFinder, objectFactory);
ClassHelper.java 287 ITestObjectFactory objectFactory)
289 if (objectFactory instanceof IObjectFactory) {
291 (IObjectFactory) objectFactory);
292 } else if (objectFactory instanceof IObjectFactory2) {
293 return createInstance2(declaringClass, (IObjectFactory2) objectFactory);
295 throw new AssertionError("Unknown object factory type:" + objectFactory);
299 private static Object createInstance2(Class<?> declaringClass, IObjectFactory2 objectFactory) {
300 return objectFactory.newInstance(declaringClass);
307 IObjectFactory objectFactory) {
326 result = objectFactory.newInstance(constructor, parameters)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/UnitTest/
CommentGeneratingUnitTest.py 526 def ObjectFactory(self, CName, FFE, Usage, Notify, HelpStr, IsProtocol):
568 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
580 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
600 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
620 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
640 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
660 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
680 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
700 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
720 Object = self.ObjectFactory(CName, FFE, Usage, Notify,
    [all...]
  /system/libvintf/
utils.cpp 33 static ObjectFactory<RuntimeInfo> runtimeInfoFactory;
34 ObjectFactory<RuntimeInfo>* gRuntimeInfoFactory = &runtimeInfoFactory;
utils.h 124 class ObjectFactory {
126 virtual ~ObjectFactory() = default;
129 extern ObjectFactory<RuntimeInfo>* gRuntimeInfoFactory;
  /packages/apps/Contacts/src/com/android/contacts/model/
DeviceLocalAccountLocator.java 25 import com.android.contactsbind.ObjectFactory;
56 ObjectFactory.getDeviceLocalAccountTypeFactory(context), knownAccountTypes);
70 ObjectFactory.getDeviceLocalAccountTypeFactory(context), knownTypes);
  /build/soong/cc/
object.go 28 android.RegisterModuleType("cc_object", objectFactory)
36 func objectFactory() android.Module {
  /packages/apps/Contacts/src-bind/com/android/contactsbind/
ObjectFactory.java 26 public class ObjectFactory {
  /system/libvintf/test/
utils-fake.cpp 29 ObjectFactory<RuntimeInfo>* gRuntimeInfoFactory = nullptr;

Completed in 1411 milliseconds

1 2 3 4 5 6 7 8 91011>>