| /trunk/main/extensions/test/ole/AxTestComponents/ |
| H A D | AxTestComponents.idl | 40 [id(82), helpstring("method inBool")] HRESULT inBool([in]VARIANT_BOOL val); 41 [id(1), helpstring("method inByte")] HRESULT inByte([in] unsigned char val); 42 [id(2), helpstring("method inShort")] HRESULT inShort([in] short val); 43 [id(3), helpstring("method inLong")] HRESULT inLong([in] long val); 44 [id(4), helpstring("method inString")] HRESULT inString([in] BSTR val); 45 [id(5), helpstring("method inFloat")] HRESULT inFloat([in] float val); 46 [id(6), helpstring("method inDouble")] HRESULT inDouble([in] double val); 47 [id(7), helpstring("method inVariant")] HRESULT inVariant([in] VARIANT val); 48 [id(8), helpstring("method inArray")] HRESULT inArray([in] SAFEARRAY(VARIANT) val); 49 [id(9), helpstring("method inObject")] HRESULT inObject([in] IDispatch* val); [all …]
|
| /trunk/main/extensions/test/ole/unoTocomCalls/XCallback_Impl/ |
| H A D | XCallback_Impl.idl | 40 [id(1), helpstring("method func1")] HRESULT func1(); 41 …[id(2), helpstring("method returnInterface")] HRESULT returnInterface([out, retval] IDispatch** pp… 42 [id(3), helpstring("method outInterface")] HRESULT outInterface([out] IDispatch** ppdisp); 43 …[id(4), helpstring("method outValuesMixed")] HRESULT outValuesMixed([in] long val, [out] long* pva… 44 …[id(5), helpstring("method outValuesAll")] HRESULT outValuesAll([out] IDispatch** ppdisp, [out] ID… 56 [id(6), helpstring("method outStruct")] HRESULT outStruct([out] IDispatch** outStruct); 57 [id(7), helpstring("method outEnum")] HRESULT outEnum([out] long* outEnum); 58 … [id(8), helpstring("method outSeqAny")] HRESULT outSeqAny([out] SAFEARRAY( VARIANT)* outSeq); 59 [id(9), helpstring("method outAny")] HRESULT outAny([out] VARIANT* outAny); 60 [id(10), helpstring("method outBool")] HRESULT outBool([out]VARIANT_BOOL* outBool); [all …]
|
| /trunk/main/winaccessibility/source/UAccCOMIDL/ |
| H A D | UAccCOM.idl | 37 [id(1), helpstring("method Put_XAccName")] HRESULT Put_XAccName(const OLECHAR* pszName); 38 [id(2), helpstring("method Put_XAccRole")] HRESULT Put_XAccRole(unsigned short pRole); 39 [id(3), helpstring("method DecreaseState")] HRESULT DecreaseState(DWORD pXSate); 40 [id(4), helpstring("method IncreaseState")] HRESULT IncreaseState(DWORD pXSate); 41 …[id(5), helpstring("method Put_XDescription")] HRESULT Put_XAccDescription(const OLECHAR* pszDescr… 42 … [id(6), helpstring("method Put_XAccValue")] HRESULT Put_XAccValue(const OLECHAR* pszAccValue); 43 [id(7), helpstring("method SetState")] HRESULT SetState(DWORD pXSate); 44 … [id(8), helpstring("method Put_XAccLocation")] HRESULT Put_XAccLocation(const Location sLocation); 45 [id(9), helpstring("method Put_XAccFocus")] HRESULT Put_XAccFocus(long dChildID); 46 … [id(10), helpstring("method Put_XAccParent")] HRESULT Put_XAccParent(IMAccessible* pIParent); [all …]
|
| /trunk/main/unodevtools/source/skeletonmaker/ |
| H A D | javatypemaker.cxx | 199 typereg::Reader const & reader, sal_uInt16 method, bool previous, in printMethodParameters() argument 202 for ( sal_uInt16 i = 0; i < reader.getMethodParameterCount(method); ++i ) { in printMethodParameters() 211 reader.getMethodParameterTypeName(method, i)), in printMethodParameters() 213 if ( reader.getMethodParameterFlags(method, i) == RT_PARAM_OUT in printMethodParameters() 214 || reader.getMethodParameterFlags(method, i) == RT_PARAM_INOUT ) in printMethodParameters() 217 } else if ( (reader.getMethodParameterFlags(method, i) & RT_PARAM_REST ) in printMethodParameters() 226 reader.getMethodParameterName(method, i)), in printMethodParameters() 234 typereg::Reader const & reader, sal_uInt16 method) in printExceptionSpecification() argument 236 if ( reader.getMethodExceptionCount(method) > 0 ) { in printExceptionSpecification() 238 for ( sal_uInt16 i = 0; i < reader.getMethodExceptionCount(method); ++i ) in printExceptionSpecification() [all …]
|
| H A D | cpptypemaker.cxx | 207 typereg::Reader const & reader, sal_uInt16 method, bool previous, in printMethodParameters() argument 211 for (sal_uInt16 i = 0; i < reader.getMethodParameterCount(method); ++i) { in printMethodParameters() 217 if (reader.getMethodParameterFlags(method, i) == RT_PARAM_OUT in printMethodParameters() 218 || reader.getMethodParameterFlags(method, i) == RT_PARAM_INOUT) in printMethodParameters() 228 reader.getMethodParameterTypeName(method, i)), in printMethodParameters() 235 reader.getMethodParameterName(method, i)), in printMethodParameters() 243 typereg::Reader const & reader, sal_uInt16 method) in printExceptionSpecification() argument 247 if (reader.getMethodExceptionCount(method) > 0) { in printExceptionSpecification() 248 for (sal_uInt16 i = 0; i < reader.getMethodExceptionCount(method); ++i) { in printExceptionSpecification() 252 reader.getMethodExceptionTypeName(method, i)), 1); in printExceptionSpecification() [all …]
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/lib/ |
| H A D | MultiMethodTest.java | 337 protected boolean isCalled(String method) in isCalled() argument 339 return methCalled.contains(method); in isCalled() 347 protected void requiredMethod(String method) in requiredMethod() argument 349 log.println("starting required method: " + method); in requiredMethod() 350 executeMethod(method); in requiredMethod() 351 Status mtStatus = tRes.getStatusFor(method); in requiredMethod() 355 log.println("! Required method " + method + " failed"); in requiredMethod() 364 protected void executeMethod(String method) in executeMethod() argument 366 if (!isCalled(method)) in executeMethod() 368 log.println("Execute: " + method); in executeMethod() [all …]
|
| H A D | TestResult.java | 53 public boolean tested( String method, boolean result) { in tested() argument 54 System.out.println("Method "+method+" finished with state "+(result?"OK":"FAILED")); in tested() 55 return tested( method, Status.passed( result ) ); in tested() 69 public boolean tested( String method, Status status ) { in tested() argument 70 testedMethods.put(method,status); in tested() 86 public boolean hasMethod( String method ) { in hasMethod() argument 87 return testedMethods.containsKey( method ); in hasMethod() 98 public Status getStatusFor( String method ) { in getStatusFor() argument 99 return (Status)testedMethods.get( method ); in getStatusFor()
|
| /trunk/main/extensions/source/activex/msidl/ |
| H A D | so_activex.idl | 53 [id(1), helpstring("method getWindowHandle")] 58 [id(2), helpstring("method getToolkit")] 61 [id(3), helpstring("method setPointer")] 64 [id(4), helpstring("method setBackground")] 67 [id(5), helpstring("method invalidate")] 70 [id(6), helpstring("method invalidateRect")] 73 [id(7), helpstring("method dispose")] 76 [id(8), helpstring("method addEventListener")] 79 [id(9), helpstring("method removeEventListener")] 97 [id(1), helpstring("method getSlaveDispatchProvider")] [all …]
|
| /trunk/main/offapi/com/sun/star/accessibility/ |
| H A D | XAccessibleComponent.idl | 75 <method>getLocationOnScreen</method> function.</li> 78 system is used instead. Used by the <method>getLocation</method> 82 by the <method>containsPoint</method> and 83 <method>getAccessibleAtPoint</method> functions.</li> 92 it is supported, and use the <method 93 scope="XAccessibleAction">getAccessibleKeyBinding()</method>.</p> 111 returned by the <method>getBounds</method>. The scale of the 132 <method>getBounds</method>. The scale of the coordinate 149 Note that the two methods <method>getLocation</methodmber> and 150 <method>getSize</method> return the same information. With method [all …]
|
| /trunk/main/offapi/com/sun/star/embed/ |
| H A D | Storage.idl | 121 <dt><method>XStorage::openStreamElement</method></dt> 124 This method returns <type>StorageStream</type> 138 <dt><method>XStorage::openEncryptedStreamElement</method></dt> 140 This method allows to specify reading password for the 149 <dt><method>XStorage::openStorageElement</method></dt> 151 This method returns <type>Storage</type> service 155 <dt><method>XStorage::cloneStreamElement</method></dt> 158 This method returns <type>StorageStream</type> service 165 <method scope="com::sun::star::io">XOutputStream::flush</method> 174 created stream. This method allows to retrieve copy of [all …]
|
| H A D | FileSystemStorage.idl | 69 <dt><method>XStorage::openStorageElement</method></dt> 71 This method returns <type>FileSystemStorage</type> 75 <dt><method>XStorage::copyLastCommitTo</method></dt> 78 this method just creates a copy of the storage in it's 82 <dt><method>XStorage::copyStorageElementLastCommitTo</method></dt> 85 this method just creates a copy of the storage in it's 89 <dt><method>XStorage::removeStorageElement</method></dt>
|
| H A D | XStorageRawAccess.idl | 84 This method returns a stream from the package as it is stored there, 85 without any decompression/description and etc. This method can be 123 This method allows to transport encrypted streams without decryption. 124 Mainly this method is introduced to allow to copy one encrypted 126 use this method outside of storage implementation since different 128 method is used outside of storage implementation the user code is 134 The difference of this method from the previous one is that it handles 136 streams can differ for the same entry, since this method can add 178 This method allows to insert a stream retrieved by 179 <method>XStorageRawAccess::getRawEncrStreamElement()</method> into a [all …]
|
| /trunk/main/udkapi/com/sun/star/reflection/ |
| H A D | XIdlMethod.idl | 55 /** Reflects an IDL interface method. 59 /** Returns the return type of the reflected method. 62 return type of reflected method 66 /** Returns the formal parameter types of the reflected method in order of IDL 70 formal parameter types of reflected method 74 /** Returns formal parameter informations of the reflected method 80 parameter informations of reflected method 84 /** Returns the declared exceptions types of the reflected method. 87 declared exception types of reflected method 91 /** Returns the method mode in which calls are run, i.e. either oneway or [all …]
|
| H A D | XInterfaceMethodTypeDescription.idl | 45 /** Reflects an interface method type. 50 /** Returns the method's return type. 53 method's return type 57 /** Returns true, if this method is declared oneway. 60 true, if this method is declared oneway 64 /** Returns all parameters of the method in order of IDL declaration. 67 method parameters 71 /** Returns declared exceptions that may occur upon invocations of the method. 74 declared exceptions of method
|
| /trunk/main/scripting/java/com/sun/star/script/framework/container/ |
| H A D | XMLParserFactory.java | 140 Method method = null; in write() local 141 method = formatterClass.getMethod("setMethod", in write() 143 method.invoke(formatterObject, new Object[] {"xml"}); in write() 144 method = formatterClass.getMethod("setIndenting", in write() 146 method.invoke(formatterObject, new Object[] {Boolean.TRUE}); in write() 150 method = serializerClass.getMethod("setOutputByteStream", in write() 152 method.invoke(serializerObject, new Object[] {out}); in write() 153 method = serializerClass.getMethod("setOutputFormat", in write() 155 method.invoke(serializerObject, in write() 158 method = serializerClass.getMethod("asDOMSerializer", in write() [all …]
|
| /trunk/test/testassistant/src/org/openoffice/test/assistant/views/ |
| H A D | UIMapOp.java | 202 String method = null; in codeParts() local 214 method = "button"; in codeParts() 226 method = "editbox"; in codeParts() 230 method = "combobox"; in codeParts() 236 method = "listbox"; in codeParts() 240 method = "tabpage"; in codeParts() 244 method = "toolbox"; in codeParts() 249 method = "tabcontrol"; in codeParts() 256 method = "window"; in codeParts() 269 method = "dialog"; in codeParts() [all …]
|
| /trunk/main/offapi/com/sun/star/resource/ |
| H A D | XLocale.idl | 54 // DocMerge from xml: method com::sun::star::resource::XLocale::create 73 // DocMerge from xml: method com::sun::star::resource::XLocale::getDefault 74 /** the common method of getting the current default locale. 91 // DocMerge from xml: method com::sun::star::resource::XLocale::setDefault 104 // DocMerge from idl: method com::sun::star::resource::XLocale::getAvailableLocales 112 // DocMerge from idl: method com::sun::star::resource::XLocale::getISOCountries 120 // DocMerge from idl: method com::sun::star::resource::XLocale::getISOLanguages 128 // DocMerge from idl: method com::sun::star::resource::XLocale::getLanguagesForCountry 137 // DocMerge from idl: method com::sun::star::resource::XLocale::getISO3Language 146 // DocMerge from idl: method com::sun::star::resource::XLocale::getISO3Country [all …]
|
| /trunk/main/stoc/test/tdmanager/ |
| H A D | testtdmanager.cxx | 233 method( in run() local 239 assertEqual(css::uno::TypeClass_INTERFACE_METHOD, method->getTypeClass()); in run() 244 method->getName()); in run() 247 method->getMemberName()); in run() 248 assertEqual< sal_Int32 >(3, method->getPosition()); in run() 251 method->getReturnType()->getName()); in run() 252 assertEqual< bool >(false, method->isOneway()); in run() 253 assertEqual< sal_Int32 >(1, method->getParameters().getLength()); in run() 256 method->getParameters()[0]->getName()); in run() 259 method->getParameters()[0]->getType()->getName()); in run() [all …]
|
| /trunk/main/offapi/com/sun/star/rendering/ |
| H A D | XTextLayout.idl | 142 This method returns a sequence of advancements, one for each 148 this method can be used to query for the layout's default 165 This method applies the specified advancements to every 189 This method is similar to 191 overall bounds are returned by this method.<p> 202 This method is the core of the <type>XTextLayout</type> 228 This method can be used to combine the layout of a text line 235 method can assign proportionally more space to this layout 263 /** This method determines the hit position in the text.<p> 265 This method determines the index of the character hit at the [all …]
|
| /trunk/main/stoc/test/registry_tdprovider/ |
| H A D | testregistrytdprovider.cxx | 333 method; in run() local 427 method = css::uno::Reference< in run() 430 assertEqual(css::uno::TypeClass_INTERFACE_METHOD, method->getTypeClass()); in run() 434 method->getName()); in run() 437 method->getMemberName()); in run() 438 assertEqual< sal_Int32 >(6, method->getPosition()); in run() 439 assertEqual< bool >(false, method->isOneway()); in run() 440 assertEqual< sal_Int32 >(1, method->getParameters().getLength()); in run() 443 method->getParameters()[0]->getName()); in run() 446 method->getParameters()[0]->getType()->getName()); in run() [all …]
|
| /trunk/main/offapi/com/sun/star/presentation/ |
| H A D | XSlideShow.idl | 80 This method triggers the next effect on the currently 82 this method does nothing. If there are no more effects on the 87 triggered. This method returns <FALSE>, if there is no show 102 If there is currently no slideshow running, this method does 106 triggered. This method returns <FALSE/>, if there is no show 115 This method starts an animation or activity intrinsic to the 128 This method stops an animation or activity intrinsic to the 141 This method ends all effects on the current slide, displays a 144 method does nothing (this especially means, that any currently 195 This method either pauses the slide show (all currently [all …]
|
| /trunk/main/offapi/com/sun/star/sheet/ |
| H A D | AccessibleSpreadsheetPageView.idl | 56 <method scope="::com::sun::star::accessibility" 57 >XAccessibleContext::getAccessibleParent</method> 60 <method scope="::com::sun::star::accessibility" 61 >XAccessibleContext::getAccessibleChild</method> all 63 <method scope="::com::sun::star::accessibility" 64 >XAccessibleContext::getAccessibleContext</method> for these children returns 69 <method scope="::com::sun::star::accessibility" 70 >XAccessibleContext::getAccessibleChild</method> 75 <method scope="::com::sun::star::accessibility" 76 >XAccessibleChild::getAccessibleChild</method> [all …]
|
| H A D | AccessibleSpreadsheetDocumentView.idl | 59 <li>The parent returned by <method>getAccessibleParent</method> 61 <li>The children returned by <method>getAccessibleChild</method> all 63 <method>getAccessibleContext</method> for these children returns 67 A child where calling <method>getAccessibleChild</method> 74 A child where calling <method>getAccessibleChild</method> 81 A child where calling <method>getAccessibleChild</method> 87 A child where calling <method>getAccessibleChild</method>
|
| /trunk/main/udkapi/com/sun/star/io/ |
| H A D | XInputStream.idl | 53 // DocMerge from xml: method com::sun::star::io::XInputStream::readBytes 59 that the method blocks until the specified number of bytes are 97 // DocMerge from xml: method com::sun::star::io::XInputStream::readSomeBytes 101 <p>This method is very similar to the readBytes method, except that 103 The method blocks as long as at least 1 byte is available or 104 EOF has been reached. EOF has only been reached, when the method 121 // DocMerge from xml: method com::sun::star::io::XInputStream::skipBytes 124 <p>It is up to the implementation whether this method is 136 // DocMerge from xml: method com::sun::star::io::XInputStream::available 139 <p>Note: This method offers no information on whether the EOF [all …]
|
| /trunk/main/udkapi/com/sun/star/uno/ |
| H A D | XAggregation.idl | 39 or some of the interfaces of "B". Whenever the method 50 which are made before the delegator was set (using the method 52 (using the method <member>XInterface::release()</member>) 57 own reference count by calling its method 59 before it sets itself to any aggregate using the method 65 its aggregated objects by calling their method 80 /** sets the object to which all calls to the method 89 to handle calls to the method 102 <p>This method is only called from within an implementation of 104 or <member>XAggregation::queryAggregation()</member>. This method [all …]
|