Home
last modified time | relevance | path

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

12345678910>>...43

/aoo41x/main/xmerge/source/pexcel/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 …]
/aoo41x/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 …]
/aoo41x/main/qadevOOo/runner/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 …]
/aoo41x/main/ridljar/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 …]
/aoo41x/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 …]
/aoo41x/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 …]
/aoo41x/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 …]
/aoo41x/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DMultiTypeInterfaceContainer.java34 private Map map= new HashMap(); field in MultiTypeInterfaceContainer
50 if ( (size=map.size()) > 0) in getContainedTypes()
53 Iterator it= map.keySet().iterator(); in getContainedTypes()
90 Iterator it= map.keySet().iterator(); in getContainer()
96 retVal= (InterfaceContainer) map.get(null); in getContainer()
101 retVal= (InterfaceContainer) map.get(obj); in getContainer()
117 InterfaceContainer cont= (InterfaceContainer) map.get(ckey); in addInterface()
126 map.put(ckey, cont); in addInterface()
135 InterfaceContainer cont= (InterfaceContainer) map.get(key); in removeInterface()
149 it= map.values().iterator(); in disposeAndClear()
[all …]
/aoo41x/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 …]
/aoo41x/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 …]
/aoo41x/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 …]
/aoo41x/main/cosv/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()
/aoo41x/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()
/aoo41x/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 …]
/aoo41x/main/sal/qa/osl/socket/
H A Dmakefile.mk58 SHL1VERSIONMAP = $(PRJ)$/qa$/export.map
70 SHL2VERSIONMAP = $(PRJ)$/qa$/export.map
93 SHL3VERSIONMAP = $(PRJ)$/qa$/export.map
116 SHL4VERSIONMAP = $(PRJ)$/qa$/export.map
139 SHL5VERSIONMAP = $(PRJ)$/qa$/export.map
162 SHL6VERSIONMAP = $(PRJ)$/qa$/export.map
185 SHL7VERSIONMAP = $(PRJ)$/qa$/export.map
208 SHL8VERSIONMAP = $(PRJ)$/qa$/export.map
/aoo41x/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()
/aoo41x/main/writerfilter/source/dmapper/
H A DThemeTable.cxx44 std::map<sal_uInt32, std::map<sal_uInt32, ::rtl::OUString> > m_themeFontMap;
46 std::map<sal_uInt32, ::rtl::OUString> m_currentFontThemeEntry;
126 m_pImpl->m_currentFontThemeEntry = std::map<sal_uInt32, rtl::OUString>(); in lcl_sprm()
172 std::map<sal_uInt32, ::rtl::OUString> tmpThemeFontMap; in getFontNameForTheme()
198 …std::map<sal_uInt32, ::rtl::OUString>::const_iterator Iter = tmpThemeFontMap.find(NS_ooxml::LN_CT_… in getFontNameForTheme()
206 …std::map<sal_uInt32, ::rtl::OUString>::const_iterator Iter = tmpThemeFontMap.find(NS_ooxml::LN_CT_… in getFontNameForTheme()
214 …std::map<sal_uInt32, ::rtl::OUString>::const_iterator Iter = tmpThemeFontMap.find(NS_ooxml::LN_CT_… in getFontNameForTheme()
/aoo41x/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()
/aoo41x/main/ucb/prj/
H A Dd.lst3 ..\%__SRC%\bin\cached*.map %_DEST%\bin%_EXT%\cached*.map
9 ..\%__SRC%\bin\srtrs*.map %_DEST%\bin%_EXT%\srtrs*.map
15 ..\%__SRC%\misc\ucb*.map %_DEST%\bin%_EXT%\ucb*.map
24 ..\%__SRC%\misc\ucp*.map %_DEST%\bin%_EXT%\ucp*.map
/aoo41x/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()
/aoo41x/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()
/aoo41x/main/jurt/com/sun/star/lib/uno/protocols/urp/
H A DCache.java46 Entry e = (Entry) map.get(content); in add()
49 if (map.size() < maxSize) { in add()
51 e = new Entry(content, map.size(), null, first); in add()
60 map.remove(last.content); in add()
76 map.put(content, e); in add()
113 private final HashMap map = new HashMap(); // from Object to Entry field in Cache
/aoo41x/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 82 milliseconds

12345678910>>...43