Searched refs:HashMap (Results 1 - 25 of 904) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DMaterialList.java35 import java.util.HashMap;
43 public class MaterialList extends HashMap<String, Material> {
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryClassObject.java35 import java.util.HashMap;
40 HashMap<String, BinaryClassField> nameFields;
41 HashMap<Byte, BinaryClassField> aliasFields;
/external/srec/shared/include/
H A DHashMapImpl.h31 * HashMap implementation.
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* sel
[all...]
H A DHashMap.h2 * HashMap.h *
32 * @addtogroup HashMapModule HashMap API functions
47 * @param self HashMap handle
57 * @param self HashMap handle
66 * @param self HashMap handle
75 * @param self HashMap handle
84 * @param self HashMap handle
92 * @param self HashMap handle
100 * @param self HashMap handle
110 * @param self HashMap handl
153 HashMap; typedef in typeref:struct:HashMap_t
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DAddressMap.java20 import java.util.HashMap;
28 private final HashMap<Integer,Integer> map;
34 map = new HashMap<Integer,Integer>();
/external/srec/shared/src/
H A DHashMap.c2 * HashMap.c *
20 #include "HashMap.h"
25 ESR_ReturnCode HashMapPut(HashMap* self, const LCHAR* key, void* value)
32 ESR_ReturnCode HashMapRemove(HashMap* self, const LCHAR* key)
39 ESR_ReturnCode HashMapRemoveAndFree(HashMap* self, const LCHAR* key)
46 ESR_ReturnCode HashMapRemoveAtIndex(HashMap* self, const size_t index)
53 ESR_ReturnCode HashMapRemoveAll(HashMap* self)
60 ESR_ReturnCode HashMapRemoveAndFreeAll(HashMap* self)
67 ESR_ReturnCode HashMapContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists)
74 ESR_ReturnCode HashMapGetSize(HashMap* sel
[all...]
/external/srec/tools/grxmlcompile/
H A Dhashmap.cpp39 HashMap<T1,T2>::HashMap(): function in class:HashMap
45 void HashMap<T1,T2>::setName(std::string s)
51 bool HashMap<T1,T2>::insert( T1 const & index, T2 const & value)
63 bool HashMap<T1,T2>::remove( T1 const & index )
70 bool HashMap<T1,T2>::isEmpty()
77 bool HashMap<T1,T2>::clear()
86 bool HashMap<T1,T2>::getIndex( T2 const & value, T1 *index )
100 bool HashMap<T1,T2>::getFirst( T1 *index, T2 *value )
114 bool HashMap<T
[all...]
/external/smack/src/com/kenai/jbosh/
H A DBodyParserResults.java19 import java.util.HashMap;
34 new HashMap<BodyQName, String>();
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
H A DMaterialExtensionSet.java36 import java.util.HashMap;
45 private HashMap<String, MaterialExtension> extensions
46 = new HashMap<String, MaterialExtension>();
47 private HashMap<String, List<String>> nameMappings = new HashMap<String, List<String>>();
H A DMaterialExtension.java35 import java.util.HashMap;
45 private HashMap<String, String> textureMappings = new HashMap<String, String>();
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DProviderService_ImplTest.java25 import java.util.HashMap;
47 HashMap hm = new HashMap();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCustomElementUpgradeCandidateMap.h36 #include "wtf/HashMap.h"
60 typedef HashMap<Element*, CustomElementUpgradeCandidateMap*> DestructionObserverMap;
65 typedef HashMap<Element*, CustomElementDescriptor> UpgradeCandidateMap;
68 typedef HashMap<CustomElementDescriptor, ElementSet> UnresolvedDefinitionMap;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DVerticalPositionCache.h30 #include "wtf/HashMap.h"
47 const HashMap<RenderObject*, int>& mapToCheck = baselineType == AlphabeticBaseline ? m_alphabeticPositions : m_ideographicPositions;
48 const HashMap<RenderObject*, int>::const_iterator it = mapToCheck.find(renderer);
63 HashMap<RenderObject*, int> m_alphabeticPositions;
64 HashMap<RenderObject*, int> m_ideographicPositions;
/external/chromium_org/third_party/WebKit/Source/core/loader/archive/
H A DArchiveResourceCollection.h34 #include "wtf/HashMap.h"
53 HashMap<String, RefPtr<ArchiveResource> > m_subresources;
54 HashMap<String, RefPtr<MHTMLArchive> > m_subframes;
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFilterBuilder.h25 #include "wtf/HashMap.h"
66 HashMap<AtomicString, RefPtr<FilterEffect> >::iterator end = m_builtinEffects.end();
67 for (HashMap<AtomicString, RefPtr<FilterEffect> >::iterator iterator = m_builtinEffects.begin(); iterator != end; ++iterator)
71 HashMap<AtomicString, RefPtr<FilterEffect> > m_builtinEffects;
72 HashMap<AtomicString, RefPtr<FilterEffect> > m_namedEffects;
75 HashMap<RefPtr<FilterEffect>, FilterEffectSet> m_effectReferences;
76 HashMap<RenderObject*, FilterEffect*> m_effectRenderer;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DRefPtrHashMap.h26 // This specialization is a copy of HashMap for use with RefPtr keys, with overloaded functions
29 // FIXME: Find a way to do this with traits that doesn't require a copy of the HashMap template.
32 class HashMap<RefPtr<T>, MappedArg, HashArg, KeyTraitsArg, MappedTraitsArg> { class in namespace:WTF
65 void swap(HashMap&);
115 inline void HashMap<RefPtr<T>, U, V, W, X>::swap(HashMap& other)
121 inline int HashMap<RefPtr<T>, U, V, W, X>::size() const
127 inline int HashMap<RefPtr<T>, U, V, W, X>::capacity() const
133 inline bool HashMap<RefPtr<T>, U, V, W, X>::isEmpty() const
139 inline typename HashMap<RefPt
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DHashMapTest.java27 import java.util.HashMap;
96 HashMap hm;
113 * @tests java.util.HashMap#HashMap()
116 // Test for method java.util.HashMap()
117 new Support_MapTest2(new HashMap()).runTest();
119 HashMap hm2 = new HashMap();
120 assertEquals("Created incorrect HashMap", 0, hm2.size());
124 * @tests java.util.HashMap#HashMa
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderNamesCache.java3 import java.util.HashMap;
12 private static final HashMap lowercaseMap = new HashMap();
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DShadowEditTextTest.java10 import java.util.HashMap;
19 HashMap<String, String> hash = new HashMap<String, String>();
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DDexFileClassMap.java35 import java.util.HashMap;
41 private final HashMap<String, ClassDefItem> definedClasses = new HashMap<String, ClassDefItem>();
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DVerificationErrorType.java31 import java.util.HashMap;
45 private static HashMap<String, VerificationErrorType> verificationErrorTypesByName;
48 verificationErrorTypesByName = new HashMap<String, VerificationErrorType>();
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DWindowAndroid.java15 import java.util.HashMap;
34 protected HashMap<Integer, String> mIntentErrors;
43 mIntentErrors = new HashMap<Integer, String>();
128 if (errors instanceof HashMap) {
130 HashMap<Integer, String> intentErrors = (HashMap<Integer, String>) errors;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DQuotaTracker.h35 #include "wtf/HashMap.h"
58 typedef HashMap<String, unsigned long long> SizeMap;
60 HashMap<String, SizeMap> m_databaseSizes;
/external/doclava/src/com/google/doclava/apicheck/
H A DApiInfo.java23 import java.util.HashMap;
28 private HashMap<String, PackageInfo> mPackages
29 = new HashMap<String, PackageInfo>();
30 private HashMap<String, ClassInfo> mAllClasses
31 = new HashMap<String, ClassInfo>();
33 = new HashMap<ClassInfo, String>();
35 = new HashMap<ClassInfo, ArrayList<String>>();
78 public HashMap<String, PackageInfo> getPackages() {
/external/javassist/src/main/javassist/compiler/
H A DSymbolTable.java18 import java.util.HashMap;
21 public final class SymbolTable extends HashMap {

Completed in 879 milliseconds

1234567891011>>