| /AOO41X/main/ure/source/uretest/ |
| H A D | Makefile.pln | 44 test-cpptest: out.pln/cppmain.uno.so out.pln/types.rdb out.pln/services.rdb 47 -ro $(URE_HOME)/share/misc/types.rdb -ro out.pln/types.rdb \ 51 test-javatest: out.pln/javamain.uno.jar out.pln/types.rdb out.pln/services.rdb 54 -ro $(URE_HOME)/share/misc/types.rdb -ro out.pln/types.rdb \ 59 out.pln/javanative.rc out.pln/services.rdb out.pln/types.rdb 70 -ro $(URE_HOME)/share/misc/types.rdb -ro out.pln/types.rdb \ 92 out.pln/types.cppumaker.flag | out.pln 95 -I out.pln/include/types -DCPPU_ENV=gcc3 \ 107 out.pln/types.cppumaker.flag | out.pln 110 -I out.pln/include/types -DCPPU_ENV=gcc3 \ [all …]
|
| /AOO41X/main/bridges/test/ |
| H A D | testcomp.cxx | 346 ::test::TestTypes SAL_CALL OCallMe::transport( const ::test::TestTypes& types ) in transport() argument 349 return types; in transport() 621 TestTypes types; in testAllTypes() local 622 types.Bool = sal_True; in testAllTypes() 623 types.Char = L'i'; in testAllTypes() 624 types.Byte = -12; in testAllTypes() 625 types.Short = -32000; in testAllTypes() 626 types.UShort = (sal_uInt16 ) (1 << i); in testAllTypes() 627 types.Long = -123; in testAllTypes() 628 types.ULong = 1 << i; in testAllTypes() [all …]
|
| /AOO41X/main/cppuhelper/source/ |
| H A D | implbase_ex.cxx | 127 static inline void __fillTypes( Type * types, class_data * cd ) in __fillTypes() argument 133 types[ n ] = pEntries[ n ].m_type.typeRef; in __fillTypes() 305 Sequence< Type > types( cd->m_nTypes ); in ImplHelper_getTypes() local 306 Type * pTypes = types.getArray(); in ImplHelper_getTypes() 308 return types; in ImplHelper_getTypes() 317 Sequence< Type > types( nImplTypes + nAddTypes ); in ImplInhHelper_getTypes() local 318 Type * pTypes = types.getArray(); in ImplInhHelper_getTypes() 326 return types; in ImplInhHelper_getTypes() 355 Sequence< Type > types( nTypes +1 ); in WeakImplHelper_getTypes() local 356 Type * pTypes = types.getArray(); in WeakImplHelper_getTypes() [all …]
|
| /AOO41X/main/javaunohelper/test/com/sun/star/lib/uno/helper/ |
| H A D | MultiTypeInterfaceContainer_Test.java | 174 Type[] types= cont.getContainedTypes(); in getContainedTypes() local 176 r[i++]= types.length == 5; in getContainedTypes() 177 for (int c= 0; c < types.length; c++) in getContainedTypes() 179 if (types[c] == null) in getContainedTypes() 181 else if(types[c].equals( new Type(XTypeProvider.class))) in getContainedTypes() 183 else if(types[c].equals(new Type(XInterface.class))) in getContainedTypes() 185 else if (types[c].equals(new Type(XWeak.class))) in getContainedTypes() 187 else if (types[c].equals(new Type())) in getContainedTypes() 189 else if (types[c].equals(new Type( aObj.getClass()))) in getContainedTypes() 191 else if (types[c].equals(new Type(XSingleComponentFactory.class))) in getContainedTypes() [all …]
|
| H A D | WeakBase_Test.java | 47 Type[] types= comp.getTypes(); //XWeak,XTypeProvider,XReference,XBridgeSupplier2 in getTypes() local 48 r[i++]= types.length == 4; in getTypes() 49 for (int c= 0; c < types.length; c++) in getTypes() 51 if (types[c].equals( new Type( XWeak.class))) in getTypes() 53 else if (types[c].equals(new Type(XTypeProvider.class))) in getTypes() 55 else if (types[c].equals(new Type(XReference.class))) in getTypes() 57 else if (types[c].equals(new Type(XBridgeSupplier2.class))) in getTypes()
|
| /AOO41X/main/qadevOOo/runner/util/ |
| H A D | dbg.java | 64 Type[] types = getInterfaceTypes(xTarget); in printInterfaces() local 65 if( null != types ) { in printInterfaces() 66 int nLen = types.length; in printInterfaces() 68 System.out.println(types[i].getTypeName()); in printInterfaces() 70 printInterfaceInfo(types[i]); in printInterfaces() 84 Type[] types = null; in getInterfaceTypes() local 88 types = xTypeProvider.getTypes(); in getInterfaceTypes() 89 return types; in getInterfaceTypes() 104 Type[] types = getInterfaceTypes(xTarget); in implementsInterface() local 105 if( null != types ) { in implementsInterface() [all …]
|
| /AOO41X/main/bridges/test/java_uno/nativethreadpool/ |
| H A D | makefile.mk | 69 $(MISC)$/$(TARGET)$/types.rdb: types.idl 74 $(REGMERGE) $@ /UCR $(MISC)$/$(TARGET)$/types.urd 75 $(CPPUMAKER) -BUCR -C -O$(MISC)$/$(TARGET)$/inc $@ -X$(SOLARBINDIR)$/types.rdb 76 $(JAVAMAKER) -BUCR -nD -O$(CLASSDIR) $@ -X$(SOLARBINDIR)$/types.rdb 78 $(SLOFILES) $(JAVACLASSFILES): $(MISC)$/$(TARGET)$/types.rdb 83 $(BIN)$/$(TARGET).rdb .ERRREMOVE: $(MISC)$/$(TARGET)$/types.rdb \ 85 cp $(MISC)$/$(TARGET)$/types.rdb $@ 86 $(REGMERGE) $@ / $(SOLARBINDIR)$/types.rdb 92 cp $(SOLARBINDIR)$/types.rdb $(MISC)$/$(TARGET)$/bootstrap.rdb
|
| /AOO41X/main/qadevOOo/tests/java/ifc/form/binding/ |
| H A D | _XBindableValue.java | 69 Type[] types = xValueBinding.getSupportedValueTypes(); in checkValueBinding() local 72 for (int i = 0; i < types.length; i++) { in checkValueBinding() 73 log.println("\t" + types[i].getTypeName()); in checkValueBinding() 75 boolean localRes = xValueBinding.supportsType(types[i]); in checkValueBinding() 91 private ArrayList types = new ArrayList(); field in _XBindableValue.MyValueBinding 108 types.add(type); in supportsType() 109 TypeArray = new Type[types.size()]; in supportsType() 111 for (int i = 0; i < types.size(); i++) { in supportsType() 112 TypeArray[i] = (Type) types.toArray()[i]; in supportsType()
|
| /AOO41X/main/cli_ure/source/ure/uno/util/ |
| H A D | WeakBase.cs | 87 Type [] types; in getTypes() 91 types = (Type []) s_types[ type ]; in getTypes() 92 if (null == types) in getTypes() 111 types = ar; in getTypes() 114 return types; in getTypes() 162 Type [] types = getTypes(); in ToString() 163 for ( Int32 pos = 0; pos < types.Length; ++pos ) in ToString() 165 buf.Append( types[ pos ].FullName ); in ToString() 166 if (pos < (types.Length -1)) in ToString()
|
| /AOO41X/main/ure/source/ |
| H A D | README | 50 /opt/openoffice.org/ure/share/misc/types.rdb 114 Program Files\URE\misc\types.rdb 213 - types.rdb and services.rdb are preconfigured UNO type and service registries. 233 The URE installation is preconfigured with several UNO types and UNO services. 234 The available types and services are listed in the types.rdb and services.rdb 243 locations for types.rdb and services.rdb files: 247 - <URE installation>/share/misc/ types.rdb and services.rdb, respectively 248 - /etc/opt/ure/ types.rdb and services.rdb, respectively 249 - ~/.ure/ types.rdb and services.rdb, respectively 255 - <URE installation>\misc\ types.rdb and services.rdb, respectively [all …]
|
| /AOO41X/main/udkapi/com/sun/star/uno/ |
| H A D | TypeClass.idl | 89 /** reflecting enum types 92 /** reflecting typedefed types referencing other types 95 /** reflecting compound types 98 /** reflecting union types 101 /** reflecting exception types 104 /** reflecting sequence types 107 /** reflecting array types 110 /** reflecting interface types
|
| /AOO41X/main/cli_ure/qa/climaker/ |
| H A D | makefile.mk | 90 $(OUTDIR)$/types.urd: types.idl 94 $(OUTDIR)$/types.rdb: $(OUTDIR)$/types.urd 98 $(OUTDIR)$/cli_test_types.dll: $(OUTDIR)$/types.rdb $(BIN)$/climaker.exe $(BIN)$/cli_uretypes.dll 101 -X $(SOLARBINDIR)$/types.rdb \ 102 $(OUTDIR)$/types.rdb
|
| /AOO41X/ext_libraries/apr/ |
| H A D | apr-1.5.2-darwin19.6.patch | 14 #include <sys/types.h> 22 #include <sys/types.h> 38 #include <sys/types.h> 53 #include <sys/types.h> 60 #include <sys/types.h> 69 #include <sys/types.h> 81 #include <sys/types.h>
|
| /AOO41X/main/cppuhelper/qa/propertysetmixin/ |
| H A D | makefile.mk | 75 $(MISC)/$(TARGET)/types.urd: types.idl 79 $(MISC)/$(TARGET)/types.rdb: $(MISC)/$(TARGET)/types.urd 83 $(MISC)/$(TARGET)/cppumaker.flag: $(MISC)/$(TARGET)/types.rdb 90 $(MISC)/$(TARGET)/javamaker.flag: $(MISC)/$(TARGET)/types.rdb 125 $(MISC)/$(TARGET)/types.rdb $(MISC)/$(TARGET)/services.rdb
|
| /AOO41X/main/udkapi/com/sun/star/lang/ |
| H A D | XTypeProvider.idl | 40 /** interface to get information about the types 41 (usually interface types) supported by an object. 47 a sequence of all types (usually interface types) provided by the object. 49 to contain all types supported by the aggregated objects. 56 unambiguously between two sets of types, e.g. to realise hashing 58 the same UUID also have to return the same set of types in getTypes().
|
| /AOO41X/main/scripting/java/com/sun/star/script/framework/provider/java/ |
| H A D | ScriptDescriptor.java | 189 Class[] types = getArgumentTypes(); in toString() local 193 if ( types != null ) in toString() 195 for ( int i = 0; i < types.length - 1; i++ ) in toString() 197 description.append( types[ i ].getName() ); in toString() 201 description.append( types[ types.length - 1 ].getName() ); in toString()
|
| /AOO41X/main/udkapi/com/sun/star/reflection/ |
| H A D | XPublished.idl | 44 <li>Enum types 46 plain struct types 50 exception types (<type 52 interface types (<type 73 <li>Sequence types (<type 77 instantiated polymorphic struct types 79 attributes of interface types (<type scope="com::sun::star::reflection"> 80 XInterfaceAttributeTypeDescription2</type>), methods of interface types
|
| /AOO41X/main/qadevOOo/runner/basicrunner/basichelper/ |
| H A D | DispatchProviderInterceptor.java | 75 Type types[] = new Type[interfaces.length]; in getTypes() local 77 types[i] = new Type(interfaces[i]); in getTypes() 79 return types; in getTypes() 184 Type types[] = new Type[interfaces.length]; in getTypes() local 186 types[i] = new Type(interfaces[i]); in getTypes() 188 return types; in getTypes()
|
| H A D | Filter.java | 89 Type types[] = new Type[interfaces.length]; in getTypes() local 91 types[i] = new Type(interfaces[i]); in getTypes() 93 return types; in getTypes() 204 Type types[] = new Type[interfaces.length]; in getTypes() local 206 types[i] = new Type(interfaces[i]); in getTypes() 208 return types; in getTypes()
|
| H A D | Connector.java | 89 Type types[] = new Type[interfaces.length]; in getTypes() local 91 types[i] = new Type(interfaces[i]); in getTypes() 93 return types; in getTypes() 219 Type types[] = new Type[interfaces.length]; in getTypes() local 221 types[i] = new Type(interfaces[i]); in getTypes() 223 return types; in getTypes()
|
| /AOO41X/main/unodevtools/source/skeletonmaker/ |
| H A D | skeletonmaker.cxx | 150 std::vector< OString > types; variable 254 types.push_back(OUStringToOString(sOption, RTL_TEXTENCODING_UTF8)); 284 if ( types.empty() && options.componenttype != 3) { 300 std::vector< OString >::const_iterator iter = types.begin(); 301 while (iter != types.end()) { 324 java::generateSkeleton(options, manager, types, delegate); 327 cpp::generateSkeleton(options, manager, types, delegate);
|
| /AOO41X/main/sw/qa/complex/accessibility/ |
| H A D | AccessibleRelationSet.java | 55 …private final static String[] types = {"INVALID","CONTENT_FLOWS_FROM","CONTENT_FLOWS_TO","CONTROLL… field in AccessibleRelationSet 76 "didn't gain correct relation type for paragraph 0", types[2], in contents_flows_to() 77 types[firstrelation]); in contents_flows_to() 136 "didn't gain correct relation type for paragraph 1", types[1], in contents_flows_from() 137 types[relationtypes[0]]); in contents_flows_from() 146 "didn't gain correct relation type for paragraph 3", types[2], in contents_flows_from() 147 types[relationtypes[1]]); in contents_flows_from()
|
| /AOO41X/main/ucb/qa/complex/tdoc/ |
| H A D | _XTypeProvider.java | 45 public static Type[] types = null; field in _XTypeProvider 72 types = oObj.getTypes(); in _getTypes() 73 for (int i=0;i<types.length;i++) { in _getTypes() 75 log.println(k+". Type is "+types[i].toString()); in _getTypes() 76 if (types[i].toString().equals in _getTypes()
|
| /AOO41X/main/qadevOOo/tests/java/ifc/lang/ |
| H A D | _XTypeProvider.java | 44 public static Type[] types = null; field in _XTypeProvider 70 types = oObj.getTypes(); in _getTypes() 71 for (int i=0;i<types.length;i++) { in _getTypes() 73 log.println(k+". Type is "+types[i].toString()); in _getTypes() 74 if (types[i].toString().equals in _getTypes()
|
| /AOO41X/main/framework/qa/complex/imageManager/ |
| H A D | _XTypeProvider.java | 47 public static Type[] types = null; field in _XTypeProvider 79 types = oObj.getTypes(); in _getTypes() 80 for (int i=0;i<types.length;i++) { in _getTypes() 82 System.out.println(k+". Type is "+types[i].toString()); in _getTypes() 83 if (types[i].toString().equals in _getTypes()
|