HomeSort by relevance Sort by last modified time
    Searched refs:Hashtable (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/common/
uhash_us.cpp 16 * Deleter for Hashtable objects.
21 delete (Hashtable*) obj;
hash.h 22 * Hashtable is a thin C++ wrapper around UHashtable, a general-purpose void*
23 * hashtable implemented in C. Hashtable is designed to be idiomatic and
26 * Hashtable is an INTERNAL CLASS.
28 class U_COMMON_API Hashtable : public UMemory {
36 * Construct a hashtable
40 Hashtable(UBool ignoreKeyCase, UErrorCode& status);
43 * Construct a hashtable
48 Hashtable(UKeyComparator *keyComp, UValueComparator *valueComp, UErrorCode& status);
51 * Construct a hashtable
    [all...]
  /external/icu/icu4c/source/common/
uhash_us.cpp 16 * Deleter for Hashtable objects.
21 delete (Hashtable*) obj;
hash.h 22 * Hashtable is a thin C++ wrapper around UHashtable, a general-purpose void*
23 * hashtable implemented in C. Hashtable is designed to be idiomatic and
26 * Hashtable is an INTERNAL CLASS.
28 class U_COMMON_API Hashtable : public UMemory {
36 * Construct a hashtable
40 Hashtable(UBool ignoreKeyCase, UErrorCode& status);
43 * Construct a hashtable
48 Hashtable(UKeyComparator *keyComp, UValueComparator *valueComp, UErrorCode& status);
51 * Construct a hashtable
    [all...]
  /libcore/luni/src/main/java/java/security/
PermissionsHash.java 21 import java.util.Hashtable;
24 * A default {@code PermissionCollection} implementation that uses a hashtable.
25 * Each hashtable entry stores a Permission object as both the key and the
36 private final Hashtable perms = new Hashtable();
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
KvmSerializable.java 27 import java.util.Hashtable;
68 void getPropertyInfo(int index, Hashtable properties, PropertyInfo info);
MarshalHashtable.java 33 * Serializes instances of hashtable to and from xml. This implementation is
46 public static final Class HASHTABLE_CLASS = new Hashtable().getClass();
52 Hashtable instance = new Hashtable();
75 Hashtable h = (Hashtable) instance;
90 Hashtable h;
93 ItemSoapObject(Hashtable h) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
HashtableTest.java 28 import java.util.Hashtable;
38 private Hashtable ht10;
40 private Hashtable ht100;
42 private Hashtable htfull;
51 * java.util.Hashtable#Hashtable()
54 // Test for method java.util.Hashtable()
55 new Support_MapTest2(new Hashtable()).runTest();
57 Hashtable h = new Hashtable();
777 Hashtable<String, String> hashtable = new Hashtable<String, String>(); local
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
caniter.h 33 class Hashtable;
129 static void U_EXPORT2 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status);
188 Hashtable *getEquivalents2(Hashtable *fillinResult, const UChar *segment, int32_t segLen, UErrorCode &status);
189 //Hashtable *getEquivalents2(const UnicodeString &segment, int32_t segLen, UErrorCode &status);
197 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
198 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
  /external/chromium_org/third_party/icu/source/i18n/unicode/
currpinf.h 25 class Hashtable;
204 void deleteHash(Hashtable* hTable);
213 Hashtable* initHash(UErrorCode& status);
224 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
235 Hashtable* fPluralCountToCurrencyUnitPattern;
tmutfmt.h 47 class Hashtable;
218 Hashtable* fTimeUnitToCountToPatterns[TimeUnit::UTIMEUNIT_FIELD_COUNT];
242 const char*, Hashtable*, UErrorCode&);
245 Hashtable* initHash(UErrorCode& status);
248 void deleteHash(Hashtable* htable);
251 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
dtitvinf.h 467 void deleteHash(Hashtable* hTable);
476 Hashtable* initHash(UErrorCode& status);
487 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
498 Hashtable* fIntervalPatterns;
  /external/icu/icu4c/source/common/unicode/
caniter.h 33 class Hashtable;
129 static void U_EXPORT2 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status);
188 Hashtable *getEquivalents2(Hashtable *fillinResult, const UChar *segment, int32_t segLen, UErrorCode &status);
189 //Hashtable *getEquivalents2(const UnicodeString &segment, int32_t segLen, UErrorCode &status);
197 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
198 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
  /external/icu/icu4c/source/i18n/unicode/
