• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/

Lines Matching +refs:log +refs:view +refs:file

49     ViewUpdated: "view-updated"
197 var view = profile.existingView();
198 if (view) {
199 view.detach();
200 if ("dispose" in view)
201 view.dispose();
282 view: function(panel)
323 * @param {File} file
325 loadFromFile: function(file)
441 * @param {!File} file
443 _loadFromFile: function(file)
445 if (!file.name.endsWith(".heapsnapshot")) {
446 WebInspector.log(WebInspector.UIString("Only heap snapshots from files with extension '.heapsnapshot' can be loaded."));
452 WebInspector.log(WebInspector.UIString("Can't load profile when other profile is recording."));
456 var temporaryProfile = profileType.createTemporaryProfile(WebInspector.ProfilesPanelDescriptor.UserInitiatedProfileName + "." + file.name);
460 temporaryProfile.loadFromFile(file);
743 // make sure that view gets cleared when the last profile is removed.
759 var view = profile.view(this);
760 if (view === this.visibleView)
765 view.show(this.profileViews);
771 this.visibleView = view;
775 var statusBarItems = view.statusBarItems();
793 var view = profile.view(this);
794 view.changeView(viewName, function() {
795 view.dataGrid.highlightObjectByHeapSnapshotId(snapshotObjectId);
832 * @param {WebInspector.View} view
834 showView: function(view)
836 this._showProfile(view.profile);
893 function finishedCallback(view, searchMatches)
899 this._searchResults.push(view);
902 this.searchMatchFound(view, searchMatches);
906 if (view === visibleView)
907 view.jumpToFirstSearchResult();
920 var view = searchableViews[i];
928 if (!view)
931 view.currentQuery = query;
932 view.performSearch(query, boundFinishedCallback);
1030 var view = profiles[i].view(this);
1031 if (view.performSearch)
1032 searchableViews.push(view)
1043 searchMatchFound: function(view, matches)
1045 view.profile._profilesTreeElement.searchMatches = matches;
1052 var view = this._searchResults[i];
1053 if (view.searchCanceled)
1054 view.searchCanceled();
1055 delete view.currentQuery;
1219 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Dominators view" : "Reveal in Dominators View"), revealInView.bind(this, "Dominators"));
1220 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Summary view" : "Reveal in Summary View"), revealInView.bind(this, "Summary"));
1344 WebInspector.SidebarTreeElement.call(this, "profile-launcher-view-tree-item", WebInspector.UIString("Profiles"), "", null, false);