Home
last modified time | relevance | path

Searched refs:sType (Results 26 – 50 of 123) sorted by relevance

12345

/trunk/main/xmloff/source/script/
H A DXMLEventExport.cxx235 OUString sType; in ExportEvent() local
236 pValues[nVal].Value >>= sType; in ExportEvent()
238 if (aHandlerMap.count(sType)) in ExportEvent()
253 aHandlerMap[sType]->Export(rExport, aEventQName, in ExportEvent()
258 if (! sType.equalsAsciiL("None", sizeof("None")-1)) in ExportEvent()
/trunk/main/dbaccess/source/core/api/
H A Dtablecontainer.cxx229 ::rtl::OUString sType,sDescription; in createObject()
239 sType = xRow->getString(4); in createObject()
249 ,sType in createObject()
408 ::rtl::OUString sType; in dropObject()
409 xTable->getPropertyValue(PROPERTY_TYPE) >>= sType; in dropObject()
410 bIsView = sType.equalsIgnoreAsciiCase(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("VIEW"))); in dropObject()
H A Dviewcontainer.cxx231 ::rtl::OUString sType; in elementInserted()
232 xProp->getPropertyValue(PROPERTY_TYPE) >>= sType; in elementInserted()
233 if ( sType == ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("VIEW")) ) in elementInserted()
/trunk/main/oox/source/drawingml/
H A Dtextfield.cxx64 … const Reference< XModel > & xModel, const OUString & sType ) in lclCreateTextFields() argument
69 if( sType.compareToAscii( "datetime", 8 ) == 0) in lclCreateTextFields()
71 OString s = ::rtl::OUStringToOString( sType, RTL_TEXTENCODING_UTF8); in lclCreateTextFields()
128 else if ( sType.compareToAscii( "slidenum" ) == 0 ) in lclCreateTextFields()
H A Dgraphicshapecontext.cxx83 OUString sType(GetShapeType(nType)); in createFastChildContext() local
85 if (sType.getLength() > 0) in createFastChildContext()
86 pCstmShpProps->setShapePresetType(sType); in createFastChildContext()
/trunk/main/dbaccess/source/filter/xml/
H A DxmlColumn.cxx98 ::rtl::OUString sType; in DBG_NAME()
121 sType = sValue; in DBG_NAME()
122 OSL_ENSURE(sType.getLength(),"No type name set"); in DBG_NAME()
125 if ( sValue.getLength() && sType.getLength() ) in DBG_NAME()
/trunk/main/svtools/source/filter/
H A DFilterConfigCache.cxx213 xFilterSet->getPropertyValue(STYPE) >>= aEntry.sType; in ImplInit()
235 xTypeAccess->getByName( aEntry.sType ) >>= xTypeSet; in ImplInit()
319 aEntry.sType = sExtension; in ImplInitSmart()
399 if ( aIter->sType.equalsIgnoreAsciiCase( rType ) ) in GetImportFormatNumberForTypeName()
437 return aImport[ nFormat ].sType; in GetImportFilterType()
521 if ( aIter->sType.equalsIgnoreAsciiCase( rType ) ) in GetExportFormatNumberForTypeName()
/trunk/main/svx/source/toolbars/
H A Dfontworkbar.cxx154 const rtl::OUString sType( RTL_CONSTASCII_USTRINGPARAM ( "Type" ) ); in SetFontWorkShapeTypeState() local
156 Any* pAny = aGeometryItem.GetPropertyValueByName( sType ); in SetFontWorkShapeTypeState()
349 const rtl::OUString sType( RTL_CONSTASCII_USTRINGPARAM ( "Type" ) ); in GetGeometryForCustomShape() local
352 aPropVal.Name = sType; in GetGeometryForCustomShape()
392 com::sun::star::uno::Any* pAny = rSourceGeometry.GetPropertyValueByName( sType ); in GetGeometryForCustomShape()
395 aPropVal_.Name = sType; in GetGeometryForCustomShape()
/trunk/main/xmloff/source/text/
H A Dtxtparae.cxx2239 rtl::OUString sType; in exportTextRangeEnumeration() local
2242 if( sType.equals(sText)) in exportTextRangeEnumeration()
2246 else if( sType.equals(sTextField)) in exportTextRangeEnumeration()
2268 else if( sType.equals( sFrame ) ) in exportTextRangeEnumeration()
2287 else if (sType.equals(sFootnote)) in exportTextRangeEnumeration()
2292 else if (sType.equals(sBookmark)) in exportTextRangeEnumeration()
2296 else if (sType.equals(sReferenceMark)) in exportTextRangeEnumeration()
2304 else if (sType.equals(sRedline)) in exportTextRangeEnumeration()
2309 else if (sType.equals(sRuby)) in exportTextRangeEnumeration()
2313 else if (sType.equals(sMeta)) in exportTextRangeEnumeration()
[all …]
/trunk/main/cui/source/dialogs/
H A Dlinkdlg.cxx197 String sType, sLink; in IMPL_LINK() local
220 pLinkMgr->GetDisplayNames( pLink, &sType, &aFileName, pLinkNm, pFilter ); in IMPL_LINK()
224 TypeName().SetText( sType ); in IMPL_LINK()
354 String sType, sFile, sLinkName; in IMPL_LINK() local
358 pLinkMgr->GetDisplayNames( pLink, &sType, &sFile, 0, 0 ); in IMPL_LINK()
379 pLinkMgr->GetDisplayNames( pLink, &sType, &sFile, &sLinkName, &sFilter ); in IMPL_LINK()
/trunk/main/codemaker/source/idlmaker/
H A Didltype.cxx401 OString sType(checkRealBaseType(type, sal_True)); in dumpType() local
402 sal_uInt32 index = sType.lastIndexOf(']'); in dumpType()
405 OString relType = (index > 0 ? (sType).copy(index+1) : type); in dumpType()
493 OString sType( checkRealBaseType(type, sal_True) ); in dumpIdlGetType() local
494 sal_uInt32 index = sType.lastIndexOf(']'); in dumpIdlGetType()
495 OString relType = (index > 0 ? (sType).copy(index+1) : type); in dumpIdlGetType()
1638 StructureType sType(reader, typeName, typeMgr, typeDependencies); in produceType() local
1639 ret = sType.dump(pOptions); in produceType()
1641 ret = sType.dumpDependedTypes(pOptions); in produceType()
/trunk/main/ooxml/source/framework/JavaPartManager/src/org/apache/openoffice/ooxml/framework/part/
H A DRelationshipType.java61 public static RelationshipType CreateFromString (final String sType) in CreateFromString() argument
63 switch(sType) in CreateFromString()
129 System.err.printf(sType +" is not yet supported\n"); in CreateFromString()
/trunk/main/sfx2/source/view/
H A Dviewsh.cxx387 ::rtl::OUString sType ; in impl_searchFormatTypeForApp()
394sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "writer_MS_Word_97" )); in impl_searchFormatTypeForApp()
397 sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "calc_MS_Excel_97" )); in impl_searchFormatTypeForApp()
400sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "impress_MS_PowerPoint_97" )); in impl_searchFormatTypeForApp()
403sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "impress_MS_PowerPoint_97" )); in impl_searchFormatTypeForApp()
410 sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "writer8" )); in impl_searchFormatTypeForApp()
413 sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "calc8" )); in impl_searchFormatTypeForApp()
416 sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "draw8" )); in impl_searchFormatTypeForApp()
419 sType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "impress8" )); in impl_searchFormatTypeForApp()
424 return sType; in impl_searchFormatTypeForApp()
/trunk/main/xmloff/source/core/
H A Dattrlist.cxx94 : sType( GetXMLToken(XML_CDATA) ) in SvXMLAttributeList()
115 return sType; in getTypeByIndex()
125 return sType; in getTypeByName()
149 : sType( GetXMLToken(XML_CDATA) ) in SvXMLAttributeList()
/trunk/main/sdext/source/presenter/
H A DPresenterToolBar.cxx814 OUString sType; in ProcessEntry() local
815 if ( ! (PresenterConfigurationAccess::GetProperty(rxProperties, A2S("Type")) >>= sType)) in ProcessEntry()
833 if (sType.equalsAscii("Button")) in ProcessEntry()
835 else if (sType.equalsAscii("CurrentTimeLabel")) in ProcessEntry()
837 else if (sType.equalsAscii("PresentationTimeLabel")) in ProcessEntry()
839 else if (sType.equalsAscii("VerticalSeparator")) in ProcessEntry()
841 else if (sType.equalsAscii("HorizontalSeparator")) in ProcessEntry()
843 else if (sType.equalsAscii("Label")) in ProcessEntry()
845 else if (sType.equalsAscii("ChangeOrientation")) in ProcessEntry()
/trunk/main/unodevtools/source/skeletonmaker/
H A Djavatypemaker.cxx88 OString sType(codemaker::java::translateUnoToJavaType( in printType() local
90 if ( sType.indexOf("java.lang.") == 0 ) in printType()
91 sType = sType.copy(10); in printType()
92 o << sType.getStr(); in printType()
/trunk/main/sw/source/ui/envelp/
H A Dlabfmt.cxx674 String sType(aTypeED.GetText()); in IMPL_LINK() local
675 if(rCfg.HasLabel(sMake, sType)) in IMPL_LINK()
680 sQuery.SearchAndReplace(C2S("%2"), sType); in IMPL_LINK()
688 rLabRec.aType = sType; in IMPL_LINK()
689 rCfg.SaveLabel(sMake, sType, rLabRec); in IMPL_LINK()
/trunk/main/filter/source/config/cache/
H A Dfiltercache.hxx809 const ::rtl::OUString& sType)
1022 ::rtl::OUString impl_searchFrameLoaderForType(const ::rtl::OUString& sType) const;
1023 ::rtl::OUString impl_searchContentHandlerForType(const ::rtl::OUString& sType) const;
H A Dcacheitem.hxx225 ::rtl::OUString sType;
243 : sType (::rtl::OUString()) in FlatDetectionInfo()
/trunk/main/xmlsecurity/source/xmlsec/mscrypt/
H A Dx509certificate_mscryptimpl.cxx78 OUString sType = rRawString.copy(nTypeNameStart, i - nTypeNameStart); in findTypeInDN() local
79 sType = sType.trim(); in findTypeInDN()
80 if (sType.equalsIgnoreAsciiCase(sTypeName)) in findTypeInDN()
/trunk/main/framework/inc/classes/
H A Dfiltercachedata.hxx274 sType = ::rtl::OUString(); in impl_clear()
289 sType = rCopy.sType ; in impl_copy()
308 ::rtl::OUString sType ;
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/graphical/
H A DMSOfficePostscriptCreator.java958 String sType = "word"; // default in getXMLDocumentFormat() local
976 sType = "word"; in getXMLDocumentFormat()
980 sType = "excel"; in getXMLDocumentFormat()
986 sType = "word"; // default in getXMLDocumentFormat()
993 return sType; in getXMLDocumentFormat()
/trunk/main/oox/inc/oox/drawingml/
H A Dtextfield.hxx45 inline void setType( const ::rtl::OUString& sType ) { msType = sType; } in setType() argument
/trunk/main/sw/source/filter/html/
H A Dhtmlcss1.cxx1737 String sType; in NewStyle() local
1744 sType = pOption->GetString(); in NewStyle()
1747 bIgnoreRawData = sType.Len() && in NewStyle()
1748 !sType.GetToken(0,';').EqualsAscii(sCSS_mimetype); in NewStyle()
1832 String sRel, sHRef, sType; in InsertLink() local
1847 sType = pOption->GetString(); in InsertLink()
1853 ( !sType.Len() || in InsertLink()
1854 sType.GetToken(0,';').EqualsAscii(sCSS_mimetype) ) ) in InsertLink()
/trunk/main/svx/source/svdraw/
H A Dsvdoashp.cxx110 const rtl::OUString sType( RTL_CONSTASCII_USTRINGPARAM ( "Type" ) ); in ImpGetCustomShapeType() local
112 Any* pAny = rGeometryItem.GetPropertyValueByName( sType ); in ImpGetCustomShapeType()
436 const rtl::OUString sType( RTL_CONSTASCII_USTRINGPARAM ( "Type" ) ); in UseNoFillStyle() local
438 Any* pAny = rGeometryItem.GetPropertyValueByName( sType ); in UseNoFillStyle()
662 const rtl::OUString sType( RTL_CONSTASCII_USTRINGPARAM ( "Type" ) ); in MergeDefaultAttributes() local
672 aPropVal.Name = sType; in MergeDefaultAttributes()
678 Any *pAny = aGeometryItem.GetPropertyValueByName( sType ); in MergeDefaultAttributes()
1156 const rtl::OUString sType( RTL_CONSTASCII_USTRINGPARAM ( "Type" ) ); in IsDefaultGeometry() local
1159 Any *pAny = aGeometryItem.GetPropertyValueByName( sType ); in IsDefaultGeometry()
3548 const rtl::OUString sType( RTL_CONSTASCII_USTRINGPARAM ( "Type" ) ); in GetCustomShapeName() local
[all …]

Completed in 176 milliseconds

12345