Home
last modified time | relevance | path

Searched refs:map (Results 1 – 25 of 972) sorted by relevance

12345678910>>...39

/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DPrecedenceTable.java46 private static HashMap map; field in PrecedenceTable
48 map = new HashMap();
50 map.put("%", new Integer(UNARY_PRECEDENCE));
51 map.put("+", new Integer(ADDOP_PRECEDENCE));
52 map.put("-", new Integer(ADDOP_PRECEDENCE));
55 map.put("(", new Integer(PAREN_PRECEDENCE));
56 map.put(")", new Integer(PAREN_PRECEDENCE));
57 map.put(",", new Integer(COMMA_PRECEDENCE));
58 map.put(">", new Integer(GTLT_PRECEDENCE));
59 map.put("<", new Integer(GTLT_PRECEDENCE));
[all …]
/trunk/main/comphelper/qa/complex/comphelper/
H A DMap.java130 impl_putAll( map, _keys, _values ); in impl_checkMappings()
133 impl_ceckContent( map, _keys, _values, _context ); in impl_checkMappings()
140 _values[i], map.remove( _keys[i] ) ); in impl_checkMappings()
145 impl_putAll( map, _keys, _values ); in impl_checkMappings()
146 map.clear(); in impl_checkMappings()
157 impl_ceckContent( map, _keys, _values, _context ); in impl_checkMappings()
461 impl_putAll( map, keys, values ); in testEnumerations()
479 map.remove( keys[0] ); in testEnumerations()
485 map.put( keys[0], values[0] ); in testEnumerations()
489 map.put( "additional", "value" ); in testEnumerations()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/helper/
H A DClParser.java159 Properties map = new Properties(); in getMapping() local
160 map.setProperty("-cs", "ConnectionString"); in getMapping()
161 map.setProperty("-tb", "TestBase"); in getMapping()
165 map.setProperty("-o", "TestJob"); in getMapping()
166 map.setProperty("-sce", "TestJob"); in getMapping()
167 map.setProperty("-p", "TestJob"); in getMapping()
169 map.setProperty("-xcl", "ExclusionList"); in getMapping()
172 map.setProperty("-dbout", "DataBaseOut"); in getMapping()
173 map.setProperty("-nca", "NoCwsAttach"); in getMapping()
175 return map; in getMapping()
[all …]
/trunk/main/ridljar/java/ridl/src/main/java/com/sun/star/lib/util/
H A DWeakMap.java90 return map.size(); in size()
103 return map.isEmpty(); in isEmpty()
146 return map.get(key); in get()
177 return map.remove(key); in remove()
205 map.clear(); in clear()
216 return map.keySet(); in keySet()
227 return map.values(); in values()
238 return map.entrySet(); in entrySet()
242 return map.equals(o); in equals()
246 return map.hashCode(); in hashCode()
[all …]
/trunk/main/i18npool/source/transliteration/
H A Dtransliteration_body.cxx153 for (sal_Int32 k = 0; k < map.nmap; k++) { in transliterate()
156 out[j++] = map.map[k]; in transliterate()
184 nOffCount += map.nmap; in transliterate()
202 for (sal_Int32 k = 0; k < map.nmap; k++) in transliterate()
205 out[j++] = map.map[k]; in transliterate()
239 for (sal_Int32 k = 0; k < map.nmap; k++) in transliterate()
241 out[j++] = map.map[k]; in transliterate()
261 for (i = 0; i < map.nmap; i++) in transliterateChar2String()
262 out[i] = map.map[i]; in transliterateChar2String()
272 if (map.nmap > 1) in transliterateChar2Char()
[all …]
/trunk/main/udkapi/com/sun/star/container/
H A DXMap.idl39 /** describes a map between keys and values.
54 /** denotes the type of the keys in the map.
60 /** denotes the type of the values in the map.
66 /** clears the map, removing all key-value pairs from it.
69 if the map is not mutable.
77 is the key whose presence in the map is to be tested.
97 is the value whose presence in the map is to be tested.
159 if the map does not support putting new mappings into it
166 /** removes a key-value mapping, given by key, from the map.
169 is the key whose mapping should be removed from the map
[all …]
H A DXEnumerableMap.idl44 <p>You can create enumerators for the keys of the map, its values, and its key-value pairs.</p>
47 map's content. Such an iterator is not affected by changes done to the map after creation of
50 <p>On the contrary, an enumerator which is <em>non-isolated</em> works directly on the map data.
51 …This is less expensive than an <em>isolated</em> enumerator, but means that changes to the map whi…
63 /** creates a enumerator for the keys of the map
66 controls whether the newly create enumerator should be isolated from the map.
74 /** creates a enumerator for the values of the map
77 controls whether the newly create enumerator should be isolated from the map.
85 /** creates a enumerator for the key-value pairs of the map
88 holding the key-value-pairs which are part of the map.</p>
[all …]
H A DEnumerableMap.idl39 …<p>For the keys put into the map using <member>XMap::put</member> or <member>createImmutable</memb…
58 …<p>For the values put into the map using <member>XMap::put</member> or <member>createImmutable</me…
61 <ul><li>The <VOID/> value will be accepted to be put into the map.</p>
75 …m>non-isolated</em> enumerators. The latter one will be automatically disposed when the map changes
86 denotes the type of the keys in the to-be-created map
88 denotes the type of the values in the to-be-created map
102 <p>The resulting map is immutable, so later alter operations on it will fail
106 denotes the type of the keys in the to-be-created map
108 denotes the type of the values in the to-be-created map
110 denote the values contained in the to-be-created map
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/
H A DUninstallationPrologueCtrl.java71 HashMap map = Converter.convertVectorToHashmap(infoFileContent); in getInfoFileData() local
83 return map; in getInfoFileData()
86 private void setNewInstallData(HashMap map) { in setNewInstallData() argument
89 data.setPackagePath((String)map.get("PackagePath")); in setNewInstallData()
90 data.setAdminFileNameReloc((String)map.get("AdminFileReloc")); in setNewInstallData()
92 data.setAdminFileNameNoReloc((String)map.get("AdminFileNoReloc")); in setNewInstallData()
94 data.setDatabasePath((String)map.get("DatabasePath")); in setNewInstallData()
95 data.setInstallDir((String)map.get("InstallationDir")); in setNewInstallData()
97 data.setGetUidPath((String)map.get("GetUidFile")); in setNewInstallData()
101 HashMap map = getInfoFileData(); in readInfoFile() local
[all …]
/trunk/main/offapi/com/sun/star/xml/dom/
H A DXNamedNodeMap.idl42 The number of nodes in this map.
57 Returns the indexth item in the map.
64 DOMException - NOT_FOUND_ERR: Raised if there is no node named name in this map.
65 NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
72 …OT_FOUND_ERR: Raised if there is no node with the specified namespaceURI and localName in this map.
73 NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
80 …CUMENT_ERR: Raised if arg was created from a different document than the one that created this map.
81 NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
83 … other than an Attr node into an Element's map of attributes, or a non-Entity node into the Docume…
91 NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
[all …]
/trunk/main/offapi/com/sun/star/embed/
H A DEmbedMapUnits.idl32 /** contains list of possible map modes supported by embedded object.
39 /** In this type of map mode one logical point is equal to one-hundredth
45 /** In this type of map mode one logical point is equal to one-tenth
51 /** In this type of map mode one logical point is equal to one
57 /** In this type of map mode one logical point is equal to one
69 /** In this type of map mode one logical point is equal to one-hundredth
75 /** In this type of map mode one logical point is equal to one-tenth
81 /** In this type of map mode one logical point is equal to one inch.
86 /** In this type of map mode one logical point is equal to one
92 /** In this type of map mode one logical point is equal to one twentieth
[all …]
/trunk/main/codemaker/source/javamaker/
H A Dclassfile.hxx210 typedef std::map< rtl::OString, sal_uInt16 > Map;
243 std::map< rtl::OString, sal_uInt16 > m_utf8Infos;
244 std::map< sal_Int32, sal_uInt16 > m_integerInfos;
245 std::map< sal_Int64, sal_uInt16 > m_longInfos;
246 std::map< float, sal_uInt16 > m_floatInfos;
247 std::map< double, sal_uInt16 > m_doubleInfos;
248 std::map< sal_uInt16, sal_uInt16 > m_classInfos;
249 std::map< sal_uInt16, sal_uInt16 > m_stringInfos;
250 std::map< sal_uInt32, sal_uInt16 > m_fieldrefInfos;
251 std::map< sal_uInt32, sal_uInt16 > m_methodrefInfos;
[all …]
H A Dclassfile.cxx512 std::map< sal_Int32, sal_uInt16 >::iterator i(m_integerInfos.find(value)); in addIntegerInfo()
528 std::map< float, sal_uInt16 >::iterator i(m_floatInfos.find(value)); in addFloatInfo()
538 std::map< float, sal_uInt16 >::value_type(value, index)).second) in addFloatInfo()
546 std::map< sal_Int64, sal_uInt16 >::iterator i(m_longInfos.find(value)); in addLongInfo()
562 std::map< double, sal_uInt16 >::iterator i(m_doubleInfos.find(value)); in addDoubleInfo()
572 std::map< double, sal_uInt16 >::value_type(value, index)).second) in addDoubleInfo()
748 std::map< rtl::OString, sal_uInt16 >::value_type(value, index)). in addUtf8Info()
758 std::map< sal_uInt16, sal_uInt16 >::iterator i( in addClassInfo()
777 std::map< sal_uInt16, sal_uInt16 >::iterator i( in addStringInfo()
850 std::map< sal_uInt32, sal_uInt16 >::iterator i( in addInterfaceMethodrefInfo()
[all …]
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DMapToXNameAccessAdapter.java33 protected final Map<String,Object> map; field in MapToXNameAccessAdapter
37 public MapToXNameAccessAdapter(Map<String,Object> map, Object lock, Type elementType) { in MapToXNameAccessAdapter() argument
38 this.map = map; in MapToXNameAccessAdapter()
50 object = map.get(key); in getByName()
61 String[] names = new String[map.size()]; in getElementNames()
63 for (Map.Entry<String,Object> entry : map.entrySet()) { in getElementNames()
73 return map.containsKey(key); in hasByName()
88 return !map.isEmpty(); in hasElements()
H A DMapToXNameContainerAdapter.java34 public MapToXNameContainerAdapter(Map<String,Object> map, Object lock, Type elementType) { in MapToXNameContainerAdapter() argument
35 super(map, lock, elementType); in MapToXNameContainerAdapter()
45 if (map.containsKey(key)) { in insertByName()
48 map.put(key, value); in insertByName()
56 if (map.containsKey(key)) { in removeByName()
57 map.remove(key); in removeByName()
71 if (!map.containsKey(key)) { in replaceByName()
74 map.put(key, value); in replaceByName()
/trunk/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DMultiTypeInterfaceContainer.java34 private Map<Object,InterfaceContainer> map= new HashMap<Object,InterfaceContainer>(); field in MultiTypeInterfaceContainer
50 if ( (size=map.size()) > 0) in getContainedTypes()
55 for (Map.Entry<Object,InterfaceContainer> entry : map.entrySet()) in getContainedTypes()
88 return map.get(key); in getContainer()
100 InterfaceContainer cont= map.get(ckey); in addInterface()
109 map.put(ckey, cont); in addInterface()
118 InterfaceContainer cont= map.get(key); in removeInterface()
132 it= map.values().iterator(); in disposeAndClear()
140 Iterator<InterfaceContainer> it= map.values().iterator(); in clear()
/trunk/main/autodoc/inc/cosv/tpl/
H A Dtpltools.hxx61 const std::map< KEY, VAL > &
71 const std::map< KEY, VAL > &
79 const std::map< KEY, VAL > &
161 find_in_map( const std::map< KEY, VAL > & i_rMap, in find_in_map()
164 typename std::map< KEY, VAL >::const_iterator in find_in_map()
173 value_from_map( const std::map< KEY, VAL > & i_rMap, in value_from_map()
176 typename std::map< KEY, VAL >::const_iterator in value_from_map()
185 value_from_map( const std::map< KEY, VAL > & i_rMap, in value_from_map()
189 typename std::map< KEY, VAL >::const_iterator in value_from_map()
/trunk/main/i18nutil/source/utility/
H A Dcasefolding.cxx89 dummy.map[0] = str[pos]; in getValue()
97 for (int map = CaseMappingValue[address].value; in getValue() local
98 map < CaseMappingValue[address].value + MaxCaseMappingExtras; map++) { in getValue()
99 if (CaseMappingExtra[map].type & nMappingType) { in getValue()
100 if (CaseMappingExtra[map].type & ValueTypeNotValue) in getValue()
103 return CaseMappingExtra[map]; in getValue()
110 dummy.map[0] = CaseMappingValue[address].value; in getValue()
140 c = e.element.map[e.current++]; in getNextChar()
/trunk/main/dbaccess/source/core/recovery/
H A Ddbdocrecovery.cxx325 for ( MapCompTypeToCompDescs::const_iterator map = aMapCompDescs.begin(); in saveModifiedSubComponents() local
326 map != aMapCompDescs.end(); in saveModifiedSubComponents()
327 ++map in saveModifiedSubComponents()
331 …SubComponentRecovery::getComponentsStorageName( map->first ), ElementModes::WRITE | ElementModes::… in saveModifiedSubComponents()
332 lcl_writeObjectMap_throw( m_pData->aContext, xComponentsStor, map->second ); in saveModifiedSubComponents()
370 for ( MapCompTypeToCompDescs::const_iterator map = aMapCompDescs.begin(); in recoverSubDocuments() local
371 map != aMapCompDescs.end(); in recoverSubDocuments()
372 ++map in recoverSubDocuments()
375 const SubComponentType eComponentType = map->first; in recoverSubDocuments()
382 for ( MapStringToCompDesc::const_iterator stor = map->second.begin(); in recoverSubDocuments()
[all …]
/trunk/main/connectivity/source/inc/ado/
H A DADatabaseMetaDataResultSet.hxx68 ::std::map<sal_Int32, TInt2IntMap > m_aValueRange;
69 ::std::map<sal_Int32, TInt2IntMap >::iterator m_aValueRangeIter;
71 ::std::map<sal_Int32, ::std::map< ::rtl::OUString,sal_Int32> > m_aStrValueRange;
72 ::std::map<sal_Int32, ::std::map< ::rtl::OUString,sal_Int32> >::iterator m_aStrValueRangeIter;
74 ::std::map<sal_Int32, ::std::map< sal_Int32,::rtl::OUString> > m_aIntValueRange;
75 ::std::map<sal_Int32, ::std::map< sal_Int32,::rtl::OUString> >::iterator m_aIntValueRangeIter;
209 sal_Int32 map = column; in mapColumn() local
214 map = m_aColMapping[column]; in mapColumn()
217 return map; in mapColumn()
/trunk/main/writerfilter/source/dmapper/
H A DThemeTable.cxx47 std::map<sal_uInt32, std::map<sal_uInt32, ::rtl::OUString> > m_themeFontMap;
49 std::map<sal_uInt32, ::rtl::OUString> m_currentFontThemeEntry;
125 m_pImpl->m_currentFontThemeEntry = std::map<sal_uInt32, rtl::OUString>(); in lcl_sprm()
171 std::map<sal_uInt32, ::rtl::OUString> tmpThemeFontMap; in getFontNameForTheme()
197 …std::map<sal_uInt32, ::rtl::OUString>::const_iterator Iter = tmpThemeFontMap.find(NS_ooxml::LN_CT_… in getFontNameForTheme()
205 …std::map<sal_uInt32, ::rtl::OUString>::const_iterator Iter = tmpThemeFontMap.find(NS_ooxml::LN_CT_… in getFontNameForTheme()
213 …std::map<sal_uInt32, ::rtl::OUString>::const_iterator Iter = tmpThemeFontMap.find(NS_ooxml::LN_CT_… in getFontNameForTheme()
/trunk/test/testcommon/source/org/openoffice/test/vcl/
H A DIDList.java41 private HashMap<String, String> map = new HashMap<String, String>(); field in IDList
51 private void readFile(File file, HashMap<String, String> map) { in readFile() argument
63 map.put(parts[0], parts[1]); in readFile()
84 map.clear(); in load()
104 readFile(file, map); in load()
109 String value = map.get(id); in getId()
113 value = map.get(id.substring(++i)); in getId()
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/
H A DConverter.java36 static public String[] convertHashmapToStringArray(HashMap map) { in convertHashmapToStringArray() argument
38 int size = map.size(); in convertHashmapToStringArray()
41 Iterator m = map.entrySet().iterator(); in convertHashmapToStringArray()
55 HashMap map = new HashMap(); in convertVectorToHashmap() local
71 map.put(key, value); in convertVectorToHashmap()
74 return map; in convertVectorToHashmap()
/trunk/main/wizards/com/sun/star/wizards/common/
H A DProperties.java73 public static PropertyValue[] getProperties(Map map) in getProperties() argument
75 PropertyValue[] pv = new PropertyValue[map.size()]; in getProperties()
77 Iterator it = map.keySet().iterator(); in getProperties()
80 pv[i] = createProperty((String) it.next(), map); in getProperties()
85 public static PropertyValue createProperty(String name, Map map) in createProperty() argument
87 return createProperty(name, map.get(name)); in createProperty()
/trunk/main/sal/qa/rtl_strings/
H A Dmakefile.mk51 SHL1VERSIONMAP = $(PRJ)$/qa$/export.map
70 SHL2VERSIONMAP = $(PRJ)$/qa$/export.map
89 SHL3VERSIONMAP = $(PRJ)$/qa$/export.map
103 SHL4VERSIONMAP = $(PRJ)$/qa$/export.map
116 SHL5VERSIONMAP = $(PRJ)$/qa$/export.map
129 SHL6VERSIONMAP = $(PRJ)$/qa$/export.map

Completed in 129 milliseconds

12345678910>>...39