Searched refs:dict (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/macosx/native/java/util/
H A DSCDynamicStoreConfig.m100 NSMutableDictionary *dict = [NSMutableDictionary dictionary];
110 [dict setObject:(NSArray *)realmInfo forKey:realm];
114 return dict;
202 NSMutableDictionary *dict = [NSMutableDictionary dictionary];
206 [dict setObject:defaultRealmsDict forKey:@"libdefaults"];
209 [dict setObject:realmConfigs forKey:@"realms"];
215 [dict setObject:[(NSArray *)realmMappings objectAtIndex:0] forKey:@"domain_realm"];
228 jHashTable = [coercer coerceNSObject:dict withEnv:env];
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DVarArgsTest.java52 NSDictionary dict = ((NSDictionary)FND.NSDictionary().alloc()).initWithObjectsAndKeys(v1, k1, v2, k2, null);
54 NSString nsdescr = dict.description();
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsnamed.c821 _cmsDICT* dict = (_cmsDICT*) _cmsMallocZero(ContextID, sizeof(_cmsDICT)); local
822 if (dict == NULL) return NULL;
824 dict ->ContextID = ContextID;
825 return (cmsHANDLE) dict;
832 _cmsDICT* dict = (_cmsDICT*) hDict; local
835 _cmsAssert(dict != NULL);
838 entry = dict ->head;
843 if (entry ->Name != NULL) _cmsFree(dict ->ContextID, entry -> Name);
844 if (entry ->Value != NULL) _cmsFree(dict ->ContextID, entry -> Value);
848 _cmsFree(dict
868 _cmsDICT* dict = (_cmsDICT*) hDict; local
923 _cmsDICT* dict = (_cmsDICT*) hDict; local
[all...]
/openjdk7/jdk/src/solaris/native/java/lang/
H A Djava_props_macosx.c286 CFDictionaryRef dict = SCDynamicStoreCopyProxies(NULL); local
287 if (dict == NULL) return;
290 CFArrayRef cf_list = CFDictionaryGetValue(dict, kSCPropNetProxiesExceptionsList);
325 getProxyInfoForProtocol(dict, kSCPropNetProxies##PROTOCOL##Enable, \
344 CFRelease(dict);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DSystemDictionaryHelper.java55 SystemDictionary dict = VM.getVM().getSystemDictionary();
56 dict.classesDo(new SystemDictionary.ClassVisitor() {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSystemDictionary.java156 Dictionary dict = dictionary();
157 long hash = dict.computeHash(className, classLoader);
158 int index = dict.hashToIndex(hash);
159 return dict.find(index, hash, className, classLoader, protectionDomain);
/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.hpp69 // Return # of key-value pairs in dict
106 // Usage: for( DictI i(dict); i.test(); ++i ) { body = i.key; body = i.value;}
115 void reset( const Dict *dict ); // Reset existing iterator
H A Ddict.cpp26 #include "libadt/dict.hpp"
37 // #include "dict.hpp"
363 void DictI::reset( const Dict *dict ) {
364 _d = dict; // The dictionary
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.hpp69 // Return # of key-value pairs in dict
107 // Usage: for( DictI i(dict); i.test(); ++i ) { body = i.key; body = i.value;}
116 void reset( const Dict *dict ); // Reset existing iterator
H A Ddict2.cpp29 // #include "dict.hpp"
330 void DictI::reset( const Dict *dict ) {
331 _d = dict; // The dictionary
H A Dadlparse.hpp224 char *get_unique_ident(FormDict &dict, const char *nameDescription);
H A Dadlparse.cpp4037 // Lookup the root value in the operands dict to perform substitution
4443 char *ADLParser::get_unique_ident(FormDict& dict, const char* nameDescription){ argument
4450 if (dict[ident] != NULL) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassDump.java68 SystemDictionary dict = VM.getVM().getSystemDictionary();
69 dict.classesDo(new SystemDictionary.ClassVisitor() {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DPermStat.java98 SystemDictionary dict = VM.getVM().getSystemDictionary();
99 dict.classesDo(new SystemDictionary.ClassAndLoaderVisitor() {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java82 private SystemDictionary dict; field in class:VM
595 if (dict == null) {
596 dict = new SystemDictionary();
598 return dict;

Completed in 103 milliseconds