Searched defs:Dictionary (Results 1 - 7 of 7) sorted by relevance
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
H A D | DictionaryExtensions.cs | 68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key ) argument 105 public static void put<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key, TValue value ) argument 122 // disambiguates for Dictionary, which implements both IDictionary<T,K> and IDictionary 124 public static HashSet<TKey> keySet<TKey, TValue>( this Dictionary<TKey, TValue> map ) argument
|
/external/chromium/base/mac/ |
H A D | mac_util.h | 165 CF_TO_NS_MUTABLE_CAST_DECL(Dictionary); variable
|
/external/chromium/net/base/ |
H A D | sdch_manager.cc | 29 SdchManager::Dictionary::Dictionary(const std::string& dictionary_text, function in class:net::SdchManager::Dictionary 46 SdchManager::Dictionary::~Dictionary() { 49 bool SdchManager::Dictionary::CanAdvertise(const GURL& target_url) { 53 Avail-Dictionary header are modeled after the rules for cookie scoping. The 81 bool SdchManager::Dictionary::CanSet(const std::string& domain, 114 if (!Dictionary::DomainMatch(dictionary_url, domain)) { 141 bool SdchManager::Dictionary::CanUse(const GURL& referring_url) { 180 bool SdchManager::Dictionary [all...] |
H A D | sdch_manager.h | 81 // Dictionary selection for use problems. 89 // Dictionary saving problems. 99 // Dictionary loading problems. 117 // Dictionary manager issues. 121 META_REFRESH_RECOVERY = 70, // Dictionary not found. 162 // There is one instance of |Dictionary| for each memory-cached SDCH 164 class Dictionary : public base::RefCounted<Dictionary> { class in class:net::SdchManager 170 friend class base::RefCounted<Dictionary>; 177 Dictionary(cons [all...] |
/external/webkit/Source/WebCore/inspector/ |
H A D | InspectorValues.h | 160 typedef HashMap<String, RefPtr<InspectorValue> > Dictionary; typedef in class:WebCore::InspectorObject 163 typedef Dictionary::iterator iterator; 164 typedef Dictionary::const_iterator const_iterator; 209 Dictionary m_data;
|
/external/v8/src/ |
H A D | objects.h | 76 // - Dictionary 834 V(Dictionary) \ 1476 // properties is a FixedArray in the fast case and a Dictionary in the 2979 class Dictionary: public HashTable<Shape, Key> { class in namespace:v8::internal 2981 static inline Dictionary<Shape, Key>* cast(Object* obj) { 2982 return reinterpret_cast<Dictionary<Shape, Key>*>(obj); 3098 class StringDictionary: public Dictionary<StringDictionaryShape, String*> { 3152 : public Dictionary<SeededNumberDictionaryShape, uint32_t> { 3200 : public Dictionary<UnseededNumberDictionaryShape, uint32_t> {
|
H A D | objects.cc | 9951 void Dictionary<Shape, Key>::Print(FILE* out) { 9972 void Dictionary<Shape, Key>::CopyValuesTo(FixedArray* elements) { 9978 Object* k = Dictionary<Shape, Key>::KeyAt(i); 9979 if (Dictionary<Shape, Key>::IsKey(k)) { 10408 // Copy the keys from arguments first, because Dictionary::CopyKeysTo 11068 template class Dictionary<StringDictionaryShape, String*>; 11070 template class Dictionary<SeededNumberDictionaryShape, uint32_t>; 11072 template class Dictionary<UnseededNumberDictionaryShape, uint32_t>; 11074 template MaybeObject* Dictionary<SeededNumberDictionaryShape, uint32_t>:: 11077 template MaybeObject* Dictionary<UnseededNumberDictionaryShap 12255 CopyKeysTo( FixedArray* storage, PropertyAttributes filter, typename Dictionary<Shape, Key>::SortMode sort_mode) argument 12299 CopyKeysTo( FixedArray* storage, int index, typename Dictionary<Shape, Key>::SortMode sort_mode) argument [all...] |
Completed in 210 milliseconds