Home
last modified time | relevance | path

Searched refs:name (Results 126 – 150 of 2286) sorted by relevance

12345678910>>...92

/trunk/main/shell/source/unix/sysshell/
H A Drecently_used_file_handler.cxx118 bool has_group(const string_t& name) const in has_group()
124 std::bind2nd(str_icase_cmp(), name))); in has_group()
176 …void write_xml_tag(const string_t& name, const string_t& value, const recently_used_file& file) co… in write_xml_tag()
178 write_xml_start_tag(name, file); in write_xml_tag()
181 write_xml_end_tag(name, file); in write_xml_tag()
184 void write_xml_tag(const string_t& name, const recently_used_file& file) const in write_xml_tag()
187 file.write(name.c_str(), name.length()); in write_xml_tag()
191 …void write_xml_start_tag(const string_t& name, const recently_used_file& file, bool linefeed = fal… in write_xml_start_tag()
194 file.write(name.c_str(), name.length()); in write_xml_start_tag()
201 void write_xml_end_tag(const string_t& name, const recently_used_file& file) const in write_xml_end_tag()
[all …]
/trunk/main/configmgr/source/
H A Ddata.cxx97 return name; in createSegment()
102 for (sal_Int32 i = 0; i < name.getLength(); ++i) { in createSegment()
103 sal_Unicode c = name[i]; in createSegment()
128 index >= 0 && index <= path.getLength() && name != 0 && in parseSegment()
135 *name = path.copy(index, i - index); in parseSegment()
155 !decode(path, i, j, name)) in parseSegment()
164 rtl::OUString const & component, rtl::OUString const & name) in fullTemplateName() argument
172 name), in fullTemplateName()
177 buf.append(name); in fullTemplateName()
198 int layer, NodeMap const & map, rtl::OUString const & name) in findNode() argument
[all …]
/trunk/main/sal/inc/osl/
H A Dmodule.h37 #define SAL_MODULENAME(name) SAL_DLLPREFIX name SAL_DLLEXTENSION argument
39 #define SAL_MODULENAME(name) name SAL_DLLEXTENSION
43 #define SAL_MODULENAME_WITH_VERSION(name, version) name version SAL_DLLEXTENSION argument
47 #define SAL_MODULENAME_WITH_VERSION(name, version) SAL_DLLPREFIX name ".dylib"
49 #define SAL_MODULENAME_WITH_VERSION(name, version) SAL_DLLPREFIX name SAL_DLLEXTENSION "." version
/trunk/main/xmlhelp/source/treeview/
H A Dtvread.cxx393 rtl::OUString name( aName ); in getByHierarchicalName() local
399 return getByName( name ); in getByHierarchicalName()
410 rtl::OUString name( aName ); in hasByHierarchicalName() local
416 return hasByName( name ); in hasByHierarchicalName()
431 const XML_Char *name, in start_handler() argument
469 const XML_Char *name ) in end_handler() argument
471 (void)name; in end_handler()
608 rtl::OUString name( aName ); in getByHierarchicalName() local
621 return getByName( name ); in getByHierarchicalName()
631 rtl::OUString name( aName ); in hasByHierarchicalName() local
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DStyle.java42 protected String name = null; field in Style
73 name = "DEFAULT_STYLE"; in Style()
82 name = attr.getNodeValue(); in Style()
101 public Style(String name, String family, String parent, StyleCatalog sc) { in Style() argument
103 this.name = name; in Style()
127 return name; in getName()
137 name = newName; in setName()
171 return new Style(name, family, parent, sc); in getResolved()
184 public Node createNode(org.w3c.dom.Document parentDoc, String name) { in createNode() argument
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOColumnContainer.java78 protected XPropertySet createObject(String name) throws SQLException { in createObject() argument
84 ColumnDescription columnDescription = columnDescriptions.get(name); in createObject()
89 if (newColumnDescription.columnName.equals(name)) { in createObject()
90 columnDescriptions.put(name, newColumnDescription); in createObject()
94 columnDescription = columnDescriptions.get(name); in createObject()
97 throw new SQLException("No column " + name + " found"); in createObject()
100 ExtraColumnInfo columnInfo = extraColumnInfo.get(name); in createObject()
104 columnInfo = extraColumnInfo.get(name); in createObject()
115 …llable != ColumnValue.NO_NULLS && primaryKeyColumns != null && primaryKeyColumns.hasByName(name)) { in createObject()
154 protected void dropObject(int index, String name) throws SQLException { in dropObject() argument
[all …]
H A DOColumn.java68 final String name, in OColumn() argument
80 super(name, isCaseSensitive); in OColumn()
95 …registerProperty(PropertyIds.TYPENAME.name, PropertyIds.TYPENAME.id, Type.STRING, PropertyAttribut… in registerProperties()
109 …registerProperty(PropertyIds.DESCRIPTION.name, PropertyIds.DESCRIPTION.id, Type.STRING, PropertyAt… in registerProperties()
123 …registerProperty(PropertyIds.DEFAULTVALUE.name, PropertyIds.DEFAULTVALUE.id, Type.STRING, Property… in registerProperties()
137 …registerProperty(PropertyIds.PRECISION.name, PropertyIds.PRECISION.id, Type.LONG, PropertyAttribut… in registerProperties()
151 …registerProperty(PropertyIds.TYPE.name, PropertyIds.TYPE.id, Type.LONG, PropertyAttribute.READONLY, in registerProperties()
165 …registerProperty(PropertyIds.SCALE.name, PropertyIds.SCALE.id, Type.LONG, PropertyAttribute.READON… in registerProperties()
179 …registerProperty(PropertyIds.ISNULLABLE.name, PropertyIds.ISNULLABLE.id, Type.LONG, PropertyAttrib… in registerProperties()
207 …registerProperty(PropertyIds.ISROWVERSION.name, PropertyIds.ISROWVERSION.id, Type.BOOLEAN, Propert… in registerProperties()
[all …]
/trunk/main/pyuno/source/module/
H A Duno.py241 def _uno_import( name, *optargs, **kwargs ): argument
244 return _g_delegatee( name, *optargs, **kwargs )
250 modnames = name.split( "." )
265 d[x] = pyuno.getTypeByName( name + "." + x[6:len(x)] )
271 d[x] = pyuno.getClass( name + "." + x )
275 d[x] = Enum( name , x )
279 d[x] = getConstantByName( name + "." + x )
296 def _uno_struct__getattr__(self,name): argument
297 return getattr(self.__dict__["value"],name)
300 def _uno_struct__setattr__(self,name,value): argument
[all …]
H A Dpyuno_type.cxx112 static PyRef getClass( const Runtime & r , const char * name) in getClass() argument
238 OUString name( pyString2ustring( pyName.get() ) ); in PyType2Type() local
239 TypeDescription desc( name ); in PyType2Type()
264 OUString name = pyString2ustring(str); in importToGlobal() local
268 TypeDescription desc(name ); in importToGlobal()
302 PyRef exc = getClass( name, runtime ); in importToGlobal()
315 const char *name = PyUnicode_AsUTF8(str); in importToGlobal() local
318 const char *name = PyBytes_AsString( pUtf8.get() ); in importToGlobal() local
320 const char *name = PyBytes_AsString(str); in importToGlobal() local
355 buf.append( name ); in importToGlobal()
[all …]
/trunk/main/i18npool/source/transliteration/
H A Dnumtotext_cjk.cxx34 #define TRANSLITERATION_NUMTOTEXT( name, number ) \ argument
35 NumToText##name::NumToText##name() \
39 transliterationName = "NumToText"#name; \
40 implementationName = "com.sun.star.i18n.Transliteration.NumToText"#name; \
65 #define TRANSLITERATION_NUMTOTEXT( name, _table, recycle ) \ argument
66 NumToText##name::NumToText##name() \
71 transliterationName = "NumToText"#name; \
72 implementationName = "com.sun.star.i18n.Transliteration.NumToText"#name; \
/trunk/main/scaddins/source/datefunc/
H A Ddatefunc.src36 String 2 // name of parameter 1 DiffWeeks
44 String 4 // name of parameter 2 DiffWeeks
52 String 6 // name of parameter 3 DiffWeeks
68 String 2 // name of parameter 1 DiffMonths
76 String 4 // name of parameter 2 DiffMonths
84 String 6 // name of parameter 3 DiffMonths
100 String 2 // name of parameter 1 DiffYears
108 String 4 // name of parameter 2 DiffYears
116 String 6 // name of parameter 3 DiffYears
132 String 2 // name of parameter 1 IsLeapYear
[all …]
/trunk/main/forms/source/xforms/xpathlib/
H A Dxpathlib.cxx60 const char *name = (char *)xname; in xforms_lookupFunc() local
63 else if ((strcmp("if", name))==0) in xforms_lookupFunc()
65 else if ((strcmp("avg", name))==0) in xforms_lookupFunc()
67 else if ((strcmp("min", name))==0) in xforms_lookupFunc()
69 else if ((strcmp("max", name))==0) in xforms_lookupFunc()
73 else if ((strcmp("index", name))==0) in xforms_lookupFunc()
75 else if ((strcmp("property", name))==0) in xforms_lookupFunc()
77 else if ((strcmp("now", name))==0) in xforms_lookupFunc()
83 else if ((strcmp("seconds", name))==0) in xforms_lookupFunc()
85 else if ((strcmp("months", name))==0) in xforms_lookupFunc()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/
H A D_FunctionDescription.java114 public void tryChangeProp( String name ) { in tryChangeProp() argument
123 gValue = oObj.getPropertyValue( name ); in tryChangeProp()
128 oObj.setPropertyValue( name, ValueToSet ); in tryChangeProp()
129 sValue = oObj.getPropertyValue( name ); in tryChangeProp()
133 log.println( "Value for '"+name+"' hasn't changed. OK." ); in tryChangeProp()
134 tRes.tested( name, true ); in tryChangeProp()
137 log.println( "Property '" + name + in tryChangeProp()
139 tRes.tested( name, false ); in tryChangeProp()
144 "Exception occurred while testing property '" + name + "'" ); in tryChangeProp()
146 tRes.tested( name, false ); in tryChangeProp()
/trunk/main/offapi/com/sun/star/embed/
H A DXStorage.idl96 specified name exists in a storage.
445 the name of the element to check
452 there is no element with such name
476 the name of the element to check
483 there is no element with such name
501 the name of the element to remove
510 there is no element with such name
530 the old name of the element to rename
533 the new name of the element to rename
571 the name of the element in this storage
[all …]
/trunk/main/solenv/bin/modules/
H A DExtensionsLst.pm310 $name = $1;
318 $name = $1;
323 $name = $url_name;
327 return [$protocol, $name, $URL, $md5];
416 my ($protocol, $name, $URL, $md5sum) = @{$entry};
422 my $candidate = File::Spec->catfile($download_path, $name);
445 print "extension $name has wrong MD5 and will be updated\n";
469 my ($protocol, $name, $URL, $md5sum) = @{$entry};
472 my $filename = File::Spec->catfile($download_path, $name);
587 my ($protocol, $name, $URL, $md5sum) = @{$entry};
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/validation/
H A D_XValidatableFormComponent.java169 String name = property.Name; in getPropsToTest() local
179 name.equals("TextUserDefinedAttributes") in getPropsToTest()
180 || name.equals("ReferenceDevice") in getPropsToTest()
181 || name.equals("ParaUserDefinedAttributes") in getPropsToTest()
188 name.equals("Value") || name.equals("Time") in getPropsToTest()
189 || name.equals("Date") in getPropsToTest()
192 bound = (name + ";"); in getPropsToTest()
196 isWritable && isNotNull && (name.indexOf("Format") < 0) in getPropsToTest()
197 && !name.equals("Enabled") in getPropsToTest()
200 bound += (name + ";"); in getPropsToTest()
/trunk/main/filter/source/placeware/
H A Dzip.cxx41 OString name; /* the name we used */ member
129 sal_Int32 len = zf_lfhSIZE + e->name.getLength(); in writeDummyLocalHeader()
155 e->fileLen = e->endOffset - e->offset - zf_lfhSIZE - e->name.getLength(); in writeLocalHeader()
169 writeShort((sal_Int16) e->name.getLength()); // name length in writeLocalHeader()
175 mnRC = mrFile.write( e->name.getStr(), e->name.getLength(), nWritten ); // file name in writeLocalHeader()
176 OSL_ASSERT( nWritten == (sal_uInt64)e->name.getLength() ); in writeLocalHeader()
197 writeShort((sal_Int16) e->name.getLength()); // name length in writeCentralDir()
207 mrFile.write( e->name.getStr(), e->name.getLength(), nWritten ); // file name in writeCentralDir()
208 OSL_ASSERT( nWritten == (sal_uInt64)e->name.getLength() ); in writeCentralDir()
265 e->name = rName; in addFile()
/trunk/main/registry/inc/registry/
H A Dreflwrit.hxx151 const ::rtl::OUString& name,
169 const ::rtl::OUString& name,
187 const ::rtl::OUString& name,
220 const ::rtl::OUString& name,
278 const ::rtl::OUString& name, in setFieldData()
290 const ::rtl::OUString& name, in setMethodData()
297 …m_pApi->setMethodData(m_hImpl, index, name.pData, returnTypeName.pData, mode, paramCount, excCount… in setMethodData()
319 const ::rtl::OUString& name, in setParamData()
322 m_pApi->setParamData(m_hImpl, index, paramIndex, type.pData, name.pData, mode); in setParamData()
344 const ::rtl::OUString& name, in setReferenceData()
[all …]
/trunk/main/solenv/bin/
H A Drelocate121 my ($name, $value) = ($1, $2);
123 if ($name eq 'SRC_ROOT') {
144 my $name;
145 while ($name = readdir ($misc_dir)) {
148 if ($name =~ m/\.dpcc$/ || $name =~ m/\.dpslo$/ || $name =~ m/\.dpobj$/) {
149 unlink ("$path/$name");
163 my $name;
164 while ($name = readdir ($top_dir)) {
166 opendir ($sub_dir, "$new_root/$name") || next;
174 print "$name ";
[all …]
/trunk/main/vcl/source/gdi/
H A Dimpimagetree.cxx62 rtl::OUString const & name, sal_Int32 pos, rtl::OUString const & locale) in createPath() argument
64 rtl::OUStringBuffer b(name.copy(0, pos + 1)); in createPath()
66 b.append(name.copy(pos)); in createPath()
151 if (iconCacheLookup(name, localized, bitmap)) { in loadImage()
158 paths.push_back(name); in loadImage()
160 sal_Int32 pos = name.lastIndexOf('/'); in loadImage()
164 paths.push_back(createPath(name, pos, loc.Language)); in loadImage()
176 createPath(name, pos, b.makeStringAndClear())); in loadImage()
192 m_iconCache[name.intern()] = std::make_pair(localized, bitmap); in loadImage()
295 rtl::OUString const & name, bool localized, BitmapEx & bitmap) in iconCacheLookup() argument
[all …]
/trunk/main/sal/osl/unx/
H A Dpipe.c168 sal_Char name[PATH_MAX + 1]; in osl_psz_createPipe() local
189 snprintf(name, sizeof(name), SECPIPENAMEMASK, pPath, Ident, pszPipeName); in osl_psz_createPipe()
193 snprintf(name, sizeof(name), PIPENAMEMASK, pPath, pszPipeName); in osl_psz_createPipe()
223 OSL_TRACE("osl_createPipe : Pipe Name '%s'",name); in osl_psz_createPipe()
226 strncpy(addr.sun_path, name, sizeof(addr.sun_path)); in osl_psz_createPipe()
238 if ( ( stat(name, &status) == 0) && in osl_psz_createPipe()
249 unlink(name); in osl_psz_createPipe()
265 chmod(name,S_IRWXU | S_IRWXG |S_IRWXO); in osl_psz_createPipe()
268 strncpy(pPipe->m_Name, name, sizeof(pPipe->m_Name)); in osl_psz_createPipe()
273 unlink(name); /* remove filesystem entry */ in osl_psz_createPipe()
[all …]
/trunk/main/xmloff/source/forms/
H A Dpropertyexport.hxx394 #define DBG_CHECK_PROPERTY(name, type) \ argument
395 dbg_implCheckProperty(name, &::getCppuType(static_cast< type* >(NULL)))
397 #define DBG_CHECK_PROPERTY_NO_TYPE(name) \ argument
398 dbg_implCheckProperty(name, NULL)
400 #define DBG_CHECK_PROPERTY_ASCII( name, type ) \ argument
401 …dbg_implCheckProperty( ::rtl::OUString::createFromAscii( name ), &::getCppuType(static_cast< type*…
403 #define DBG_CHECK_PROPERTY_ASCII_NO_TYPE( name ) \ argument
404 dbg_implCheckProperty( ::rtl::OUString::createFromAscii( name ), NULL )
406 #define DBG_CHECK_PROPERTY(name, type) argument
407 #define DBG_CHECK_PROPERTY_NO_TYPE(name) argument
[all …]
/trunk/main/i18npool/source/isolang/
H A Dlangid.pl102 my( $regex, $path, $module, $name, @addregex) = @_;
110 if ("$path/$module/$name" eq "$SOLENVINC/i18npool/lang.h") {
113 $file = "./$module/$name"; }
117 $file = "$path/$module/$name";
121 $file = "$path/$module.lnk/$name";
124 $file = "$path/$module.link/$name";
375 my $name = "source/dialog/langtab.src";
376 if (!(-e "$SRC_ROOT/$module/$name")) {
378 $name = "source/misc/langtab.src";
384 "$SRC_ROOT", $module, $name, ());
[all …]
/trunk/main/cppuhelper/source/
H A Dpropertysetmixin.cxx137 rtl::OUString const & name) const;
164 rtl::OUString const & name) const in get()
166 PropertyMap::const_iterator i(properties.find(name)); in get()
302 name, in initProperties()
319 handleNames->push_back(name); in initProperties()
344 rtl::OUString const & name)
547 PropertyMap::const_iterator i(properties.find(name)); in setProperty()
565 + name), in setProperty()
609 + name), in setProperty()
644 PropertyMap::const_iterator i(properties.find(name)); in getProperty()
[all …]
/trunk/main/codemaker/inc/codemaker/
H A Dtypemanager.hxx100 const ::rtl::OString& name, sal_Bool * pIsExtraType = 0 ) const = 0;
112 static sal_Bool isBaseType(const ::rtl::OString& name);
150 sal_Bool isValidType(const ::rtl::OString& name) const in isValidType()
151 { return searchTypeKey(name, 0).isValid(); } in isValidType()
153 const ::rtl::OString& name, sal_Bool * pIsExtraType = 0 ) const in getTypeKey()
154 { return searchTypeKey(name, pIsExtraType); } in getTypeKey()
155 RegistryKeyList getTypeKeys(const ::rtl::OString& name) const;
157 const ::rtl::OString& name, sal_Bool * pIsExtraType = 0 ) const;
159 RTTypeClass getTypeClass(const ::rtl::OString& name) const;
168 const ::rtl::OString& name, sal_Bool * pIsExtraType = 0 ) const;

Completed in 784 milliseconds

12345678910>>...92