Searched refs:allWebViewsSet (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebKit/win/
H A DWebView.cpp424 static HashSet<WebView*>& allWebViewsSet() function
426 static HashSet<WebView*> allWebViewsSet; local
427 return allWebViewsSet;
432 allWebViewsSet().add(this);
437 allWebViewsSet().remove(this);
635 HashSet<WebView*>::iterator end = allWebViewsSet().end();
636 for (HashSet<WebView*>::iterator it = allWebViewsSet().begin(); it != end; ++it) {
/external/webkit/Source/WebKit/mac/WebView/
H A DWebView.mm473 static CFMutableSetRef allWebViewsSet;
477 if (!allWebViewsSet)
480 [(NSMutableSet *)allWebViewsSet makeObjectsPerformSelector:selector];
485 if (allWebViewsSet)
486 CFSetRemoveValue(allWebViewsSet, self);
491 if (!allWebViewsSet)
492 allWebViewsSet = CFSetCreateMutable(NULL, 0, &NonRetainingSetCallbacks);
494 CFSetSetValue(allWebViewsSet, self);
1067 NSSet *webViewsToClose = [NSSet setWithSet:(NSSet *)allWebViewsSet];
5715 NSEnumerator *enumerator = [(NSMutableSet *)allWebViewsSet objectEnumerato
[all...]

Completed in 124 milliseconds