/external/webkit/WebKitTools/Scripts/ |
D | update-sources-list.py | 48 groupName = "" 50 groupName = sourceGroup.attributes["var"].value 51 groupName = groupName.replace(sources_prefix, "") 59 assert(groupName != "") 62 sources[groupName] = sourcesList
|
/external/webkit/WebCore/page/ |
D | PageGroup.cpp | 73 PageGroup* PageGroup::pageGroup(const String& groupName) in pageGroup() argument 75 ASSERT(!groupName.isEmpty()); in pageGroup() 80 pair<PageGroupMap::iterator, bool> result = pageGroups->add(groupName, 0); in pageGroup() 84 result.first->second = new PageGroup(groupName); in pageGroup()
|
D | PageGroup.h | 45 static PageGroup* pageGroup(const String& groupName);
|
D | Page.h | 104 const String& groupName() const;
|
D | Page.cpp | 244 const String& Page::groupName() const in groupName() function in WebCore::Page
|
/external/webkit/WebKit/mac/WebView/ |
D | WebView.h | 192 - (id)initWithFrame:(NSRect)frame frameName:(NSString *)frameName groupName:(NSString *)groupName; 529 - (void)setGroupName:(NSString *)groupName; 535 - (NSString *)groupName;
|
D | WebViewPrivate.h | 400 - (id)_initWithFrame:(NSRect)f frameName:(NSString *)frameName groupName:(NSString *)groupName uses…
|
D | WebView.mm | 679 - (void)_commonInitializationWithFrameName:(NSString *)frameName groupName:(NSString *)groupName us… 732 [self setGroupName:groupName]; 764 - (id)_initWithFrame:(NSRect)f frameName:(NSString *)frameName groupName:(NSString *)groupName uses… 783 …[self _commonInitializationWithFrameName:frameName groupName:groupName usesDocumentViews:usesDocum… 2264 NSString *groupName = [arguments objectForKey:@"groupName"]; 2265 self = [self initWithFrame:frame frameName:frameName groupName:groupName]; 2280 return [self initWithFrame:f frameName:nil groupName:nil]; 2283 - (id)initWithFrame:(NSRect)f frameName:(NSString *)frameName groupName:(NSString *)groupName 2286 …return [[self _webkit_invokeOnMainThread] initWithFrame:f frameName:frameName groupName:groupName]; 2289 return [self _initWithFrame:f frameName:frameName groupName:groupName usesDocumentViews:YES]; [all …]
|
/external/webkit/WebKit/win/Interfaces/ |
D | IWebView.idl | 213 @method initWithFrame:frameName:groupName: 221 … @param groupName The name of the webView set to which this webView will be added. May be nil. 223 … - (id)initWithFrame:(NSRect)frame frameName:(NSString *)frameName groupName:(NSString *)groupName; 225 HRESULT initWithFrame([in] RECT frame, [in] BSTR frameName, [in] BSTR groupName); 564 @param groupName The name of the group for this WebView. 566 - (void)setGroupName:(NSString *)groupName; 568 HRESULT setGroupName([in] BSTR groupName); 571 @method groupName 573 - (NSString *)groupName; 575 HRESULT groupName([out, retval] BSTR* groupName);
|
D | IWebViewPrivate.idl | 133 …ULT standardUserAgentWithApplicationName([in] BSTR applicationName, [retval][out] BSTR* groupName);
|
/external/webkit/WebKit/win/ |
D | WebView.h | 102 /* [in] */ BSTR groupName); 231 /* [in] */ BSTR groupName); 233 virtual HRESULT STDMETHODCALLTYPE groupName( 234 /* [retval][out] */ BSTR *groupName); 641 /* [retval][out] */ BSTR *groupName);
|
D | WebView.cpp | 2145 /* [in] */ BSTR groupName) in initWithFrame() argument 2201 setGroupName(groupName); in initWithFrame() 2997 /* [in] */ BSTR groupName) in setGroupName() argument 3001 m_page->setGroupName(String(groupName, SysStringLen(groupName))); in setGroupName() 3005 HRESULT STDMETHODCALLTYPE WebView::groupName( in groupName() function in WebView 3006 /* [retval][out] */ BSTR* groupName) in groupName() argument 3008 *groupName = 0; in groupName() 3011 String groupNameString = m_page->groupName(); in groupName() 3012 *groupName = SysAllocStringLen(groupNameString.characters(), groupNameString.length()); in groupName() 3013 if (!*groupName && groupNameString.length()) in groupName() [all …]
|
D | ChangeLog | 4405 (WebView::groupName): Retrieve the group name directly from Page. 19541 (WebView::groupName): switch to WebCore::String storage
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
D | DumpRenderTree.cpp | 964 BSTR groupName = SysAllocString(L"org.webkit.DumpRenderTree"); in createWebViewAndOffscreenWindow() local 965 bool failed = FAILED(webView->initWithFrame(clientRect, 0, groupName)); in createWebViewAndOffscreenWindow() 966 SysFreeString(groupName); in createWebViewAndOffscreenWindow()
|
/external/webkit/WebKit/android/WebCoreSupport/ |
D | ChromeClientAndroid.cpp | 119 page->setGroupName(frame->page()->groupName()); in createWindow()
|
/external/webkit/WebKit/qt/Api/ |
D | qwebpage.cpp | 105 void QWEBKIT_EXPORT qt_webpage_setGroupName(QWebPage* page, const QString& groupName) in qt_webpage_setGroupName() argument 107 page->handle()->page->setGroupName(groupName); in qt_webpage_setGroupName() 112 return page->handle()->page->groupName(); in qt_webpage_groupName()
|
/external/webkit/WebKit/mac/ |
D | WebKit.order | 71 -[WebView(WebPrivate) _initWithFrame:frameName:groupName:usesDocumentViews:] 75 -[WebView(WebPrivate) _commonInitializationWithFrameName:groupName:usesDocumentViews:] 420 -[WebView initWithFrame:frameName:groupName:]
|
D | ChangeLog | 732 (-[WebView initWithFrame:frameName:groupName:]): 1005 …(-[WebView initWithFrame:frameName:groupName:]): Call needsWebViewInitThreadWorkaround and use _we… 1006 to call _initWithArguments: passing the frame, frameName and groupName. 1114 (-[WebView _commonInitializationWithFrameName:groupName:usesDocumentViews:]): Added a thread 1119 (-[WebView initWithFrame:frameName:groupName:]): Added a thread violation check here too, 4551 (-[WebView _commonInitializationWithFrameName:groupName:usesDocumentViews:]): 4552 (-[WebView _initWithFrame:frameName:groupName:usesDocumentViews:]): 4664 (-[WebView _commonInitializationWithFrameName:groupName:usesDocumentViews:]): 4665 (-[WebView initWithFrame:frameName:groupName:]): 4666 (-[WebView _initWithFrame:frameName:groupName:usesDocumentViews:]): [all …]
|
D | ChangeLog-2007-10-14 | 744 (-[WebView _commonInitializationWithFrameName:groupName:]): 2006 …(-[WebView _commonInitializationWithFrameName:groupName:]): Make a new WebInspectorClient when mak… 5422 (-[WebView _commonInitializationWithFrameName:groupName:]): 5635 (-[WebView initWithFrame:frameName:groupName:]): 6378 (-[WebView _commonInitializationWithFrameName:groupName:]): 7548 (-[WebView initWithFrame:frameName:groupName:]): 8120 (-[WebView _commonInitializationWithFrameName:groupName:]): 9103 (-[WebView _commonInitializationWithFrameName:groupName:]): 10599 (-[WebView _commonInitializationWithFrameName:groupName:]): 11257 (-[WebView _commonInitializationWithFrameName:groupName:]): [all …]
|
D | ChangeLog-2006-02-09 | 280 (-[WebView _commonInitializationWithFrameName:groupName:]): 873 (-[WebView _commonInitializationWithFrameName:groupName:]): ditto 990 (-[WebView _commonInitializationWithFrameName:groupName:]): 1399 (-[WebView _commonInitializationWithFrameName:groupName:]): ditto. 1943 (-[WebView groupName]): 2273 (-[WebView _commonInitializationWithFrameName:groupName:]): 3573 * WebView.subproj/WebView.m: (-[WebView initWithFrame:frameName:groupName:]): 3970 (-[WebView _commonInitializationWithFrameName:groupName:]): 7010 (-[WebView _commonInitializationWithFrameName:groupName:]): 7041 (-[WebView _commonInitializationWithFrameName:groupName:]): [all …]
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | DumpRenderTree.mm | 238 …WebView *webView = [[WebView alloc] initWithFrame:rect frameName:nil groupName:@"org.webkit.DumpRe… 292 WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:@"" groupName:@""];
|
/external/webkit/WebKit/qt/tests/qwebpage/ |
D | tst_qwebpage.cpp | 603 void QWEBKIT_EXPORT qt_webpage_setGroupName(QWebPage* page, const QString& groupName);
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-05-10 | 13984 * bridge/mac/WebCorePageBridge.h: Added setGroupName and groupName. 13987 (-[WebCorePageBridge groupName]): Ditto. 14058 * page/Page.h: Added setGroupName, groupName, frameNamespace, incrementFrameCount,
|
D | ChangeLog | 22917 (WebCore::Page::groupName): 24893 (WebCore::Page::groupName): Ditto
|
/external/webkit/WebKitTools/ |
D | ChangeLog | 10973 (createWebView): Pass group name to -[WebView initWithFrame:frameName:groupName:].
|