HomeSort by relevance Sort by last modified time
    Searched refs:Hashtable (Results 1 - 25 of 204) 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/junit/src/junit/runner/
ClassPathTestCollector.java 5 import java.util.Hashtable;
26 Hashtable result = collectFilesInPath(classPath);
30 public Hashtable collectFilesInPath(String classPath) {
31 Hashtable result= collectFilesInRoots(splitClassPath(classPath));
35 Hashtable collectFilesInRoots(Vector roots) {
36 Hashtable result= new Hashtable(100);
43 void gatherFiles(File classRoot, String classFileName, Hashtable result) {
  /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);
225 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
236 Hashtable* fPluralCountToCurrencyUnitPattern;
tmutfmt.h 36 class Hashtable;
220 Hashtable* fTimeUnitToCountToPatterns[TimeUnit::UTIMEUNIT_FIELD_COUNT];
243 const char*, Hashtable*, UErrorCode&);
246 Hashtable* initHash(UErrorCode& status);
249 void deleteHash(Hashtable* htable);
252 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;
selfmt.h 31 class Hashtable;
356 Hashtable *parsedValuesHash;
369 void copyHashtable(Hashtable *other, UErrorCode& status);
  /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...]
  /dalvik/dx/src/junit/runner/
ClassPathTestCollector.java 23 Hashtable result = collectFilesInPath(classPath);
27 public Hashtable collectFilesInPath(String classPath) {
28 Hashtable result= collectFilesInRoots(splitClassPath(classPath));
32 Hashtable collectFilesInRoots(Vector roots) {
33 Hashtable<String,String> result= new Hashtable<String,String>(100);
40 void gatherFiles(File classRoot, String classFileName, Hashtable<String,String> result) {
  /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/src/main/java/org/bouncycastle/jce/provider/
PKCS12BagAttributeCarrierImpl.java 10 import java.util.Hashtable;
20 private Hashtable pkcs12Attributes;
23 PKCS12BagAttributeCarrierImpl(Hashtable attributes, Vector ordering)
31 this(new Hashtable(), new Vector());
65 Hashtable getAttributes()
80 out.writeObject(new Hashtable());
107 if (obj instanceof Hashtable)
109 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/src/main/java/org/bouncycastle/asn1/x509/
X509ExtensionsGenerator.java 9 import java.util.Hashtable;
17 private Hashtable extensions = new Hashtable();
25 extensions = new Hashtable();
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
X509Principal.java 5 import java.util.Hashtable;
65 Hashtable attributes)
78 Hashtable attributes)
129 Hashtable lookUp,
  /external/junit/src/junit/swingui/
TestTreeModel.java 4 import java.util.Hashtable;
22 private Hashtable fFailures= new Hashtable();
23 private Hashtable fErrors= new Hashtable();
24 private Hashtable fRunTests= new Hashtable();
186 fFailures= new Hashtable();
187 fRunTests= new Hashtable();
188 fErrors= new Hashtable();
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/nist/
NISTNamedCurves.java 10 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/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;
52 U_NAMESPACE_QUALIFIER Hashtable *unknownPropertyNames;

Completed in 941 milliseconds

1 2 3 4 5 6 7 8 9