/external/icu/icu4c/source/common/ |
D | hash.h | 30 class U_COMMON_API Hashtable : public UMemory { 44 Hashtable(UBool ignoreKeyCase, UErrorCode& status); 52 Hashtable(UBool ignoreKeyCase, int32_t size, UErrorCode& status); 60 Hashtable(UKeyComparator *keyComp, UValueComparator *valueComp, UErrorCode& status); 66 Hashtable(UErrorCode& status); 72 Hashtable(); 78 ~Hashtable(); 110 UBool equals(const Hashtable& that) const; 112 Hashtable(const Hashtable &other); // forbid copying of this class 113 Hashtable &operator=(const Hashtable &other); // forbid copying of this class [all …]
|
D | locutil.cpp | 24 static icu::Hashtable * LocaleUtility_cache = NULL; 51 LocaleUtility_cache = new Hashtable(status); in locale_utility_init() 203 const Hashtable* 215 Hashtable *cache = LocaleUtility_cache; in getAvailableLocaleNames() 221 Hashtable* htp; in getAvailableLocaleNames() 223 htp = (Hashtable*) cache->get(bundleID); in getAvailableLocaleNames() 227 htp = new Hashtable(status); in getAvailableLocaleNames() 246 Hashtable *t = static_cast<Hashtable *>(cache->get(bundleID)); in getAvailableLocaleNames()
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
D | DefaultSignedAttributeTableGenerator.java | 5 import java.util.Hashtable; 24 private final Hashtable table; 31 table = new Hashtable(); in DefaultSignedAttributeTableGenerator() 48 table = new Hashtable(); in DefaultSignedAttributeTableGenerator() 62 protected Hashtable createStandardAttributeTable( in createStandardAttributeTable() 65 Hashtable std = copyHashTable(table); in createStandardAttributeTable() 118 private static Hashtable copyHashTable(Hashtable paramsMap) in copyHashTable() 120 Hashtable newTable = new Hashtable(); in copyHashTable()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | NamespaceSupport2.java | 25 import java.util.Hashtable; 457 Hashtable prefixTable; 458 Hashtable uriTable; 459 Hashtable elementNameTable; 460 Hashtable attributeNameTable; 479 prefixTable = new Hashtable(); in Context2() 480 uriTable = new Hashtable(); in Context2() 575 Hashtable table; in processName() 580 elementNameTable=new Hashtable(); in processName() 584 attributeNameTable=new Hashtable(); in processName() [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/xslt/ |
D | EnvironmentCheck.java | 29 import java.util.Hashtable; 169 Hashtable hash = getEnvironmentHash(); in checkEnvironment() 215 public Hashtable getEnvironmentHash() in getEnvironmentHash() 218 Hashtable hash = new Hashtable(); in getEnvironmentHash() 248 protected boolean writeEnvironmentReport(Hashtable h) in writeEnvironmentReport() 365 Hashtable subhash = (Hashtable) v.elementAt(i); in logFoundJars() 409 public void appendEnvironmentReport(Node container, Document factory, Hashtable h) in appendEnvironmentReport() 516 Hashtable subhash = (Hashtable) v.elementAt(i); in appendFoundJars() 562 protected void checkSystemProperties(Hashtable h) in checkSystemProperties() 566 h = new Hashtable(); in checkSystemProperties() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
D | PKCS12BagAttributeCarrierImpl.java | 8 import java.util.Hashtable; 20 private Hashtable pkcs12Attributes; 23 PKCS12BagAttributeCarrierImpl(Hashtable attributes, Vector ordering) in PKCS12BagAttributeCarrierImpl() 31 this(new Hashtable(), new Vector()); in PKCS12BagAttributeCarrierImpl() 65 Hashtable getAttributes() in getAttributes() 80 out.writeObject(new Hashtable()); in writeObject() 107 if (obj instanceof Hashtable) in readObject() 109 this.pkcs12Attributes = (Hashtable)obj; in readObject()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/util/ |
D | PKCS12BagAttributeCarrierImpl.java | 9 import java.util.Hashtable; 24 private Hashtable pkcs12Attributes; 27 PKCS12BagAttributeCarrierImpl(Hashtable attributes, Vector ordering) in PKCS12BagAttributeCarrierImpl() 35 this(new Hashtable(), new Vector()); in PKCS12BagAttributeCarrierImpl() 69 Hashtable getAttributes() in getAttributes() 84 out.writeObject(new Hashtable()); in writeObject() 111 if (obj instanceof Hashtable) in readObject() 113 this.pkcs12Attributes = (Hashtable)obj; in readObject()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | tmutfmt.h | 52 class Hashtable; variable 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);
|
D | currpinf.h | 27 class Hashtable; variable 207 void deleteHash(Hashtable* hTable); 216 Hashtable* initHash(UErrorCode& status); 227 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status); 238 Hashtable* fPluralCountToCurrencyUnitPattern;
|
D | dtitvinf.h | 473 void deleteHash(Hashtable* hTable); 482 Hashtable* initHash(UErrorCode& status); 493 void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status); 504 Hashtable* fIntervalPatterns;
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | 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/ |
D | AttributeTable.java | 4 import java.util.Hashtable; 18 private Hashtable attributes = new Hashtable(); 21 Hashtable attrs) in AttributeTable() 163 public Hashtable toHashtable() in toHashtable() 200 private Hashtable copyTable( in copyTable() 201 Hashtable in) in copyTable() 203 Hashtable out = new Hashtable(); in copyTable()
|
/external/icu/icu4c/source/common/unicode/ |
D | caniter.h | 35 class Hashtable; variable 131 …static void U_EXPORT2 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCod… 190 …Hashtable *getEquivalents2(Hashtable *fillinResult, const char16_t *segment, int32_t segLen, UErro… 199 …Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const char16_t *segment, int32_t segLen,…
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/cms/ |
D | AttributeTable.java | 5 import java.util.Hashtable; 20 private Hashtable attributes = new Hashtable(); 23 Hashtable attrs) in AttributeTable() 165 public Hashtable toHashtable() in toHashtable() 202 private Hashtable copyTable( in copyTable() 203 Hashtable in) in copyTable() 205 Hashtable out = new Hashtable(); in copyTable()
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
D | MarshalHashtable.java | 46 public static final Class HASHTABLE_CLASS = new Hashtable().getClass(); 52 Hashtable instance = new Hashtable(); in readInstance() 75 Hashtable h = (Hashtable) instance; in writeInstance() 90 Hashtable h; 93 ItemSoapObject(Hashtable h) { in ItemSoapObject()
|
/external/icu/icu4c/source/tools/gennorm2/ |
D | extradata.h | 53 UnicodeString &dataString, Hashtable &previousMappings); 60 Hashtable previousNoNoMappingsCompYes; // If constructed in runtime code, pass in UErrorCode. 61 Hashtable previousNoNoMappingsCompBoundaryBefore; 62 Hashtable previousNoNoMappingsCompNoMaybeCC; 63 Hashtable previousNoNoMappingsEmpty;
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/ |
D | LocalVariableInfo.java | 21 import java.util.Hashtable; 37 private final Hashtable<String, Type> types = new Hashtable<>(); 39 private final Hashtable<String, String> names = new Hashtable<>();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/ |
D | NISTNamedCurves.java | 4 import java.util.Hashtable; 17 static final Hashtable objIds = new Hashtable(); 18 static final Hashtable names = new Hashtable();
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/nist/ |
D | NISTNamedCurves.java | 5 import java.util.Hashtable; 19 static final Hashtable objIds = new Hashtable(); 20 static final Hashtable names = new Hashtable();
|
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/ |
D | MDC.java | 19 import java.util.Hashtable; 55 public static Hashtable getContext() { in getContext() 59 return new Hashtable(map); in getContext() 61 return new Hashtable(); in getContext()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | XYSeriesRenderer.java | 26 import java.util.Hashtable; 35 public Hashtable<XYRegionFormatter, String> getUniqueRegionFormatters() { in getUniqueRegionFormatters() 37 Hashtable<XYRegionFormatter, String> found = new Hashtable<XYRegionFormatter, String>(); in getUniqueRegionFormatters()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ec/ |
D | CustomNamedCurves.java | 5 import java.util.Hashtable; 649 static final Hashtable nameToCurve = new Hashtable(); 650 static final Hashtable nameToOID = new Hashtable(); 651 static final Hashtable oidToCurve = new Hashtable(); 652 static final Hashtable oidToName = new Hashtable();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | X509ExtensionsGenerator.java | 4 import java.util.Hashtable; 18 private Hashtable extensions = new Hashtable(); 26 extensions = new Hashtable(); in reset()
|
D | X509Name.java | 5 import java.util.Hashtable; 227 public static final Hashtable DefaultSymbols = new Hashtable(); 233 public static final Hashtable RFC2253Symbols = new Hashtable(); 239 public static final Hashtable RFC1779Symbols = new Hashtable(); 244 public static final Hashtable DefaultLookUp = new Hashtable(); 250 public static final Hashtable OIDLookUp = DefaultSymbols; 256 public static final Hashtable SymbolLookUp = DefaultLookUp; 469 Hashtable attributes) in X509Name() 484 Hashtable attributes) in X509Name() 503 Hashtable attributes, in X509Name() [all …]
|
/external/nist-sip/java/gov/nist/core/ |
D | LexerCore.java | 29 import java.util.Hashtable; 85 protected static final Hashtable globalSymbolTable; 86 protected static final Hashtable lexerTables; 87 protected Hashtable currentLexer; 92 globalSymbolTable = new Hashtable(); 93 lexerTables = new Hashtable(); 114 protected Hashtable addLexer(String lexerName) { in addLexer() 115 currentLexer = (Hashtable) lexerTables.get(lexerName); in addLexer() 117 currentLexer = new Hashtable(); in addLexer() 130 this.currentLexer = new Hashtable(); in LexerCore()
|