Home
last modified time | relevance | path

Searched refs:_aTypes (Results 1 – 3 of 3) sorted by relevance

/AOO41X/main/cppuhelper/source/
H A Dtypeprovider.cxx73 : _aTypes( 1 + rAddTypes.getLength() ) in OTypeCollection()
75 _aTypes[0] = rType1; in OTypeCollection()
76 copy( _aTypes, rAddTypes, 1 ); in OTypeCollection()
84 : _aTypes( 2 + rAddTypes.getLength() ) in OTypeCollection()
86 _aTypes[0] = rType1; in OTypeCollection()
87 _aTypes[1] = rType2; in OTypeCollection()
88 copy( _aTypes, rAddTypes, 2 ); in OTypeCollection()
97 : _aTypes( 3 + rAddTypes.getLength() ) in OTypeCollection()
99 _aTypes[0] = rType1; in OTypeCollection()
100 _aTypes[1] = rType2; in OTypeCollection()
[all …]
/AOO41X/main/cppuhelper/inc/cppuhelper/
H A Dtypeprovider.hxx39 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > _aTypes;
58 : _aTypes( rCollection._aTypes )
180 { return _aTypes; } in getTypes()
/AOO41X/main/odk/examples/java/Inspector/
H A DInspectorPane.java274 …oid addInterfacesToTreeNode(XUnoNode _oGrandParentNode, Object _oUnoParentObject, Type[] _aTypes) { in addInterfacesToTreeNode() argument
277 for ( int m = 0; m < _aTypes.length; m++ ) { in addInterfacesToTreeNode()
278 addUnoNode(_oGrandParentNode, _oUnoParentObject, _aTypes[m]); in addInterfacesToTreeNode()