Lines Matching refs:args
185 Object args[]; in createInstanceWithContext() local
189 args = new Object [] { xContext, _xRegistryKey, new Object[ 0 ] }; in createInstanceWithContext()
192 args = new Object [] { xContext, _xRegistryKey }; in createInstanceWithContext()
195 args = new Object [] { xContext, new Object[ 0 ] }; in createInstanceWithContext()
198 args = new Object [] { xContext }; in createInstanceWithContext()
201 args = new Object [] { getSMgr( xContext ), _xRegistryKey, new Object[ 0 ] }; in createInstanceWithContext()
204 args = new Object [] { getSMgr( xContext ), _xRegistryKey }; in createInstanceWithContext()
207 args = new Object [] { getSMgr( xContext ), new Object[ 0 ] }; in createInstanceWithContext()
210 args = new Object [] { getSMgr( xContext ) }; in createInstanceWithContext()
213 args = new Object [] { new Object[ 0 ] }; in createInstanceWithContext()
216 args = new Object [ 0 ]; in createInstanceWithContext()
222 return _constructor.newInstance( args ); in createInstanceWithContext()
251 Object args[]; in createInstanceWithArgumentsAndContext() local
257 args = new Object [] { xContext, _xRegistryKey, rArguments }; in createInstanceWithArgumentsAndContext()
261 args = new Object [] { xContext, _xRegistryKey }; in createInstanceWithArgumentsAndContext()
264 args = new Object [] { xContext, rArguments }; in createInstanceWithArgumentsAndContext()
268 args = new Object [] { xContext }; in createInstanceWithArgumentsAndContext()
271 args = new Object [] { getSMgr( xContext ), _xRegistryKey, rArguments }; in createInstanceWithArgumentsAndContext()
275 args = new Object [] { getSMgr( xContext ), _xRegistryKey }; in createInstanceWithArgumentsAndContext()
278 args = new Object [] { getSMgr( xContext ), rArguments }; in createInstanceWithArgumentsAndContext()
282 args = new Object [] { getSMgr( xContext ) }; in createInstanceWithArgumentsAndContext()
285 args = new Object [] { rArguments }; in createInstanceWithArgumentsAndContext()
289 args = new Object [ 0 ]; in createInstanceWithArgumentsAndContext()
295 Object instance = _constructor.newInstance( args ); in createInstanceWithArgumentsAndContext()
350 public Object createInstanceWithArguments(Object[] args) in createInstanceWithArguments() argument
354 return createInstanceWithArgumentsAndContext( args, null ); in createInstanceWithArguments()