Home
last modified time | relevance | path

Searched refs:names (Results 26 – 50 of 486) sorted by relevance

12345678910>>...20

/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/comphelper/
H A DOEnumerationByName.java35 private String[] names; field in OEnumerationByName
42 names = collection.getElementNames(); in OEnumerationByName()
59 if (position < names.length) { in hasMoreElements()
76 if (position < names.length) { in nextElement()
77 value = collection.getByName(names[position++]); in nextElement()
79 if (position >= names.length) { in nextElement()
/trunk/main/setup_native/source/win32/customactions/reg4msdoc/
H A Dregistry.cxx137 StringListPtr names = GetSubValueNames(); in HasValue() local
139 StringList::iterator iter_end = names->end(); in HasValue()
140 StringList::iterator iter = std::find(names->begin(), iter_end, Name); in HasValue()
170 StringListPtr names = GetSubKeyNames(); in HasSubKey() local
172 StringList::iterator iter_end = names->end(); in HasSubKey()
173 …StringList::iterator iter = std::find_if(names->begin(), iter_end, CompareNamesCaseInsensitive(Nam… in HasSubKey()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_xmloff/Impress/
H A DXMLStylesImporter.java173 String[] names = styles.getElementNames() ; in createTestEnvironment() local
174 for (int i = 0; i < names.length; i++) { in createTestEnvironment()
175 log.println(" " + names[i]) ; in createTestEnvironment()
186 String[] names = stylesF.getElementNames() ; in createTestEnvironment()
187 for (int i = 0; i < names.length; i++) { in createTestEnvironment()
188 logF.println(" " + names[i]) ; in createTestEnvironment()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/
H A DXMLStylesImporter.java186 String[] names = styles.getElementNames() ; in createTestEnvironment() local
187 for (int i = 0; i < names.length; i++) { in createTestEnvironment()
188 log.println(" " + names[i]) ; in createTestEnvironment()
200 String[] names = stylesF.getElementNames() ; in createTestEnvironment()
201 for (int i = 0; i < names.length; i++) { in createTestEnvironment()
202 logF.println(" " + names[i]) ; in createTestEnvironment()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/container/
H A D_XIndexReplace.java147 String[] names = xNC.getElementNames() ; in _replaceByIndex() local
149 for (int i = 0; i<names.length; i++) { in _replaceByIndex()
150 log.println(" '" + names[i] + "'") ; in _replaceByIndex()
174 String[] names = xNC.getElementNames() ; in _replaceByIndex() local
176 for (int i = 0; i<names.length; i++) { in _replaceByIndex()
177 log.println(" '" + names[i] + "'") ; in _replaceByIndex()
/trunk/main/offapi/com/sun/star/configuration/
H A DSimpleSetAccess.idl51 Allows normalizing externally generated names.
56 <p>The number and names of contained elements is not fixed in advance,
64 <p>External names from foreign namespaces should be normalized using
66 if available, before using them as element names.
89 /** allows normalizing and denormalizing external names. [optional]
92 for example, files, web pages, and people whose names obey different rules and
93 restrictions than names that are valid in the hierarchical naming scheme.
/trunk/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/
H A DExtMap.java76 public ExtMap(String[] names, String[] content) { in ExtMap() argument
77 super(names.length); in ExtMap()
79 content = new String[names.length]; in ExtMap()
80 for (int i = 0; i < names.length; i++) { in ExtMap()
84 this.put(names[i], content[i]); in ExtMap()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/util/
H A D_XImportable.java40 protected String[] names = new String[] { field in _XImportable
66 locResult = checkPropertyNames(descriptor, names); in _createImportDescriptor()
83 locResult = checkPropertyNames(descriptor, names); in _createImportDescriptor()
135 protected boolean checkPropertyNames(PropertyValue[] props, String[] names) { in checkPropertyNames() argument
139 boolean locResult = props[i].Name.equals(names[i]); in checkPropertyNames()
144 log.println("\tExpected: " + names[i]); in checkPropertyNames()
/trunk/main/extensions/source/oooimprovement/
H A Doooimprovement_exports.cxx72 Sequence<OUString> names(1); in component_getFactory() local
73 names[0] = impl_name; in component_getFactory()
76 factory = ::cppu::createSingleFactory(sm, impl_name, CoreController::Create, names); in component_getFactory()
78 factory = ::cppu::createSingleFactory(sm, impl_name, OnLogRotateJob::Create, names); in component_getFactory()
80 factory = ::cppu::createSingleFactory(sm, impl_name, InviteJob::Create, names); in component_getFactory()
/trunk/main/autodoc/source/display/idl/
H A Dhfi_method.cxx110 names = aDecl.Names();
119 write_Param( aType, names, (*i_rParams) );
125 names
128 write_Param( aType, names, (*i_rParams) );
133 names
136 names
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/i18n/
H A D_XCalendar.java306 String[] names = new String[]{"DAY_OF_MONTH", in _setValue() local
334 log.println("ERROR occur: tried to set " + names[k] + " to value " + set); in _setValue()
335 … log.println("list of values BEFORE set " + names[k] + " to value " + set + ":"); in _setValue()
337 log.println(names[n] + ":" + oldValues[n]); in _setValue()
339 … log.println("list of values AFTER set " + names[k] + " to value " + set + ":"); in _setValue()
341 log.println(names[n] + ":" + oObj.getValue(fields[n])); in _setValue()
344 error += "failed for "+names[k]+" expected "+ in _setValue()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/table/
H A D_XAutoFormattable.java87 String[] names = formats.getElementNames(); in _autoFormat() local
92 if (names.length > 1) { in _autoFormat()
94 name = names[rnd.nextInt(names.length)]; in _autoFormat()
97 name = names[0]; in _autoFormat()
/trunk/main/sw/qa/complex/writer/
H A DCheckNamedPropertyValues.java77 String[] names = xCont.getElementNames(); in checkNamedPropertyValues() local
78 assertEquals("Not all element names were returned.", 2, names.length); in checkNamedPropertyValues()
79 for (int i=0; i<names.length; i++) { in checkNamedPropertyValues()
82 names[i].equals("prop1") || names[i].equals("prop2")); in checkNamedPropertyValues()
/trunk/main/xmlsecurity/source/xmlsec/nss/
H A Dsanextension_nssimpl.cxx77 static int GetNamesLength(CERTGeneralName *names) in GetNamesLength() argument
82 first = names; in GetNamesLength()
83 if (names != NULL) { in GetNamesLength()
86 names = CERT_GetNextGeneralName(names); in GetNamesLength()
87 } while (names != first); in GetNamesLength()
/trunk/main/offapi/com/sun/star/sheet/
H A DDataPilotFieldGroups.idl46 containing the names of all items in the group.</p>
88 names in an existing group with a new collection of item names. An
93 group empty. The group can be filled later with new item names.</li>
94 <li>a <atom dim="[]">string</atom> containing all item names that will
105 field group with the passed collection of item names. An
H A DFormulaLanguage.idl38 /** Function names and operators as defined by the OASIS
44 /** Function names and operators as used in ODF documents prior to
49 /** Function names and operators as used in the English language
54 /** Function names and operators as used in the current native
H A DXFormulaOpCodeMapper.idl49 <p>Needed to be able to identify which of the function names map to an
60 <p>Used to identify which of the function names queried with
71 Sequence of names to be mapped. These can be function names,
101 <li>Add-in names: the programmatical name. The OpCode value used
/trunk/main/udkapi/com/sun/star/beans/
H A DXMultiHierarchicalPropertySet.idl78 /** sets the values of the properties with the specified nested names.
88 This parameter specifies the names of the properties.
99 corresponding property or if one of the names
124 by their nested names.
127 as the order of the names in the argument. </p>
132 if one of the names is not a well-formed
H A DXExactName.idl37 /** provides a method of changing names for converting
41 names to the existing names.</p>
43 <p> Example: A basic interpreter ignores the case of the names. So
/trunk/main/vcl/unx/generic/app/
H A Dkeysymnames.cxx650 if( pXkbDesc->names->groups[0] ) in GetKeyboardName()
652 pAtom = XGetAtomName( GetDisplay(), pXkbDesc->names->groups[0] ); in GetKeyboardName()
659 #define PRINT_ATOM( x ) { if( pXkbDesc->names->x ) { pAtom = XGetAtomName( GetDisplay(), pXkbDesc-> in GetKeyboardName()
668 #define PRINT_ATOM_2( x ) { if( pXkbDesc->names->x[i] ) { pAtom = XGetAtomName( GetDisplay(), pXkbD… in GetKeyboardName()
/trunk/main/offapi/com/sun/star/frame/
H A DXModel2.idl66 /** provides the available names of the factory to be used to create views.
68 <p>The names are usually logical view names. The following names have
81 view names, which then are documented in the respective service descriptions.</p>
86 a sequence of names of all supported views for this document.
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/
H A Dselectors.properties31 namespaces.draw=urn:oasis:names:tc:opendocument:xmlns:drawing:1.0
32 namespaces.fo=urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0
33 namespaces.style=urn:oasis:names:tc:opendocument:xmlns:style:1.0
34 namespaces.table=urn:oasis:names:tc:opendocument:xmlns:table:1.0
35 namespaces.chart=urn:oasis:names:tc:opendocument:xmlns:chart:1.0
59 # The following properties map the OpenOffice-generic font names
/trunk/main/lucene/
H A Dlong_path.patch9 + //File.getCanonicalPath fails on Windows with long path names
10 + //Long path names created by osl_getSystemPathFromFileURL are already
24 + //File.getCanonicalPath fails on Windows with long path names
25 + //Long path names created by osl_getSystemPathFromFileURL are already
/trunk/main/cli_ure/source/scripts/
H A Dincrement_version.pl236 my @names;
254 push @names, $line;
256 print "No entries found in $arg\n" if(scalar @names == 0);
257 return @names;
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOContainer.java102 …public OContainer(Object lock, boolean isCaseSensitive, List<String> names) throws ElementExistExc… in OContainer() argument
104 for (String name : names) { in OContainer()
113 public void refill(List<String> names) { in refill() argument
115 for (String name : names) { in refill()
203 String[] names = new String[namesByIndex.size()]; in getElementNames() local
204 return namesByIndex.toArray(names); in getElementNames()

Completed in 92 milliseconds

12345678910>>...20