/aoo41x/main/xmloff/source/forms/ |
H A D | property_meta_data.cxx | 95 s_propertyDescriptionsByName[ desc->propertyName ] = desc; in lcl_getPropertyDescriptions() 96 ++desc; in lcl_getPropertyDescriptions() 115 if ( desc->propertyGroup != NO_GROUP ) in lcl_getIndexedPropertyGroups() 116 s_indexedPropertyGroups[ desc->propertyGroup ].push_back( desc ); in lcl_getIndexedPropertyGroups() 117 ++desc; in lcl_getIndexedPropertyGroups() 136 …s_reverseTokenLookup[ token::GetXMLToken( desc->attribute.attributeToken ) ] = desc->attribute.att… in getReverseTokenLookup() 137 ++desc; in getReverseTokenLookup() 165 if ( desc->propertyGroup != NO_GROUP ) in lcl_getAttributeGroups() 166 … s_attributeGroups.insert( AttributeGroups::value_type( desc->attribute, desc->propertyGroup ) ); in lcl_getAttributeGroups() 167 ++desc; in lcl_getAttributeGroups() [all …]
|
/aoo41x/main/ridljar/com/sun/star/lib/uno/typedesc/ |
H A D | TypeDescription.java | 72 if (desc == null) { in getTypeDescription() 74 type.setTypeDescription(desc); in getTypeDescription() 76 return desc; in getTypeDescription() 240 if (desc == null) { in get() 241 desc = create(type); in get() 242 cache.put(desc); in get() 244 return desc; in get() 647 if (!list.contains(desc)) { in add() 648 list.add(desc); in add() 678 map.put(desc.getTypeName(), new Entry(desc, queue)); in put() [all …]
|
H A D | MemberDescriptionHelper.java | 30 public static boolean isUnsigned(ITypeDescription desc) { in isUnsigned() argument 31 switch (getElementTypeClass(desc).getValue()) { in isUnsigned() 42 public static boolean isAny(ITypeDescription desc) { in isAny() argument 43 return getElementTypeClass(desc) == TypeClass.ANY; in isAny() 46 public static boolean isInterface(ITypeDescription desc) { in isInterface() argument 47 return getElementTypeClass(desc) == TypeClass.INTERFACE; in isInterface() 50 private static TypeClass getElementTypeClass(ITypeDescription desc) { in getElementTypeClass() argument 51 for (;; desc = desc.getComponentType()) { in getElementTypeClass() 52 TypeClass tc = desc.getTypeClass(); in getElementTypeClass()
|
/aoo41x/main/pyuno/source/module/ |
H A D | pyuno_type.cxx | 182 TypeDescription desc( strTypeName ); in PyEnum2Enum() local 183 if( desc.is() ) in PyEnum2Enum() 185 if(desc.get()->eTypeClass != typelib_TypeClass_ENUM ) in PyEnum2Enum() 195 desc.makeComplete(); in PyEnum2Enum() 239 TypeDescription desc( name ); in PyType2Type() local 240 if( ! desc.is() ) in PyType2Type() 257 return desc.get()->pWeakRef; in PyType2Type() 268 TypeDescription desc(name ); in importToGlobal() local 269 desc.makeComplete(); in importToGlobal() 270 if( desc.is() ) in importToGlobal() [all …]
|
H A D | pyuno_except.cxx | 93 TypeDescription desc( name ); in createClass() local 94 if( ! desc.is() ) in createClass() 102 sal_Bool isStruct = desc.get()->eTypeClass == typelib_TypeClass_STRUCT; in createClass() 103 sal_Bool isExc = desc.get()->eTypeClass == typelib_TypeClass_EXCEPTION; in createClass() 104 sal_Bool isInterface = desc.get()->eTypeClass == typelib_TypeClass_INTERFACE; in createClass() 110 typeClassToString( (com::sun::star::uno::TypeClass) desc.get()->eTypeClass)); in createClass() 119 typelib_InterfaceTypeDescription *pDesc = (typelib_InterfaceTypeDescription * )desc.get(); in createClass() 131 typelib_CompoundTypeDescription *pDesc = (typelib_CompoundTypeDescription*)desc.get(); in createClass()
|
/aoo41x/main/jurt/com/sun/star/lib/uno/protocols/urp/ |
H A D | urp.java | 407 ITypeDescription[] inSig = desc.getInSignature(); in readRequest() 408 ITypeDescription[] outSig = desc.getOutSignature(); in readRequest() 428 boolean sync = forcedSynchronous || !desc.isOneway(); in readRequest() 481 if (desc.getIndex() == MethodDescription.ID_RELEASE in writeRequest() 490 internal, oid, type, desc, tid, arguments, true); in writeRequest() 497 IMethodDescription desc, ThreadId tid, Object[] arguments, in writeRequest() argument 501 int funId = desc.getIndex(); in writeRequest() 508 boolean moreFlags = forceSync && desc.isOneway(); in writeRequest() 574 ITypeDescription[] inSig = desc.getInSignature(); in writeRequest() 575 ITypeDescription[] outSig = desc.getOutSignature(); in writeRequest() [all …]
|
/aoo41x/main/jurt/com/sun/star/lib/connections/socket/ |
H A D | socketConnector.java | 117 ConnectionDescriptor desc; in connect() local 119 desc = new ConnectionDescriptor(connectionDescription); in connect() 123 if (desc.getHost() == null) { in connect() 133 adr = InetAddress.getAllByName(desc.getHost()); in connect() 140 socket = new Socket(adr[i], desc.getPort()); in connect() 150 if (desc.getTcpNoDelay() != null) { in connect() 151 socket.setTcpNoDelay(desc.getTcpNoDelay().booleanValue()); in connect()
|
H A D | socketAcceptor.java | 124 ConnectionDescriptor desc in accept() local 126 String host = desc.getHost(); in accept() 133 + desc.getPort() + ", " in accept() 134 + desc.getBacklog() + ", " + host); in accept() 137 server = new ServerSocket(desc.getPort(), desc.getBacklog(), in accept() 144 tcpNoDelay = desc.getTcpNoDelay(); in accept()
|
/aoo41x/main/codemaker/source/javamaker/ |
H A D | javatype.cxx | 352 rtl::OStringBuffer desc; in getFieldDescriptor() local 1804 rtl::OString desc; in addDirectArgument() local 2038 MethodDescriptor desc( in handleAggregatingType() local 2045 desc.addParameter( in handleAggregatingType() 2056 desc.getDescriptor()); in handleAggregatingType() 2083 desc.getSignature()); in handleAggregatingType() 2516 rtl::OString desc; in addConstant() local 2521 &desc, &sig, 0); in addConstant() 2617 desc.addParameter( in addConstructor() 2813 desc.getSignature()); in addConstructor() [all …]
|
/aoo41x/main/toolkit/source/layout/core/ |
H A D | helper.cxx | 133 awt::WindowDescriptor desc; in toolkitCreateWidget() local 135 desc.Type = awt::WindowClass_TOP; in toolkitCreateWidget() 138 desc.Type = awt::WindowClass_SIMPLE; in toolkitCreateWidget() 165 desc.Parent = xWinParent; in toolkitCreateWidget() 168 desc.ParentIndex = 0; in toolkitCreateWidget() 170 desc.Bounds.X = 0; in toolkitCreateWidget() 171 desc.Bounds.Y = 0; in toolkitCreateWidget() 172 desc.Bounds.Width = 300; in toolkitCreateWidget() 173 desc.Bounds.Height = 200; in toolkitCreateWidget() 175 desc.WindowAttributes = properties; in toolkitCreateWidget() [all …]
|
/aoo41x/main/stoc/source/registry_tdprovider/ |
H A D | tdiface.cxx | 354 BaseOffset(Reference< XInterfaceTypeDescription2 > const & desc); 359 void calculateBases(Reference< XInterfaceTypeDescription2 > const & desc); 361 void calculate(Reference< XInterfaceTypeDescription2 > const & desc); 367 BaseOffset::BaseOffset(Reference< XInterfaceTypeDescription2 > const & desc) { in BaseOffset() argument 369 calculateBases(desc); in BaseOffset() 373 Reference< XInterfaceTypeDescription2 > const & desc) in calculateBases() 375 Sequence< Reference < XTypeDescription > > bases(desc->getBaseTypes()); in calculateBases() 383 void BaseOffset::calculate(Reference< XInterfaceTypeDescription2 > const & desc) in calculate() argument 385 if (set.insert(desc->getName()).second) { in calculate() 386 calculateBases(desc); in calculate() [all …]
|
/aoo41x/main/bridges/source/cpp_uno/cc5_solaris_sparc64/ |
H A D | cpp2uno.cxx | 418 css::uno::TypeDescription desc(type->ppAllMembers[pos]); in vtableCall() local 419 switch (desc.get()->eTypeClass) { in vtableCall() 424 proxy, desc, direct, in vtableCall() 426 desc.get())->pAttributeTypeRef, in vtableCall() 433 desc.get())->pAttributeTypeRef, in vtableCall() 435 call(proxy, desc, true, NULL, 1, ¶m, callStack); in vtableCall() 476 proxy, desc, direct, in vtableCall() 478 desc.get())->pReturnTypeRef, in vtableCall() 480 desc.get())->nParams, in vtableCall() 482 desc.get())->pParams, in vtableCall()
|
/aoo41x/main/bean/com/sun/star/beans/ |
H A D | LocalOfficeWindow.java | 223 WindowDescriptor desc = new WindowDescriptor(); in createUNOWindowPeer() local 224 desc.Type = WindowClass.TOP; in createUNOWindowPeer() 225 desc.Parent = parentPeer; in createUNOWindowPeer() 226 desc.Bounds = aRect; in createUNOWindowPeer() 227 desc.WindowServiceName = "workwindow"; in createUNOWindowPeer() 228 desc.WindowAttributes = (type == SystemDependent.SYSTEM_WIN32) in createUNOWindowPeer() 230 mWindow = queryAWTToolkit().createWindow(desc); in createUNOWindowPeer()
|
/aoo41x/main/bean/com/sun/star/comp/beans/ |
H A D | LocalOfficeWindow.java | 206 WindowDescriptor desc = new WindowDescriptor(); in createUNOWindowPeer() local 207 desc.Type = WindowClass.TOP; in createUNOWindowPeer() 208 desc.Parent = parentPeer; in createUNOWindowPeer() 209 desc.Bounds = aRect; in createUNOWindowPeer() 210 desc.WindowServiceName = "workwindow"; in createUNOWindowPeer() 211 desc.WindowAttributes = (type == SystemDependent.SYSTEM_WIN32) in createUNOWindowPeer() 213 mWindow = queryAWTToolkit().createWindow(desc); in createUNOWindowPeer()
|
/aoo41x/main/scripting/java/org/openoffice/idesupport/ |
H A D | CommandLineTools.java | 271 ParcelDescriptor desc; 274 desc = new ParcelDescriptor(parcelxml); 275 desclang = desc.getLanguage().toLowerCase(); 280 desc.getLanguage()); 300 ParcelDescriptor desc = new ParcelDescriptor(parcelxml, language); 301 desc.setScriptEntries((ScriptEntry[])scripts.toArray(new ScriptEntry[0])); 310 desc.setLanguageProperty(name, value); 313 desc.write();
|
/aoo41x/main/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/ |
H A D | DocumentDescriptor.java | 216 ByteArrayOutputStream desc = new ByteArrayOutputStream(); in getDescriptor() local 219 desc.write(EndianConverter.writeShort(filler)); in getDescriptor() 220 desc.write(EndianConverter.writeShort(lines)); in getDescriptor() 221 desc.write(EndianConverter.writeShort(length)); in getDescriptor() 222 desc.write(EndianConverter.writeShort(unknown)); in getDescriptor() 228 return desc.toByteArray(); in getDescriptor()
|
/aoo41x/main/qadevOOo/tests/java/ifc/script/ |
H A D | _XEventAttacherManager.java | 81 ScriptEventDescriptor desc; field in _XEventAttacherManager 96 desc = new ScriptEventDescriptor( in _registerScriptEvent() 101 oObj.registerScriptEvent(index, desc); in _registerScriptEvent() 177 contains(res, desc) && containsArray(res, descs)); in _getScriptEvents() 353 oObj.revokeScriptEvent(index, desc.ListenerType, in _revokeScriptEvent() 354 desc.EventMethod, ""); in _revokeScriptEvent() 358 tRes.tested("revokeScriptEvent()", !contains(res, desc)); in _revokeScriptEvent()
|
/aoo41x/main/qadevOOo/tests/java/ifc/sheet/ |
H A D | _XSheetFilterableEx.java | 56 XSheetFilterDescriptor desc = oObj.createFilterDescriptorByObject( in _createFilterDescriptorByObject() local 59 if (desc != null) { in _createFilterDescriptorByObject() 60 res &= checkFilterDescriptor(desc); in _createFilterDescriptorByObject() 73 public boolean checkFilterDescriptor(XSheetFilterDescriptor desc) { in checkFilterDescriptor() argument 74 TableFilterField[] fields = desc.getFilterFields(); in checkFilterDescriptor()
|
H A D | _XSubTotalCalculatable.java | 38 protected XSubTotalDescriptor desc; field in _XSubTotalCalculatable 70 oObj.applySubTotals(desc, true); in _applySubTotals() 89 desc = oObj.createSubTotalDescriptor(true); in _createSubTotalDescriptor() 95 desc.addNew(columns, 0); in _createSubTotalDescriptor()
|
H A D | _XSheetFilterable.java | 42 protected XSheetFilterDescriptor desc; field in _XSheetFilterable 61 desc = oObj.createFilterDescriptor(true); in _createFilterDescriptor() 74 desc.setFilterFields(tff); in _createFilterDescriptor() 88 oObj.filter(desc); in _filter()
|
/aoo41x/main/bridges/source/cpp_uno/shared/ |
H A D | vtables.cxx | 96 typelib_TypeDescription * desc = 0; in doGetVtableSlot() local 98 &desc, member->pBaseRef); in doGetVtableSlot() 100 desc != 0 && desc->eTypeClass == member->aBase.aBase.eTypeClass); in doGetVtableSlot() 104 member = reinterpret_cast< T * >(desc); in doGetVtableSlot()
|
/aoo41x/main/i18npool/source/indexentry/ |
H A D | indexentrysupplier_default.cxx | 156 if (keys[wgt].desc.getLength()) in getIndexDescription() 157 return keys[wgt].desc; in getIndexDescription() 199 keys[key_count].desc = OUString(); in makeIndexKeys() 227 keys[key_count-1].desc = keyStr.copy(i+1, end-i-1); in makeIndexKeys() 232 keys[key_count++].desc=OUString(); in makeIndexKeys() 240 keys[key_count++].desc = OUString(); in makeIndexKeys()
|
/aoo41x/main/sysui/desktop/slackware/ |
H A D | makefile.mk | 72 %$/install$/slack-desc : slack-desc 96 $(MENUFILES) : makefile.mk slack-desc update-script $(COMMONMISC)$/{$(PRODUCTLIST)}$/build.flag 101 …dmake $(MISC)$/$(@:b)$/usr/share/applications $(MISC)$/$(@:b)$/install$/slack-desc $(MISC)$/$(@:b)…
|
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/ |
H A D | ConverterInfoReader.java | 171 String desc = null; in parseConverterNode() local 201 desc = getTextValue(detailElement); in parseConverterNode() 223 desc, version, vendor,classImpl); in parseConverterNode() 228 desc, version, vendor,classImpl, in parseConverterNode()
|
/aoo41x/main/extensions/source/ole/ |
H A D | oleobjw.cxx | 1554 TypeDescription desc= getInterfaceMemberDescOfCurrentCall(sName); in getMethodInfo() local 1555 if( desc.is()) in getMethodInfo() 1557 typelib_TypeDescription* pMember= desc.get(); in getMethodInfo() 1566 if( desc.is()) in getAttributeInfo() 1568 typelib_TypeDescription* pMember= desc.get(); in getAttributeInfo() 2384 if (desc->vt == VT_PTR) in getElementTypeDesc() 2386 _type = getElementTypeDesc(desc->lptdesc); in getElementTypeDesc() 2389 else if (desc->vt == VT_SAFEARRAY) in getElementTypeDesc() 2391 _type = getElementTypeDesc(desc->lptdesc); in getElementTypeDesc() 2394 else if (desc->vt == VT_USERDEFINED) in getElementTypeDesc() [all …]
|