| /trunk/main/xmloff/source/forms/ |
| H A D | property_meta_data.cxx | 92 const PropertyDescription* desc = lcl_getPropertyMetaData(); in lcl_getPropertyDescriptions() local 93 while ( desc->propertyName.getLength() != 0 ) in lcl_getPropertyDescriptions() 95 s_propertyDescriptionsByName[ desc->propertyName ] = desc; in lcl_getPropertyDescriptions() 96 ++desc; in lcl_getPropertyDescriptions() 112 const PropertyDescription* desc = lcl_getPropertyMetaData(); in lcl_getIndexedPropertyGroups() local 113 while ( desc->propertyName.getLength() != 0 ) in lcl_getIndexedPropertyGroups() 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() 133 const PropertyDescription* desc = lcl_getPropertyMetaData(); in getReverseTokenLookup() local [all …]
|
| /trunk/main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/ |
| H A D | TypeDescription.java | 71 TypeDescription desc = (TypeDescription) type.getTypeDescription(); in getTypeDescription() local 72 if (desc == null) { in getTypeDescription() 73 desc = getTypeDescription(type.getTypeName()); in getTypeDescription() 74 type.setTypeDescription(desc); in getTypeDescription() 76 return desc; in getTypeDescription() 239 TypeDescription desc = cache.get(typeName); in get() local 240 if (desc == null) { in get() 241 desc = create(type); in get() 242 cache.put(desc); in get() 244 return desc; in get() [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()
|
| /trunk/main/pyuno/source/module/ |
| H A D | pyuno_type.cxx | 186 TypeDescription desc( strTypeName ); in PyEnum2Enum() local 187 if( desc.is() ) in PyEnum2Enum() 189 if(desc.get()->eTypeClass != typelib_TypeClass_ENUM ) in PyEnum2Enum() 194 typeClassToString( (com::sun::star::uno::TypeClass) desc.get()->eTypeClass)); in PyEnum2Enum() 199 desc.makeComplete(); in PyEnum2Enum() 201 typelib_EnumTypeDescription *pEnumDesc = (typelib_EnumTypeDescription*) desc.get(); in PyEnum2Enum() 217 ret = Any( &pEnumDesc->pEnumValues[i], desc.get()->pWeakRef ); in PyEnum2Enum() 243 TypeDescription desc( name ); in PyType2Type() local 244 if( ! desc.is() ) in PyType2Type() 251 if( desc.get()->eTypeClass != (typelib_TypeClass) *(sal_Int32*)enumValue.getValue() ) in PyType2Type() [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()
|
| /trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/ |
| H A D | urp.java | 406 IMethodDescription desc = inL1Type.getMethodDescription(functionId); in readRequest() local 407 ITypeDescription[] inSig = desc.getInSignature(); in readRequest() 408 ITypeDescription[] outSig = desc.getOutSignature(); in readRequest() 428 boolean sync = forcedSynchronous || !desc.isOneway(); in readRequest() 431 inL1Tid, new PendingRequests.Item(internal, desc, args)); in readRequest() 434 inL1Tid, true, inL1Oid, inL1Type, desc, sync, cc, false, null, args, in readRequest() 479 IMethodDescription desc = type.getMethodDescription(function); in writeRequest() local 481 if (desc.getIndex() == MethodDescription.ID_RELEASE in writeRequest() 485 new QueuedRelease(internal, oid, type, desc, tid)); in writeRequest() 490 internal, oid, type, desc, tid, arguments, true); in writeRequest() [all …]
|
| /trunk/main/codemaker/source/javamaker/ |
| H A D | javatype.cxx | 352 rtl::OStringBuffer desc; in getFieldDescriptor() local 356 manager, type, false, false, dependencies, &desc, &sig, &needsSig, in getFieldDescriptor() 358 *descriptor = desc.makeStringAndClear(); in getFieldDescriptor() 1128 rtl::OString desc(descBuf.makeStringAndClear()); in addFieldInit() local 1132 desc); in addFieldInit() 1133 code->instrPutfield(className, fieldName, desc); in addFieldInit() 1146 rtl::OStringBuffer desc; in addFieldInit() local 1150 dependencies, &desc, 0, 0, 0); in addFieldInit() 1152 className, fieldName, desc.makeStringAndClear()); in addFieldInit() 1178 rtl::OStringBuffer desc; in addFieldInit() local [all …]
|
| /trunk/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 …]
|
| /trunk/main/jurt/java/jurt/src/main/java/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()
|
| /trunk/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 …]
|
| /trunk/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()
|
| /trunk/main/bean/java/officebean/src/main/java/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()
|
| /trunk/main/bean/java/officebean/src/main/java/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()
|
| /trunk/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();
|
| /trunk/main/xmerge/java/pocketword/src/main/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()
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/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()
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/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()
|
| /trunk/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()
|
| /trunk/main/test/source/cpp/ |
| H A D | officeconnection.cxx | 59 rtl::OUString desc; in setUp() local 66 desc = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("pipe,name=")) + in setUp() 75 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("-accept=")) + desc + in setUp() 105 desc = argSoffice.copy(RTL_CONSTASCII_LENGTH("connect:")); in setUp() 120 desc + in setUp()
|
| /trunk/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()
|
| /trunk/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)…
|
| /trunk/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() 1565 TypeDescription desc= getInterfaceMemberDescOfCurrentCall(sName); in getAttributeInfo() local 1566 if( desc.is()) in getAttributeInfo() 1568 typelib_TypeDescription* pMember= desc.get(); in getAttributeInfo() 2380 VARTYPE IUnknownWrapper_Impl::getElementTypeDesc(const TYPEDESC *desc) in getElementTypeDesc() argument 2384 if (desc->vt == VT_PTR) in getElementTypeDesc() 2386 _type = getElementTypeDesc(desc->lptdesc); in getElementTypeDesc() 2389 else if (desc->vt == VT_SAFEARRAY) in getElementTypeDesc() [all …]
|