/external/srec/tools/grxmlcompile/ |
D | hashmap.cpp | 39 HashMap<T1,T2>::HashMap(): in HashMap() function in HashMap 45 void HashMap<T1,T2>::setName(std::string s) in setName() 51 bool HashMap<T1,T2>::insert( T1 const & index, T2 const & value) in insert() 63 bool HashMap<T1,T2>::remove( T1 const & index ) in remove() 70 bool HashMap<T1,T2>::isEmpty() in isEmpty() 77 bool HashMap<T1,T2>::clear() in clear() 86 bool HashMap<T1,T2>::getIndex( T2 const & value, T1 *index ) in getIndex() 100 bool HashMap<T1,T2>::getFirst( T1 *index, T2 *value ) in getFirst() 114 bool HashMap<T1,T2>::getNext( T1 *index, T2 *value ) in getNext() 128 bool HashMap<T1,T2>::getValue(T1 const & index, T2 *value) in getValue() [all …]
|
D | grxmldoc.h | 34 template <typename T1, typename T2> class HashMap; variable 148 HashMap<std::string,SubGraph*> m_SubgraphList; 149 HashMap<int,std::string> m_TagList; // <item tag = ... 150 HashMap<int,std::string> m_LabelList; // Stores all network label IDs, including rule names 151 HashMap<int,std::string> m_SortedLabelList; // Used to sort the labels fo 152 HashMap<int, std::string> m_PhonemeList; // Stores triphones 153 …HashMap<std::string,int> m_RuleList; // Stores rule name and index used in the LabelList. Use to d… 154 HashMap<int, std::string> m_RuleScope; 155 HashMap<int, std::string> m_SlotList; 156 HashMap<std::string, std::string> m_MetaKeyValPairs; //Store word-penalty value [all …]
|
/external/srec/shared/include/ |
D | HashMapImpl.h | 38 HashMap Interface; 50 ESR_SHARED_API ESR_ReturnCode HashMap_Put(HashMap* self, const LCHAR* key, void* value); 54 ESR_SHARED_API ESR_ReturnCode HashMap_Remove(HashMap* self, const LCHAR* key); 58 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAndFree(HashMap* self, const LCHAR* key); 62 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAtIndex(HashMap* self, const size_t index); 66 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAll(HashMap* self); 70 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAndFreeAll(HashMap* self); 74 ESR_SHARED_API ESR_ReturnCode HashMap_ContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists… 78 ESR_SHARED_API ESR_ReturnCode HashMap_Get(HashMap* self, const LCHAR* key, void** value); 82 ESR_SHARED_API ESR_ReturnCode HashMap_GetKeyAtIndex(HashMap* self, const size_t index, LCHAR** key); [all …]
|
D | HashMap.h | 153 HashMap; typedef 161 ESR_SHARED_API ESR_ReturnCode HashMapCreate(HashMap** self); 169 ESR_SHARED_API ESR_ReturnCode HashMapCreateBins(size_t nbBins, HashMap** self); 179 ESR_SHARED_API ESR_ReturnCode HashMapPut(HashMap* self, const LCHAR* key, void* value); 190 ESR_SHARED_API ESR_ReturnCode HashMapRemove(HashMap* self, const LCHAR* key); 199 ESR_SHARED_API ESR_ReturnCode HashMapRemoveAndFree(HashMap* self, const LCHAR* key); 207 ESR_SHARED_API ESR_ReturnCode HashMapRemoveAtIndex(HashMap* self, const size_t index); 214 ESR_SHARED_API ESR_ReturnCode HashMapRemoveAll(HashMap* self); 221 ESR_SHARED_API ESR_ReturnCode HashMapRemoveAndFreeAll(HashMap* self); 230 ESR_SHARED_API ESR_ReturnCode HashMapContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists); [all …]
|
/external/webkit/JavaScriptCore/wtf/ |
D | RefPtrHashMap.h | 45 class HashMap<RefPtr<T>, MappedArg, HashArg, KeyTraitsArg, MappedTraitsArg> { 70 void swap(HashMap&); 120 inline void HashMap<RefPtr<T>, U, V, W, X>::swap(HashMap& other) in swap() 126 inline int HashMap<RefPtr<T>, U, V, W, X>::size() const in size() 132 inline int HashMap<RefPtr<T>, U, V, W, X>::capacity() const in capacity() 138 inline bool HashMap<RefPtr<T>, U, V, W, X>::isEmpty() const in isEmpty() 144 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::begin() in begin() 150 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::end() in end() 156 …inline typename HashMap<RefPtr<T>, U, V, W, X>::const_iterator HashMap<RefPtr<T>, U, V, W, X>::beg… in begin() 162 …inline typename HashMap<RefPtr<T>, U, V, W, X>::const_iterator HashMap<RefPtr<T>, U, V, W, X>::end… in end() [all …]
|
D | HashMap.h | 32 class HashMap { 53 void swap(HashMap&); 111 inline void HashMap<T, U, V, W, X>::swap(HashMap& other) in swap() 117 inline int HashMap<T, U, V, W, X>::size() const in size() 123 inline int HashMap<T, U, V, W, X>::capacity() const in capacity() 129 inline bool HashMap<T, U, V, W, X>::isEmpty() const in isEmpty() 135 inline typename HashMap<T, U, V, W, X>::iterator HashMap<T, U, V, W, X>::begin() in begin() 141 inline typename HashMap<T, U, V, W, X>::iterator HashMap<T, U, V, W, X>::end() in end() 147 inline typename HashMap<T, U, V, W, X>::const_iterator HashMap<T, U, V, W, X>::begin() const in begin() 153 inline typename HashMap<T, U, V, W, X>::const_iterator HashMap<T, U, V, W, X>::end() const in end() [all …]
|
/external/srec/shared/src/ |
D | HashMap.c | 25 ESR_ReturnCode HashMapPut(HashMap* self, const LCHAR* key, void* value) in HashMapPut() 32 ESR_ReturnCode HashMapRemove(HashMap* self, const LCHAR* key) in HashMapRemove() 39 ESR_ReturnCode HashMapRemoveAndFree(HashMap* self, const LCHAR* key) in HashMapRemoveAndFree() 46 ESR_ReturnCode HashMapRemoveAtIndex(HashMap* self, const size_t index) in HashMapRemoveAtIndex() 53 ESR_ReturnCode HashMapRemoveAll(HashMap* self) in HashMapRemoveAll() 60 ESR_ReturnCode HashMapRemoveAndFreeAll(HashMap* self) in HashMapRemoveAndFreeAll() 67 ESR_ReturnCode HashMapContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists) in HashMapContainsKey() 74 ESR_ReturnCode HashMapGetSize(HashMap* self, size_t* size) in HashMapGetSize() 81 ESR_ReturnCode HashMapGet(HashMap* self, const LCHAR* key, void** value) in HashMapGet() 88 ESR_ReturnCode HashMapGetKeyAtIndex(HashMap* self, const size_t index, LCHAR** key) in HashMapGetKeyAtIndex() [all …]
|
D | HashMapImpl.c | 30 HashMap **self) in HashMapCreate_Internal() 60 *self = (HashMap*) impl; in HashMapCreate_Internal() 64 ESR_ReturnCode HashMapCreate(HashMap** self) in HashMapCreate() 69 ESR_ReturnCode HashMapCreateBins(size_t nbBins, HashMap** self) in HashMapCreateBins() 79 ESR_ReturnCode HashMap_Put(HashMap* self, const LCHAR* key, void* value) in HashMap_Put() 129 ESR_ReturnCode HashMap_Remove(HashMap* self, const LCHAR* key) in HashMap_Remove() 134 ESR_ReturnCode HashMap_RemoveAndFree(HashMap* self, const LCHAR* key) in HashMap_RemoveAndFree() 167 ESR_ReturnCode HashMap_RemoveAll(HashMap* self) in HashMap_RemoveAll() 172 ESR_ReturnCode HashMap_RemoveAndFreeAll(HashMap* self) in HashMap_RemoveAndFreeAll() 177 ESR_ReturnCode HashMap_ContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists) in HashMap_ContainsKey() [all …]
|
/external/webkit/WebCore/svg/ |
D | SVGDocumentExtensions.h | 64 HashMap<String, HashSet<SVGStyledElement*>*> m_pendingResources; 70 HashMap<const SVGElement*, HashMap<StringImpl*, ValueType>*>* baseValueMap() const in baseValueMap() 72 …static HashMap<const SVGElement*, HashMap<StringImpl*, ValueType>*>* s_baseValueMap = new HashMap<… in baseValueMap() 88 HashMap<StringImpl*, ValueType>* propertyMap = baseValueMap<ValueType>()->get(element); in baseValue() 98 HashMap<StringImpl*, ValueType>* propertyMap = baseValueMap<ValueType>()->get(element); in setBaseValue() 100 propertyMap = new HashMap<StringImpl*, ValueType>(); in setBaseValue() 110 HashMap<StringImpl*, ValueType>* propertyMap = baseValueMap<ValueType>()->get(element); in removeBaseValue() 120 HashMap<StringImpl*, ValueType>* propertyMap = baseValueMap<ValueType>()->get(element); in hasBaseValue()
|
/external/webkit/WebCore/dom/ |
D | ScriptExecutionContext.cpp | 60 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end(); in ~ScriptExecutionContext() 61 …for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeO… in ~ScriptExecutionContext() 121 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end(); in canSuspendActiveDOMObjects() 122 …for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeO… in canSuspendActiveDOMObjects() 133 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end(); in suspendActiveDOMObjects() 134 …for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeO… in suspendActiveDOMObjects() 143 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end(); in resumeActiveDOMObjects() 144 …for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeO… in resumeActiveDOMObjects() 153 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end(); in stopActiveDOMObjects() 154 …for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeO… in stopActiveDOMObjects()
|
D | NodeRareData.h | 41 typedef HashMap<String, DynamicNodeList::Caches*> CacheMap; 45 typedef HashMap<QualifiedName, DynamicNodeList::Caches*> TagCacheMap; 70 typedef HashMap<const Node*, NodeRareData*> NodeRareDataMap;
|
/external/webkit/WebCore/platform/graphics/ |
D | GlyphPageTreeNode.cpp | 42 HashMap<int, GlyphPageTreeNode*>* GlyphPageTreeNode::roots = 0; 50 roots = new HashMap<int, GlyphPageTreeNode*>; in getRoot() 72 HashMap<int, GlyphPageTreeNode*>::iterator end = roots->end(); in treeGlyphPageCount() 73 for (HashMap<int, GlyphPageTreeNode*>::iterator it = roots->begin(); it != end; ++it) in treeGlyphPageCount() 86 HashMap<const FontData*, GlyphPageTreeNode*>::const_iterator end = m_children.end(); in pageCount() 87 …for (HashMap<const FontData*, GlyphPageTreeNode*>::const_iterator it = m_children.begin(); it != e… in pageCount() 97 HashMap<int, GlyphPageTreeNode*>::iterator end = roots->end(); in pruneTreeCustomFontData() 98 for (HashMap<int, GlyphPageTreeNode*>::iterator it = roots->begin(); it != end; ++it) in pruneTreeCustomFontData() 109 HashMap<int, GlyphPageTreeNode*>::iterator end = roots->end(); in pruneTreeFontData() 110 for (HashMap<int, GlyphPageTreeNode*>::iterator it = roots->begin(); it != end; ++it) in pruneTreeFontData() [all …]
|
/external/emma/core/java12/com/vladium/emma/data/ |
D | CoverageData.java | 14 import java.util.HashMap; 47 final HashMap _coverageMap; in shallowCopy() 51 _coverageMap = (HashMap) m_coverageMap.clone (); in shallowCopy() 159 m_coverageMap = new HashMap (); in CoverageData() 167 final HashMap coverageMap = new HashMap (size); in readExternal() 220 private CoverageData (final HashMap coverageMap) in CoverageData() 227 private /*final*/ HashMap /* String(classVMName) -> DataHolder */ m_coverageMap; // never null
|
D | MetaData.java | 14 import java.util.HashMap; 50 final HashMap _classMap; in shallowCopy() 54 _classMap = (HashMap) m_classMap.clone (); in shallowCopy() 209 m_classMap = new HashMap (); in MetaData() 223 final HashMap classMap = new HashMap (size); in readExternal() 269 private MetaData (final CoverageOptions options, final HashMap classMap, in MetaData() 284 private /*final*/ HashMap /* classVMName:String->ClassDescriptor */ m_classMap; // [never null]
|
/external/webkit/WebCore/loader/ |
D | FormState.h | 43 …static PassRefPtr<FormState> create(PassRefPtr<HTMLFormElement> form, const HashMap<String, String… 46 const HashMap<String, String>& values() const { return m_values; } in values() 50 …FormState(PassRefPtr<HTMLFormElement> form, const HashMap<String, String>& values, PassRefPtr<Fram… 53 HashMap<String, String> m_values;
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | Schema.java | 18 import java.util.HashMap; 37 private HashMap theEntities = 38 new HashMap(); // String -> Character 39 private HashMap theElementTypes = 40 new HashMap(); // String -> ElementType
|
/external/webkit/WebCore/css/ |
D | CSSFontSelector.h | 70 HashMap<String, Vector<RefPtr<CSSFontFace> >*, CaseFoldingHash> m_fontFaces; 71 HashMap<String, Vector<RefPtr<CSSFontFace> >*, CaseFoldingHash> m_locallyInstalledFontFaces; 72 HashMap<String, HashMap<unsigned, RefPtr<CSSSegmentedFontFace> >*, CaseFoldingHash> m_fonts;
|
D | CSSCanvasValue.cpp | 50 HashMap<RenderObject*, IntSize>::const_iterator end = m_clients.end(); in canvasChanged() 51 …for (HashMap<RenderObject*, IntSize>::const_iterator curr = m_clients.begin(); curr != end; ++curr) in canvasChanged() 57 HashMap<RenderObject*, IntSize>::const_iterator end = m_clients.end(); in canvasResized() 58 …for (HashMap<RenderObject*, IntSize>::const_iterator curr = m_clients.begin(); curr != end; ++curr) in canvasResized()
|
/external/emma/core/java12/com/vladium/util/ |
D | IProperties.java | 15 import java.util.HashMap; 87 final HashMap map = new HashMap (); in wrap() 176 _clone.m_valueMap = (HashMap) m_valueMap.clone (); in copy() 198 _delegateClone.m_valueMap = (HashMap) delegate.m_valueMap.clone (); in copy() 299 PropertiesImpl (final HashMap values, final IMapper mapper) in PropertiesImpl() 302 m_valueMap = values != null ? values : new HashMap (); in PropertiesImpl() 354 private /*final*/ HashMap m_valueMap; // never null
|
/external/apache-http/src/org/apache/http/impl/client/ |
D | BasicCredentialsProvider.java | 33 import java.util.HashMap; 55 private final HashMap<AuthScope, Credentials> credMap; 62 this.credMap = new HashMap<AuthScope, Credentials>(); in BasicCredentialsProvider() 93 final HashMap<AuthScope, Credentials> map, in matchCredentials()
|
/external/webkit/WebCore/storage/ |
D | LocalStorageArea.cpp | 259 HashMap<String, String>::iterator it = m_changedItems.begin(); in syncTimerFired() 260 HashMap<String, String>::iterator end = m_changedItems.end(); in syncTimerFired() 315 HashMap<String, String> itemMap; in performImport() 331 HashMap<String, String>::iterator it = itemMap.begin(); in performImport() 332 HashMap<String, String>::iterator end = itemMap.end(); in performImport() 357 HashMap<String, String> items; in performSync() 394 HashMap<String, String>::iterator end = items.end(); in performSync() 396 for (HashMap<String, String>::iterator it = items.begin(); it != end; ++it) { in performSync()
|
/external/webkit/WebCore/page/ |
D | WindowFeatures.cpp | 160 bool WindowFeatures::boolFeature(const HashMap<String, String>& features, const char* key, bool def… in boolFeature() 162 HashMap<String, String>::const_iterator it = features.find(key); in boolFeature() 169 float WindowFeatures::floatFeature(const HashMap<String, String>& features, const char* key, float … in floatFeature() 171 HashMap<String, String>::const_iterator it = features.find(key); in floatFeature()
|
/external/webkit/WebCore/bindings/js/ |
D | JSDOMGlobalObject.h | 39 typedef HashMap<const JSC::ClassInfo*, RefPtr<JSC::Structure> > JSDOMStructureMap; 40 typedef HashMap<const JSC::ClassInfo*, JSC::JSObject*> JSDOMConstructorMap; 68 typedef HashMap<JSC::JSObject*, JSEventListener*> ListenersMap; 69 typedef HashMap<JSC::JSObject*, JSUnprotectedEventListener*> UnprotectedListenersMap;
|
/external/apache-http/src/org/apache/http/impl/auth/ |
D | RFC2617Scheme.java | 33 import java.util.HashMap; 75 this.params = new HashMap<String, String>(elements.length); in parseChallenge() 88 this.params = new HashMap<String, String>(); in getParameters()
|
/external/apache-http/src/org/apache/http/impl/ |
D | HttpConnectionMetricsImpl.java | 34 import java.util.HashMap; 56 private HashMap metricsCache; 129 this.metricsCache = new HashMap(); in setMetric()
|