Home
last modified time | relevance | path

Searched refs:arguments (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/trunk/main/testtools/source/bridgetest/
H A Dconstructors.cxx122 if (!(arguments.getLength() == 40 in initialize()
126 && (arguments[3].getValueType() in initialize()
135 && (arguments[10].getValueType() in initialize()
139 && (arguments[11] >>= arg11) in initialize()
141 && (arguments[12] >>= arg12) in initialize()
149 && (arguments[17].getValueType() in initialize()
167 && (arguments[24].getValueType() in initialize()
196 && (arguments[35] >>= arg35) in initialize()
303 if (!(arguments.getLength() == 45 in initialize()
315 && (arguments[11] >>= arg11) in initialize()
[all …]
/trunk/main/solenv/bin/
H A Drelease_prepare.pl71 my $arguments = {
87 if ( ! defined $arguments->{'lst-file'})
103 $arguments->{'languages'} = \@ARGV;
105 return $arguments;
154 my $arguments = ProcessCommandline();
155 $arguments->{'package-format'} = 'msi';
160 $arguments->{'lst-file'},
161 $arguments->{'product-name'},
190 $arguments->{'source-version'},
193 $arguments->{'package-format'},
[all …]
/trunk/main/unodevtools/source/skeletonmaker/
H A Djavatypemaker.cxx93 if ( !arguments.empty() && options.java5 ) { in printType()
96 i != arguments.end(); ++i ) in printType()
98 if ( i != arguments.begin() ) { in printType()
128 std::vector< OString > arguments; in printType() local
139 std::vector< OString > const & arguments) in printConstructorParameters()
162 } else if ( arguments.empty() ) { in printConstructorParameters()
189 std::vector< OString > const & arguments) in printConstructor()
664 std::vector< OString > arguments; in generateDocumentation() local
667 &arguments); in generateDocumentation()
752 &arguments); in generateDocumentation()
[all …]
H A Dcpptypemaker.cxx105 if (!arguments.empty()) { in printType()
108 i != arguments.end(); ++i) in printType()
110 if (i != arguments.begin()) in printType()
135 std::vector< OString > arguments; in printType() local
146 std::vector< OString > const & arguments) in printConstructorParameters()
168 } else if (arguments.empty()) { in printConstructorParameters()
195 std::vector< OString > const & arguments) in printConstructor()
201 arguments); in printConstructor()
746 std::vector< OString > arguments; in generateDocumentation() local
749 &arguments); in generateDocumentation()
[all …]
/trunk/main/bridges/source/cpp_uno/cc5_solaris_sparc64/
H A Duno2cpp.cxx163 stack[sp] = *static_cast< sal_Bool * >(arguments[i]); in call()
166 stack[sp] = *static_cast< sal_Int8 * >(arguments[i]); in call()
169 stack[sp] = *static_cast< sal_Int16 * >(arguments[i]); in call()
172 stack[sp] = *static_cast< sal_uInt16 * >(arguments[i]); in call()
176 stack[sp] = *static_cast< sal_Int32 * >(arguments[i]); in call()
179 stack[sp] = *static_cast< sal_uInt32 * >(arguments[i]); in call()
182 stack[sp] = *static_cast< sal_Int64 * >(arguments[i]); in call()
189 float * f = static_cast< float * >(arguments[i]); in call()
315 cppArgs[i], arguments[i], ptd, in call()
352 uno_destructData(arguments[i], ptds[i], NULL); in call()
[all …]
/trunk/main/codemaker/source/codemaker/
H A Dcodemaker.cxx48 void checkNoTypeArguments(std::vector< rtl::OString > const & arguments) { in checkNoTypeArguments() argument
49 if (!arguments.empty()) { in checkNoTypeArguments()
86 std::vector< rtl::OString > * arguments) in decomposeAndResolve()
92 *name = codemaker::UnoType::decompose(t, &n, arguments); in decomposeAndResolve()
116 checkNoTypeArguments(*arguments); in decomposeAndResolve()
126 checkNoTypeArguments(*arguments); in decomposeAndResolve()
130 if (!(allowExtraEntities && arguments->empty()) in decomposeAndResolve()
131 && (arguments->size() > SAL_MAX_UINT16 in decomposeAndResolve()
132 || (static_cast< sal_uInt16 >(arguments->size()) in decomposeAndResolve()
155 checkNoTypeArguments(*arguments); in decomposeAndResolve()
[all …]
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DConnectionLog.java56 public boolean log(int logLevel, int messageResID, Object... arguments) { in log() argument
57 Object[] argsWithId = new Object[arguments.length + 1]; in log()
59 System.arraycopy(arguments, 0, argsWithId, 1, arguments.length); in log()
64 public boolean logp(int logLevel, int messageResID, Object... arguments) { in logp() argument
65 Object[] argsWithId = new Object[arguments.length + 1]; in logp()
67 System.arraycopy(arguments, 0, argsWithId, 1, arguments.length); in logp()
68 return super.logp(logLevel, messageResID, arguments); in logp()
/trunk/main/offapi/com/sun/star/script/vba/
H A DVBAEventId.idl38 <p>Each event expects some specific arguments to be passed to
53 /** New document opened from template. No arguments. */
55 /** Document opened (loaded). No arguments. */
57 /** Document about to be closed. No arguments. */
59 /** Application start. No arguments. */
61 /** Application exit. No arguments. */
69 /** Text document opened (loaded). No arguments. */
71 /** Document about to be closed. No arguments. */
80 /** Document activated. No arguments. */
82 /** Document deactivated. No arguments. */
[all …]
/trunk/main/solenv/bin/modules/installer/
H A Dlogger.pm139 my ($class, $id, @arguments) = @_;
164 while (scalar @arguments >= 2)
166 my $key = shift @arguments;
167 my $value = shift @arguments;
185 my ($self, $format, @arguments) = @_;
192 my $message = sprintf($format, @arguments);
715 my ($format, @arguments) = @_;
717 $Info->printf("Error: ".$format, @arguments);
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/comphelper/
H A DEventLogger.java166 public boolean log(int logLevel, String message, Object... arguments) { in log() argument
168 return impl_log(logLevel, null, null, message, arguments); in log()
208 public boolean logp(int logLevel, String message, Object...arguments) { in logp() argument
211 … return impl_log(logLevel, caller.getClassName(), caller.getMethodName(), message, arguments); in logp()
216 …l_log(int logLevel, String sourceClass, String sourceMethod, String message, Object... arguments) { in impl_log() argument
221 for (int i = 0; i < arguments.length; i++) { in impl_log()
225 message = message.substring(0, position) + arguments[i].toString() + in impl_log()
/trunk/main/extensions/source/propctrlr/
H A Dobjectinspectormodel.cxx138 StlSyntaxSequence< Any > arguments( _arguments ); in initialize() local
139 if ( arguments.empty() ) in initialize()
146 impl_verifyArgument_throw( arguments[0] >>= factories, 1 ); in initialize()
148 if ( arguments.size() == 1 ) in initialize()
155 if ( arguments.size() == 3 ) in initialize()
157 impl_verifyArgument_throw( arguments[1] >>= nMinHelpTextLines, 2 ); in initialize()
158 impl_verifyArgument_throw( arguments[2] >>= nMaxHelpTextLines, 3 ); in initialize()
H A Ddefaultforminspection.cxx228 StlSyntaxSequence< Any > arguments( _arguments ); in initialize() local
229 if ( arguments.empty() ) in initialize()
236 if ( arguments.size() == 2 ) in initialize()
238 … if ( !( arguments[0] >>= nMinHelpTextLines ) || !( arguments[1] >>= nMaxHelpTextLines ) ) in initialize()
/trunk/main/binaryurp/source/
H A Dproxy.cxx109 void ** arguments, uno_Any ** exception) const in do_dispatch() argument
113 do_dispatch_throw(member, returnValue, arguments, exception); in do_dispatch()
146 void ** arguments, uno_Any ** exception) const in do_dispatch_throw() argument
163 arguments[0])); in do_dispatch_throw()
176 arguments[i])); in do_dispatch_throw()
225 arguments[j], pt.get(), i++->getValue(pt), in do_dispatch_throw()
229 arguments[j], i++->getValue(pt), pt.get(), 0); in do_dispatch_throw()
/trunk/main/vcl/unx/generic/dtrans/
H A DX11_service.cxx74 css::uno::Reference< XInterface > X11SalInstance::CreateClipboard( const Sequence< Any >& arguments in CreateClipboard() argument
83 if( arguments.getLength() > 0 ) in CreateClipboard()
86 arguments.getConstArray()[0] >>= xConn; in CreateClipboard()
96 rManager.initialize( arguments ); in CreateClipboard()
99 if( arguments.getLength() > 1 ) in CreateClipboard()
103 arguments.getConstArray()[1] >>= aSelectionName; in CreateClipboard()
H A DX11_droptarget.cxx57 void DropTarget::initialize( const Sequence< Any >& arguments ) throw( ::com::sun::star::uno::Excep… in initialize() argument
59 if( arguments.getLength() > 1 ) in initialize()
63 arguments.getConstArray()[0] >>= xConn; in initialize()
72 m_pSelectionManager->initialize( arguments ); in initialize()
77 arguments.getConstArray()[1] >>= aWindow; in initialize()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/
H A DStarFunctionDescription.java178 …public String createFormula(String[] arguments) throws com.sun.star.lang.DisposedException, com.su… in createFormula() argument
182 if (!infinite && arguments.length > count) in createFormula()
189 for (int i = 0; i < arguments.length; ++i) in createFormula()
191 if (arguments[i].length() == 0) in createFormula()
195 formula.append(arguments[i]); in createFormula()
196 if (i < (arguments.length - 1) && arguments[i + 1].length() != 0) in createFormula()
/trunk/main/ure/source/uretest/
H A DRunner.java30 public static void main(String[] arguments) throws Exception { in main() argument
31 String[] args = new String[arguments.length - 2]; in main()
32 System.arraycopy(arguments, 2, args, 0, args.length); in main()
33 UnoLoader.execute(new URL(arguments[0]), new URL(arguments[1]), args); in main()
/trunk/main/offapi/com/sun/star/configuration/
H A DConfigurationProvider.idl43 <type scope="com::sun::star::lang">ServiceManager</type>. The arguments passed to
50 given set of arguments, the existing instance may be reused.
51 In particular, instantiating a provider without explicit arguments to access
55 <p>Some arguments for
91 <p>The arguments passed to
101 <p>What combinations of arguments are supported depends on the service name.
111 <p>Other arguments can be used to control the behavior of the view. These
117 <p>An implementation must ignore unknown arguments.</p>
212 used with no further arguments support this method. It should return the
215 had been called using an empty sequence of arguments.
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/
H A Durp.java119 Object[] arguments) in writeRequest() argument
137 return writeRequest(false, oid, type, function, tid, arguments); in writeRequest()
161 args = pending.arguments; in writeReply()
455 args = pending.arguments; in readReply()
476 ThreadId tid, Object[] arguments) in writeRequest() argument
490 internal, oid, type, desc, tid, arguments, true); in writeRequest()
497 IMethodDescription desc, ThreadId tid, Object[] arguments, in writeRequest() argument
581 ((Object[]) arguments[i])[0]); in writeRequest()
584 (TypeDescription) inSig[i], arguments[i]); in writeRequest()
591 outL1Tid, new PendingRequests.Item(internal, desc, arguments)); in writeRequest()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/
H A DMessage.java38 Object result, Object[] arguments) in Message() argument
49 this.arguments = arguments; in Message()
178 return arguments; in getArguments()
190 private final Object[] arguments; field in Message
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/util/
H A D_XURLTransformer.java56 final static String arguments = "a=b"; field in _XURLTransformer
61 + "/" + name + "?" + arguments + "#" + mark;
83 url[0].Arguments = arguments; in _assemble()
193 if (!url[0].Arguments.equals(arguments)) { in _parseStrict()
196 log.println("expected : " + arguments); in _parseStrict()
287 arguments + "#" + mark; in _parseSmart()
333 if (!url[0].Arguments.equals(arguments)) { in _parseSmart()
336 log.println("expected : " + arguments); in _parseSmart()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/org/openoffice/
H A DRunnerService.java70 String[] arguments = new String[arg_length*2]; in execute() local
72 arguments[i*2] = args[i].Name; in execute()
74 arguments[i*2+1] = o.toString(); in execute()
88 String iniFile = cli.getIniPath(arguments); in execute()
98 String runnerIniFile = cli.getRunnerIniPath(arguments); in execute()
107 cli.getCommandLineParameter(param,arguments); in execute()
/trunk/main/odk/source/com/sun/star/lib/loader/
H A DLoader.java65 public static void main( String[] arguments ) throws Exception { in main() argument
112 if ( arguments.length > 0 ) { in main()
113 className = arguments[0]; in main()
114 args = new String[arguments.length - 1]; in main()
115 System.arraycopy( arguments, 1, args, 0, args.length ); in main()
124 args = arguments; in main()
/trunk/main/basic/source/runtime/
H A Ddllmgr.cxx481 rtl::OUString const & dll, ProcData const & proc, SbxArray * arguments, in call() argument
495 for (sal_uInt16 i = 1; i < (arguments == 0 ? 0 : arguments->Count()); ++i) { in call()
497 true, arguments->Get(i), special && i == 2, stack, stack.size(), in call()
557 for (sal_uInt16 i = 1; i < (arguments == 0 ? 0 : arguments->Count()); ++i) { in call()
558 arguments->Get(i)->ResetFlag(SBX_REFERENCE); in call()
703 SbxArray * arguments, SbxVariable & result, bool cdeclConvention) in Call() argument
718 return call(dllName, proc, arguments, result); in Call()
/trunk/main/udkapi/com/sun/star/bridge/oleautomation/
H A DNamedArgument.idl34 method, which takes all arguments in a sequence of anys. Usually the order
35 of the arguments must correspond to the order of arguments in the Automation
36 method. By using instances of <type>NamedArgument</type> the arguments in the
38 named arguments, otherwise the call fails.

Completed in 95 milliseconds

12345678910>>...13