Home
last modified time | relevance | path

Searched refs:Method (Results 1 – 25 of 144) sorted by relevance

123456

/aoo4110/main/tools/inc/tools/
H A Dlink.hxx37 #define DECL_LINK( Method, ArgType ) \ argument
38 long Method( ArgType ); \
42 static long Method( Class*, ArgType )
45 SAL_DLLPRIVATE long Method(ArgType); \
52 long Class::Method( ArgType ArgName )
54 #define IMPL_STUB(Class, Method, ArgType) \ argument
73 IMPL_STUB( Class, Method, ArgType ) \
74 long Class::Method( ArgType ArgName )
86 IMPL_STUB( Class, Method, ArgType )
90 long Class::Method( ArgType ArgName ) \
[all …]
/aoo4110/main/jurt/com/sun/star/lib/uno/bridges/java_remote/
H A DProxyFactory.java32 import java.lang.reflect.Method;
108 public Object invoke(Object proxy, Method method, Object[] args) in invoke()
164 private static final Method METHOD_EQUALS;
165 private static final Method METHOD_HASH_CODE;
166 private static final Method METHOD_TO_STRING;
167 private static final Method METHOD_QUERY_INTERFACE;
168 private static final Method METHOD_IS_SAME;
169 private static final Method METHOD_GET_OID;
/aoo4110/main/wizards/com/sun/star/wizards/ui/event/
H A DDataAware.java26 import java.lang.reflect.Method;
266 private Method getMethod;
270 private Method setMethod;
292 protected Method createGetMethod(String propName, Object obj) in createGetMethod()
294 Method m = null; in createGetMethod()
331 protected Method createSetMethod(String propName, Object obj, Class paramClass) { in createSetMethod()
332 Method m = null; in createSetMethod()
H A DMethodInvocation.java26 import java.lang.reflect.Method;
46 Method mMethod;
58 public MethodInvocation(Method method, Object obj) in MethodInvocation()
71 public MethodInvocation(Method method, Object obj, Class paramClass) in MethodInvocation()
/aoo4110/main/qadevOOo/runner/complexlib/
H A DMethodThread.java25 import java.lang.reflect.Method;
35 private Method mTestMethod = null;
52 public MethodThread(Method testMethod, Object invokeClass, PrintWriter log) in MethodThread()
59 public MethodThread(Method testMethod, Object invokeClass, Object[] parameter, PrintWriter log) in MethodThread()
H A DComplexTestCase.java25 import java.lang.reflect.Method;
66 Method before = this.getClass().getMethod("before", new Class[] {} ); in before()
128 Method testMethod = null; in test_method()
234 Method after = this.getClass().getMethod("after", new Class[] {}); in after()
/aoo4110/main/ridljar/com/sun/star/lib/uno/typedesc/
H A DMethodDescription.java28 import java.lang.reflect.Method;
34 Method method) in MethodDescription()
92 public Method getMethod() { in getMethod()
106 private final Method method;
H A DTypeDescription.java39 import java.lang.reflect.Method;
435 Method[] methods = zClass.getDeclaredMethods(); in initMethodDescriptions()
445 Method getter = findMethod(methods, getterName); in initMethodDescriptions()
457 Method setter = findMethod(methods, setterName); in initMethodDescriptions()
472 Method method = findMethod(methods, info.getName()); in initMethodDescriptions()
623 private Method findMethod(Method[] methods, String name) { in findMethod()
/aoo4110/main/scripting/java/com/sun/star/script/framework/provider/java/
H A DScriptProxy.java26 import java.lang.reflect.Method;
39 private Method m_method;
48 public ScriptProxy( Method method ) in ScriptProxy()
H A DStrictResolver.java62 Method m = null; in getProxy()
118 private Method resolveArguments( ScriptDescriptor sd, Class c ) in resolveArguments()
/aoo4110/main/jurt/com/sun/star/comp/loader/
H A DJavaLoader.java26 import java.lang.reflect.Method;
320 Method compfac_method = null; in activate()
329 Method method = null; in activate()
424 Method method = clazz.getMethod("__writeRegistryServiceInfo", paramTypes); in writeRegistryInfo()
/aoo4110/main/offapi/com/sun/star/i18n/
H A DXTextConversion.idl54 /** Method to convert text from one type to another
61 /** Method to search dictionaries for the conversion candidates.
93 /** Method to search dictionaries for the conversion candidate, if there
127 /** Method to query if the conversion type should be interactive or
/aoo4110/main/jurt/test/com/sun/star/lib/uno/bridges/java_remote/
H A DProxyFactory_Test.java34 import java.lang.reflect.Method;
79 private void testExceptions(TestRequestHandler handler, Method method, in testExceptions()
89 private void testExceptionType(Method method, Object obj, Object[] args, in testExceptionType()
/aoo4110/main/qadevOOo/tests/java/ifc/document/
H A D_Settings.java29 import java.lang.reflect.Method;
70Method lookupMethod = cPrinterJob.getDeclaredMethod("lookupPrintServices", new Class[0]); in _PrinterName()
155 Method getNameMethod = cPrintService.getDeclaredMethod("getName", new Class[0]); in getPrinterNameWithReflection()
/aoo4110/main/toolkit/qa/complex/toolkit/
H A DAssert.java27 import java.lang.reflect.Method;
63 Method method = impl_getMethod( objectClass, i_methodName, i_argClasses ); in assertException()
113 …private static Method impl_getMethod( final Class i_objectClass, final String i_methodName, final … in impl_getMethod()
/aoo4110/main/scripting/java/com/sun/star/script/framework/container/
H A DXMLParserFactory.java29 import java.lang.reflect.Method;
110 Method write; in write()
140 Method method = null; in write()
/aoo4110/main/bean/test/applet/oooapplet/
H A DOOoViewer.java24 import java.lang.reflect.Method;
83 Method methLoad = beanClass.getMethod( in start()
108 Method methStop = m_objBean.getClass().getMethod( in stop()
/aoo4110/main/qadevOOo/runner/convwatch/
H A DBorderRemover.java30 import java.lang.reflect.Method;
165Method getWriterMIMETypesMethod = imageIOClass.getDeclaredMethod("getWriterMIMETypes", new Class[]… in createNewImageWithoutBorder()
172Method writeMethod = imageIOClass.getDeclaredMethod("write", new Class[]{ java.awt.image.RenderedI… in createNewImageWithoutBorder()
H A DImageHelper.java31 import java.lang.reflect.Method;
85Method readMethod = imageIOClass.getDeclaredMethod("read", new Class[]{java.io.File.class}); in createImageHelper()
/aoo4110/main/qadevOOo/runner/lib/
H A DMultiMethodTest.java28 import java.lang.reflect.Method;
390 protected void invokeTestMethod(Method meth, String methName) in invokeTestMethod()
444 protected Method getMethodFor(String method) in getMethodFor()
/aoo4110/main/odk/source/com/sun/star/lib/loader/
H A DLoader.java31 import java.lang.reflect.Method;
133 Method m = c.getMethod( "main", new Class[] { String[].class } ); in main()
181 Method m = c.getMethod( "getJars", (Class[]) null ); in getCustomLoader()
/aoo4110/main/ridljar/com/sun/star/uno/
H A DIMethodDescription.java27 import java.lang.reflect.Method;
83 Method getMethod(); in getMethod()
/aoo4110/main/dbaccess/qa/complex/dbaccess/
H A DSingleSelectQueryComposer.java43 import java.lang.reflect.Method;
95 … final Method attributeGetter = composerClass.getMethod("get" + _attributeName, new Class[] in checkAttributeAccess()
98 … final Method attributeSetter = composerClass.getMethod("set" + _attributeName, new Class[] in checkAttributeAccess()
/aoo4110/main/scripting/java/com/sun/star/script/framework/provider/
H A DPathUtils.java28 import java.lang.reflect.Method;
54 Method getOid = IQueryInterface.class.getMethod("getOid", (java.lang.Class[])null); in getOidForModel()
/aoo4110/main/qadevOOo/runner/graphical/
H A DImageHelper.java31 import java.lang.reflect.Method;
89Method readMethod = imageIOClass.getDeclaredMethod("read", new Class[]{java.io.File.class}); in createImageHelper()

Completed in 90 milliseconds

123456