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

1 2 3 4 5 6 7 8 9

  /external/icu4c/common/
hash.h 21 * Hashtable is a thin C++ wrapper around UHashtable, a general-purpose void*
22 * hashtable implemented in C. Hashtable is designed to be idiomatic and
25 * Hashtable is an INTERNAL CLASS.
27 class U_COMMON_API Hashtable : public UMemory {
35 * Construct a hashtable
39 Hashtable(UBool ignoreKeyCase, UErrorCode& status);
42 * Construct a hashtable
47 Hashtable(UKeyComparator *keyComp, UValueComparator *valueComp, UErrorCode& status);
50 * Construct a hashtable
    [all...]
locutil.h 28 static const Hashtable* getAvailableLocaleNames(const UnicodeString& bundleID);
  /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/icu4c/common/unicode/
caniter.h 33 class Hashtable;
128 static void U_EXPORT2 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status);
186 Hashtable *getEquivalents2(Hashtable *fillinResult, const UChar *segment, int32_t segLen, UErrorCode &status);
187 //Hashtable *getEquivalents2(const UnicodeString &segment, int32_t segLen, UErrorCode &status);
195 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
196 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
  /external/icu4c/i18n/unicode/
currpinf.h 27 class Hashtable;
206 void deleteHash(Hashtable* hTable);
215 Hashtable* initHash(UErrorCode& status);
226 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
237 Hashtable* fPluralCountToCurrencyUnitPattern;
tmutfmt.h 47 class Hashtable;
218 Hashtable* fTimeUnitToCountToPatterns[TimeUnit::UTIMEUNIT_FIELD_COUNT];
241 const char*, Hashtable*, UErrorCode&);
244 Hashtable* initHash(UErrorCode& status);
247 void deleteHash(Hashtable* htable);
250 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
dtitvinf.h 478 void deleteHash(Hashtable* hTable);
488 Hashtable* initHash(UErrorCode& status);
500 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
511 Hashtable* fIntervalPatterns;
  /libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java 26 import java.util.Hashtable;
41 private Hashtable ht10;
43 private Hashtable ht100;
45 private Hashtable htfull;
54 * java.util.Hashtable#Hashtable()
57 // Test for method java.util.Hashtable()
58 new Support_MapTest2(new Hashtable()).runTest();
60 Hashtable h = new Hashtable();
756 Hashtable<String,String> hashtable = new Hashtable<String,String>(); local
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DefaultSignedAttributeTableGenerator.java 4 import java.util.Hashtable;
21 private final Hashtable table;
28 table = new Hashtable();
45 table = new Hashtable();
57 * @return a filled in Hashtable of attributes.
59 protected Hashtable createStandardAttributeTable(
62 Hashtable std = (Hashtable)table.clone();
  /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/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashtableTest.java 26 import java.util.Hashtable;
39 private Hashtable ht10;
41 private Hashtable ht100;
43 private Hashtable htfull;
52 * @tests java.util.Hashtable#Hashtable()
55 // Test for method java.util.Hashtable()
56 new Support_MapTest2(new Hashtable()).runTest();
58 Hashtable h = new Hashtable();
693 Hashtable<String,String> hashtable = new Hashtable<String,String>(); local
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 38 import java.util.Hashtable;
46 private Hashtable Keys = new Hashtable();
48 private Hashtable Cert = new Hashtable();
50 private Hashtable Chain = new Hashtable();
52 private Hashtable Dates = new Hashtable();
54 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();
CRLReason.java 4 import java.util.Hashtable;
90 private static final Hashtable table = new Hashtable();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
X509Principal.java 5 import java.util.Hashtable;
75 Hashtable attributes)
88 Hashtable attributes)
139 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();
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 30 import java.util.Hashtable;
44 private Hashtable names = new Hashtable();
47 private Hashtable keys = new Hashtable();
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Keywords.java 23 import java.util.Hashtable;
33 private static Hashtable m_keywords = new Hashtable();
36 private static Hashtable m_axisnames = new Hashtable();
39 private static Hashtable m_nodetests = new Hashtable();
42 private static Hashtable m_nodetypes = new Hashtable();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 4 import java.util.Hashtable;
16 private Hashtable attributes = new Hashtable();
19 Hashtable attrs)
171 public Hashtable toHashtable()
208 private Hashtable copyTable(
209 Hashtable in)
211 Hashtable out = new Hashtable();
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 25 import java.util.Hashtable;
457 Hashtable prefixTable;
458 Hashtable uriTable;
459 Hashtable elementNameTable;
460 Hashtable attributeNameTable;
479 prefixTable = new Hashtable();
480 uriTable = new Hashtable();
575 Hashtable table;
580 elementNameTable=new Hashtable();
584 attributeNameTable=new Hashtable();
    [all...]
  /external/icu4c/test/intltest/
ucdtest.h 22 class Hashtable;
53 U_NAMESPACE_QUALIFIER Hashtable *unknownPropertyNames;

Completed in 826 milliseconds

1 2 3 4 5 6 7 8 9