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

/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebView.mm523 static CFMutableSetRef allWebViewsSet;
527 if (!allWebViewsSet)
530 [(NSMutableSet *)allWebViewsSet makeObjectsPerformSelector:selector];
535 if (allWebViewsSet)
536 CFSetRemoveValue(allWebViewsSet, self);
541 if (!allWebViewsSet)
542 allWebViewsSet = CFSetCreateMutable(NULL, 0, &NonRetainingSetCallbacks);
544 CFSetSetValue(allWebViewsSet, self);
997 NSSet *webViewsToClose = [NSSet setWithSet:(NSSet *)allWebViewsSet];
6075 NSEnumerator *enumerator = [(NSMutableSet *)allWebViewsSet objectEnumerato
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebView.cpp460 static HashSet<WebView*>& allWebViewsSet() function
462 static HashSet<WebView*> allWebViewsSet; local
463 return allWebViewsSet;
468 allWebViewsSet().add(this);
473 allWebViewsSet().remove(this);
676 HashSet<WebView*>::iterator end = allWebViewsSet().end();
677 for (HashSet<WebView*>::iterator it = allWebViewsSet().begin(); it != end; ++it) {

Completed in 112 milliseconds