HomeSort by relevance Sort by last modified time
    Searched refs:dictionaryRef (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit2/Shared/API/c/
WKDictionary.cpp 40 WKTypeRef WKDictionaryGetItemForKey(WKDictionaryRef dictionaryRef, WKStringRef key)
42 return toImpl(dictionaryRef)->get(toImpl(key)->string());
45 size_t WKDictionaryGetSize(WKDictionaryRef dictionaryRef)
47 return toImpl(dictionaryRef)->size();
50 WKArrayRef WKDictionaryCopyKeys(WKDictionaryRef dictionaryRef)
52 RefPtr<ImmutableArray> keys = toImpl(dictionaryRef)->keys();
WKMutableDictionary.cpp 40 bool WKDictionaryIsMutable(WKDictionaryRef dictionaryRef)
42 return toImpl(dictionaryRef)->isMutable();
45 bool WKDictionaryAddItem(WKMutableDictionaryRef dictionaryRef, WKStringRef keyRef, WKTypeRef itemRef)
47 return toImpl(dictionaryRef)->add(toImpl(keyRef)->string(), toImpl(itemRef));
50 bool WKDictionarySetItem(WKMutableDictionaryRef dictionaryRef, WKStringRef keyRef, WKTypeRef itemRef)
52 return toImpl(dictionaryRef)->set(toImpl(keyRef)->string(), toImpl(itemRef));
55 void WKDictionaryRemoveItem(WKMutableDictionaryRef dictionaryRef, WKStringRef keyRef)
57 toImpl(dictionaryRef)->remove(toImpl(keyRef)->string());
  /external/webkit/Source/WebKit/win/
WebHistoryItem.cpp 105 CFDictionaryRef dictionaryRef = (CFDictionaryRef) dictionary;
107 CFStringRef urlStringRef = (CFStringRef) CFDictionaryGetValue(dictionaryRef, urlKey);
111 CFStringRef lastVisitedRef = (CFStringRef) CFDictionaryGetValue(dictionaryRef, lastVisitedDateKey);
116 CFStringRef titleRef = (CFStringRef) CFDictionaryGetValue(dictionaryRef, titleKey);
120 CFNumberRef visitCountRef = (CFNumberRef) CFDictionaryGetValue(dictionaryRef, visitCountKey);
133 CFBooleanRef lastVisitWasFailureRef = static_cast<CFBooleanRef>(CFDictionaryGetValue(dictionaryRef, lastVisitWasFailureKey));
138 CFBooleanRef lastVisitWasHTTPNonGetRef = static_cast<CFBooleanRef>(CFDictionaryGetValue(dictionaryRef, lastVisitWasHTTPNonGetKey));
144 if (CFArrayRef redirectURLsRef = static_cast<CFArrayRef>(CFDictionaryGetValue(dictionaryRef, redirectURLsKey))) {
151 CFArrayRef dailyCounts = static_cast<CFArrayRef>(CFDictionaryGetValue(dictionaryRef, dailyVisitCountKey));
154 CFArrayRef weeklyCounts = static_cast<CFArrayRef>(CFDictionaryGetValue(dictionaryRef, weeklyVisitCountKey))
    [all...]

Completed in 483 milliseconds