Home
last modified time | relevance | path

Searched refs:args (Results 126 – 150 of 486) sorted by relevance

12345678910>>...20

/trunk/main/odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/
H A DUrlResolver.java34 public static void main( String [] args ) throws java.lang.Exception in main() argument
36 if( args.length != 1 ) in main()
64 Object rInitialObject = xUrlResolver.resolve( args[0] ); in main()
88 System.out.println( "uno-url is syntactical illegal ( " + args[0] + " )" ); in main()
/trunk/main/python/
H A Dpython-freebsd.patch32 - if (PyArg_ParseTuple(args, "O&Iw#|i:ioctl",
33 + if (PyArg_ParseTuple(args, "O&kw#|i:ioctl",
41 - if (PyArg_ParseTuple(args, "O&Is#:ioctl",
42 + if (PyArg_ParseTuple(args, "O&ks#:ioctl",
49 if (!PyArg_ParseTuple(args,
/trunk/main/svtools/source/graphic/
H A Dgraphicunofactory.cxx46 …GObjectImpl( uno::Sequence< uno::Any > const & args, uno::Reference< uno::XComponentContext > cons…
54 GObjectImpl::GObjectImpl( uno::Sequence< uno::Any > const & args, uno::Reference< uno::XComponentCo… in GObjectImpl() argument
56 if ( args.getLength() == 1 ) in GObjectImpl()
59 if ( !( args[ 0 ] >>= sId ) || sId.getLength() == 0 ) in GObjectImpl()
/trunk/test/testassistant/lib/
H A Dtestcommon.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/openoffice/ org/openoffice/test/ org/openoffice/test/common/ ...
/trunk/main/scripting/source/pyprov/
H A Dpythonscript.py769 args = ("Local", "Office")
771 "com.sun.star.ucb.UniversalContentBroker", args, ctx)
869 def invoke(self, args, out, outindex ): argument
870 log.debug( "PythonScript.invoke " + str( args ) )
872 ret = self.func( *args )
908 def __init__( self, ctx, *args ): argument
911 for i in args:
921 if isinstance(args[0],unicode ):
922 storageType = args[0]
926 inv = args[0]
/trunk/main/xmlsecurity/tools/demo/
H A Dperformance.cxx901 cssu::Sequence<cssu::Any> args(5); in SignatureEntity() local
905 args[0] = cssu::makeAny(rtl::OUString(RTL_ASCII_USTRINGPARAM(buf))); in SignatureEntity()
906 args[1] = cssu::makeAny(m_xSAXEventKeeper); in SignatureEntity()
909 args[2] = cssu::makeAny(rtl::OUString(RTL_ASCII_USTRINGPARAM(buf))); in SignatureEntity()
911 args[4] = cssu::makeAny(m_xXMLSignature); in SignatureEntity()
913 xInitialization->initialize(args); in SignatureEntity()
940 cssu::Sequence<cssu::Any> args(5); in SignatureEntity() local
945 args[1] = cssu::makeAny(m_xSAXEventKeeper); in SignatureEntity()
949 args[3] = cssu::makeAny(m_xXMLSecurityContext); in SignatureEntity()
950 args[4] = cssu::makeAny(m_xXMLSignature); in SignatureEntity()
[all …]
/trunk/main/odk/examples/DevelopersGuide/Components/CppComponent/
H A Dservice2_impl.cxx80 virtual void SAL_CALL initialize( Sequence< Any > const & args )
97 void MyService2Impl::initialize( Sequence< Any > const & args ) in initialize() argument
100 if (args.getLength() != 1) in initialize()
109 if (! (args[ 0 ] >>= m_sData)) in initialize()
/trunk/main/stoc/source/tdmanager/
H A Dtdmgr.cxx184 …virtual void SAL_CALL initialize( const Sequence< Any > & args ) throw (Exception, RuntimeExceptio…
330 const Sequence< Any > & args ) in initialize()
334 Any const * pProviders = args.getConstArray(); in initialize()
335 for ( sal_Int32 nPos = 0; nPos < args.getLength(); ++nPos ) in initialize()
974 std::vector< Reference< XTypeDescription > > args; in getInstantiatedStruct() local
999 args.push_back(type); in getInstantiatedStruct()
1008 && name[i] == '>' && !args.empty(); in getInstantiatedStruct()
1014 || (args.size() in getInstantiatedStruct()
1020 return new InstantiatedStruct(structType, args); in getInstantiatedStruct()
/trunk/main/scripting/examples/java/selector/
H A DScriptSelector.java249 Object[] args = new Object[] { ctxt }; in doDelete() local
251 Object result = inv.invoke("Deletable", args, in doDelete()
271 Object[] args = new Object[] { ctxt }; in doCreate() local
273 Object result = inv.invoke("Creatable", args, in doCreate()
295 Object[] args = new Object[] { ctxt }; in showEditor() local
297 inv.invoke("Editable", args, in showEditor()
/trunk/main/odk/examples/java/DocumentHandling/
H A DDocumentSaver.java37 public static void main(String args[]) { in main() argument
38 if ( args.length < 2 ) { in main()
67 java.io.File sourceFile = new java.io.File(args[0]); in main()
71 sourceFile = new java.io.File(args[1]); in main()
/trunk/main/test/source/cpp/
H A Dofficeconnection.cxx87 rtl_uString * args[] = { in setUp() local
102 args, sizeof args / sizeof args[0], 0, 0, 0, envs, in setUp()
/trunk/main/winaccessibility/source/service/
H A Dmsaaservice_impl.cxx110 virtual void SAL_CALL initialize( Sequence< Any > const & args )
131 void MSAAServiceImpl::initialize( Sequence< Any > const & args ) throw (Exception) in initialize() argument
133 if (1 != args.getLength()) in initialize()
140 if (! (args[ 0 ] >>= m_arg)) in initialize()
/trunk/main/desktop/source/pkgchk/unopkg/
H A Dunopkg_misc.cxx404 Sequence<OUString> args( 3 ); in connectToOffice() local
405 args[ 0 ] = OUSTR("-nologo"); in connectToOffice()
406 args[ 1 ] = OUSTR("-nodefault"); in connectToOffice()
413 args[ 2 ] = buf.makeStringAndClear(); in connectToOffice()
422 args[2] + in connectToOffice()
426 ::dp_misc::raiseProcess( appURL, args ); in connectToOffice()
/trunk/main/pyuno/source/module/
H A Dunohelper.py111 args = ii.ParameterTypes
114 for i in range( 0, len( args ) ):
117 out.write( _mode_to_str( infos[i].aMode ) + " " + args[i].Name + " " + infos[i].aName )
296 def createInstanceWithArgumentsAndContext( self, args, context ): argument
297 return self.clazz( context, *args )
/trunk/main/connectivity/source/drivers/jdbc/
H A DClob.cxx114 jvalue args[1]; in position() local
116 args[0].l = convertwchar_tToJavaString(t.pEnv,searchstr); in position()
123 out = t.pEnv->CallLongMethod( object, mID, args[0].l,start ); in position()
125 t.pEnv->DeleteLocalRef((jstring)args[0].l); in position()
/trunk/main/testtools/com/sun/star/comp/bridge/
H A DTestComponentMain.java71 static public void main(String args[]) throws Exception, com.sun.star.uno.Exception { in main() argument
72 if(args.length != 2) { in main()
81 String dcp = args[0]; in main()
82 boolean singleaccept = args[1].equals("singleaccept"); in main()
/trunk/main/odk/examples/DevelopersGuide/Charts/
H A DListenAtCalcRangeInDraw.java72 public static void main( String args[] ) in main() argument
74 ListenAtCalcRangeInDraw aMySelf = new ListenAtCalcRangeInDraw( args ); in main()
79 public ListenAtCalcRangeInDraw( String args[] ) in ListenAtCalcRangeInDraw() argument
81 Helper aHelper = new Helper( args ); in ListenAtCalcRangeInDraw()
H A DSelectionChangeListener.java63 public static void main( String args[] ) { in main() argument
64 SelectionChangeListener aMySelf = new SelectionChangeListener( args ); in main()
69 public SelectionChangeListener( String args[] ) { in SelectionChangeListener() argument
70 Helper aHelper = new Helper( args ); in SelectionChangeListener()
/trunk/main/redland/redland/
H A Dredland-1.0.17.patch.win3243 /* BDB has close method with 2 args */
59 /* BDB has fd method with 2 args */
67 /* BDB has open method with 6 args */
71 /* BDB has open method with 7 args */
538 -/* BDB has close method with 2 args */
550 -/* BDB has fd method with 2 args */
556 -/* BDB has open method with 6 args */
559 -/* BDB has open method with 7 args */
/trunk/main/desktop/source/deployment/registry/component/
H A Ddp_component.cxx319 BackendImpl( Sequence<Any> const & args,
560 Sequence<Any> const & args, in BackendImpl() argument
562 : PackageRegistryBackend( args, xComponentContext ), in BackendImpl()
1380 ::std::vector<OUString> args; in raise_uno_process()
1382 args.push_back( OUSTR("--quiet") ); in raise_uno_process()
1384 args.push_back( OUSTR("--singleaccept") ); in raise_uno_process()
1385 args.push_back( OUSTR("-u") ); in raise_uno_process()
1386 args.push_back( connectStr ); in raise_uno_process()
1388 args.push_back( OUSTR("-env:INIFILENAME=") ); in raise_uno_process()
1392 args.insert(args.end(), bootvars.begin(), bootvars.end()); in raise_uno_process()
[all …]
/trunk/main/writerfilter/qa/cppunittests/odiapi/
H A DExternalViewLogger.cxx30 #define SNPRINTF(buffer, size, format, args) _snprintf(buffer, size, format, args) argument
32 #define SNPRINTF(buffer, size, format, args) snprintf(buffer, size, format, args) argument
/trunk/main/vbahelper/source/vbahelper/
H A Dvbawindowbase.cxx42 VbaWindowBase::VbaWindowBase( uno::Sequence< uno::Any > const & args, in VbaWindowBase() argument
44 WindowBaseImpl_BASE( getXSomethingFromArgs< XHelperInterface >( args, 0, false ), xContext ), in VbaWindowBase()
45 m_xModel( getXSomethingFromArgs< frame::XModel >( args, 1, false ) ) in VbaWindowBase()
47 construct( getXSomethingFromArgs< frame::XController >( args, 2 ) ); in VbaWindowBase()
/trunk/main/odk/examples/DevelopersGuide/Spreadsheet/
H A DViewSample.java35 public static void main( String args[] ) in main() argument
39 ViewSample aSample = new ViewSample( args ); in main()
53 public ViewSample( String[] args ) in ViewSample() argument
55 super( args ); in ViewSample()
/trunk/main/odk/examples/CLI/CSharp/Spreadsheet/
H A DViewSample.cs33 public static void Main( String [] args ) in Main() argument
37 using ( ViewSample aSample = new ViewSample( args ) ) in Main()
51 public ViewSample( String[] args ) in ViewSample() argument
52 : base( args ) in ViewSample()
/trunk/main/sal/osl/unx/
H A Ddiagnose.c346 va_list args; in osl_trace() local
347 va_start(args, pszFormat); in osl_trace()
348 printTrace((unsigned long) getpid(), pszFormat, args); in osl_trace()
349 va_end(args); in osl_trace()

Completed in 289 milliseconds

12345678910>>...20