currpinf.h 25 class Hashtable;
204 void deleteHash(Hashtable* hTable);
213 Hashtable* initHash(UErrorCode& status);
224 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
235 Hashtable* fPluralCountToCurrencyUnitPattern;
tmutfmt.h 52 class Hashtable;
197 Hashtable* fTimeUnitToCountToPatterns[TimeUnit::UTIMEUNIT_FIELD_COUNT];
220 const char*, Hashtable*, UErrorCode&);
223 Hashtable* initHash(UErrorCode& status);
226 void deleteHash(Hashtable* htable);
229 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DefaultSignedAttributeTableGenerator.java 5 import java.util.Hashtable;
22 private final Hashtable table;
29 table = new Hashtable();
46 table = new Hashtable();
58 * @return a filled in Hashtable of attributes.
60 protected Hashtable createStandardAttributeTable(
63 Hashtable std = copyHashTable(table);
108 private static Hashtable copyHashTable(Hashtable paramsMap)
110 Hashtable newTable = new Hashtable()
    [all...]
  /frameworks/base/test-runner/src/junit/runner/
ClassPathTestCollector.java 24 Hashtable result = collectFilesInPath(classPath);
28 public Hashtable collectFilesInPath(String classPath) {
29 Hashtable result= collectFilesInRoots(splitClassPath(classPath));
33 Hashtable collectFilesInRoots(Vector roots) {
34 Hashtable result= new Hashtable(100);
41 void gatherFiles(File classRoot, String classFileName, Hashtable result) {
  /cts/tools/dasm/src/java_cup/
terminal.java 4 import java.util.Hashtable;
63 protected static Hashtable _all = new Hashtable();
80 protected static Hashtable _all_by_index = new Hashtable();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
PKCS12BagAttributeCarrierImpl.java 8 import java.util.Hashtable;
21 private Hashtable pkcs12Attributes;
24 PKCS12BagAttributeCarrierImpl(Hashtable attributes, Vector ordering)
32 this(new Hashtable(), new Vector());
66 Hashtable getAttributes()
81 out.writeObject(new Hashtable());
108 if (obj instanceof Hashtable)
110 this.pkcs12Attributes = (Hashtable)obj;
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 38 import java.util.Hashtable;
45 private Hashtable Keys = new Hashtable();
47 private Hashtable Cert = new Hashtable();
49 private Hashtable Chain = new Hashtable();
51 private Hashtable Dates = new Hashtable();
53 private Hashtable KeysSL = new Hashtable()
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 39 import java.util.Hashtable;
47 private Hashtable<String, Object> Keys = new Hashtable<String, Object>();
49 private Hashtable<String, Object> Cert = new Hashtable<String, Object>();
51 private Hashtable<String, Object> Chain = new Hashtable<String, Object>();
53 private Hashtable<String, Object> Dates = new Hashtable<String, Object>();
55 private Hashtable<String, Object> KeysSL = new Hashtable<String, Object>()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
ExtensionsGenerator.java 4 import java.util.Hashtable;
17 private Hashtable extensions = new Hashtable();
25 extensions = new Hashtable();
X509ExtensionsGenerator.java 4 import java.util.Hashtable;
19 private Hashtable extensions = new Hashtable();
27 extensions = new Hashtable();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
X509Principal.java 5 import java.util.Hashtable;
76 Hashtable attributes)
89 Hashtable attributes)
140 Hashtable lookUp,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/
NISTNamedCurves.java 4 import java.util.Hashtable;
17 static final Hashtable objIds = new Hashtable();
18 static final Hashtable names = new Hashtable();

Completed in 750 milliseconds

1 2 3 4 5 6 7 8 91011>>