Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
262,900 | Font () { return EditorFontType.getGlobalPlainFont().deriveFont(UISettingsUtils.getInstance().getScaledEditorFontSize()); } | getEditorFont |
262,901 | Font () { return getEditorFont(); } | getCommitMessageFont |
262,902 | Font () { return StartupUiUtil.getLabelFont(); } | getCommitMetadataFont |
262,903 | int (@NotNull Font font, @NotNull Graphics g) { FontRenderContext context = ((Graphics2D)g).getFontRenderContext(); char[] chars = {'G', 'l', 'd', 'h', 'f'}; double y = font.layoutGlyphVector(context, chars, 0, chars.length, Font.LAYOUT_LEFT_TO_RIGHT).getVisualBounds().getY(); return Math.toIntExact(Math.round(Math.cei... | getStandardAscent |
262,904 | boolean (@NotNull Project project, @NotNull VirtualFile file) { ProjectFileIndex fileIndex = ProjectFileIndex.getInstance(project); return fileIndex.isExcluded(file) || GeneratedSourcesFilter.isGeneratedSourceByAnyFilter(file, project); } | isGeneratedOrExcluded |
262,905 | List<VirtualFile> (@NotNull Collection<? extends VirtualFile> files, @NotNull Project project) { return ContainerUtil.filter(files, file -> !isGeneratedOrExcluded(project, file)); } | filterOutGeneratedAndExcludedFiles |
262,906 | PsiFile[] (final Project project, final Collection<? extends VirtualFile> selectedFiles) { ArrayList<PsiFile> result = new ArrayList<>(); PsiManager psiManager = PsiManager.getInstance(project); IProjectStore projectStore = ProjectKt.getStateStore(project); for (VirtualFile file : selectedFiles) { if (file.isValid()) {... | getPsiFiles |
262,907 | boolean (@NotNull Project project, @NotNull VirtualFile file) { ProjectFileIndex index = ProjectRootManager.getInstance(project).getFileIndex(); return index.isInContent(file) && !index.isInLibrarySource(file); } | isFileUnderSourceRoot |
262,908 | boolean (@NotNull Project project, @NotNull VirtualFile file) { return OutOfSourcesChecker.EP_NAME.getExtensionList().stream() .anyMatch(checker -> FileTypeRegistry.getInstance().isFileOfType(file, checker.getFileType()) && checker.isOutOfSources(project, file)); } | isOutOfSources |
262,909 | void (@NotNull Project project, @NotNull JCheckBox checkBox, @NotNull @Nls String tooltip) { boolean dumb = DumbService.isDumb(project); checkBox.setEnabled(!dumb); checkBox.setToolTipText(dumb ? tooltip : ""); } | disableWhenDumb |
262,910 | Project () { return myProject; } | getProject |
262,911 | void () { List<? extends Change> changes = filter(myChanges, it -> it.getAfterRevision() != null); for (int i = 0; i < changes.size(); i++) { Change change = changes.get(i); ContentRevision beforeRevision = change.getBeforeRevision(); ContentRevision afterRevision = requireNonNull(change.getAfterRevision()); FilePath a... | execute |
262,912 | void (double value) { ProgressIndicator indicator = getGlobalProgressIndicator(); if (indicator != null) { indicator.setFraction(value); } } | fraction |
262,913 | List<TodoItem> (@NotNull PsiFile psiFile, boolean isLight) { if (!isLight) ApplicationManager.getApplication().assertReadAccessAllowed(); PsiTodoSearchHelper searchHelper = PsiTodoSearchHelper.getInstance(myProject); TodoItem[] todoItems = isLight ? searchHelper.findTodoItemsLight(psiFile) : searchHelper.findTodoItems(... | collectTodoItems |
262,914 | List<TodoItem> (TodoItem @NotNull [] items, @Nullable TodoFilter filter) { record ByRange(@NotNull TextRange range, @NotNull TodoItem item) { @Override public boolean equals(Object obj) { return obj instanceof ByRange br && range.equals(br.range); } @Override public int hashCode() { return range.hashCode(); } } return ... | applyFilterAndRemoveDuplicatesAndSort |
262,915 | boolean (Object obj) { return obj instanceof ByRange br && range.equals(br.range); } | equals |
262,916 | int () { return range.hashCode(); } | hashCode |
262,917 | boolean () { myBeforeContent = getRevisionContent(myBeforeRevision); if (myBeforeContent == null) { mySkipped.add(Pair.create(myAfterFile, VcsBundle.message("checkin.can.not.load.previous.revision"))); return false; } return true; } | loadContents |
262,918 | List<LineFragment> () { ProgressIndicator indicator = notNull(ProgressManager.getInstance().getProgressIndicator(), DumbProgressIndicator.INSTANCE); return ComparisonManager.getInstance().compareLines(myBeforeContent, myAfterContent, ComparisonPolicy.DEFAULT, indicator); } | computeFragments |
262,919 | boolean () { myBeforeContent = getRevisionContent(myBeforeRevision); if (myBeforeContent == null) { mySkipped.add(Pair.create(myAfterFile, VcsBundle.message("checkin.can.not.load.previous.revision"))); return false; } myAfterChangeContent = getRevisionContent(myAfterChangeRevision); if (myAfterChangeContent == null) { ... | loadContents |
262,920 | List<LineFragment> () { LineOffsets beforeLineOffsets = LineOffsetsUtil.create(myBeforeContent); LineOffsets afterChangeLineOffsets = LineOffsetsUtil.create(myAfterChangeContent); LineOffsets afterLineOffsets = LineOffsetsUtil.create(myAfterContent); FairDiffIterable committedLines = RangesBuilder.compareLines(myBefore... | computeFragments |
262,921 | List<TodoItem> () { PsiFile beforePsiFile = ReadAction.compute( () -> PsiFileFactory.getInstance(myProject).createFileFromText("old" + myAfterFile.getName(), myAfterFile.getFileType(), myBeforeContent)); return collectTodoItems(beforePsiFile, true); } | computeOldTodoItems |
262,922 | Set<TodoItem> () { return myAddedOrEditedTodos; } | getAddedOrEditedTodos |
262,923 | Set<TodoItem> () { return myInChangedTodos; } | getInChangedTodos |
262,924 | String (TodoItem item, final String content) { StringJoiner joiner = new StringJoiner("\n"); joiner.add(getTodoPartText(content, item.getTextRange())); item.getAdditionalTextRanges().forEach(r -> joiner.add(getTodoPartText(content, r))); return joiner.toString(); } | getTodoText |
262,925 | String (String content, TextRange textRange) { final String fragment = textRange.substring(content); return StringUtil.join(fragment.split("\\s"), " "); //NON-NLS } | getTodoPartText |
262,926 | String (@NotNull ContentRevision revision) { try { String content = revision.getContent(); return content != null ? StringUtil.convertLineSeparators(content) : null; } catch (VcsException e) { LOG.info(e); return null; } } | getRevisionContent |
262,927 | TextRange (LineFragment o) { int start = o.getStartOffset1(); int end = o.getEndOffset1(); int prevLineStart = myContent.lastIndexOf('\n', start - 2) + 1; return new TextRange(prevLineStart, Math.max(start, end - 1)); } | convert |
262,928 | TextRange (LineFragment o) { int start = o.getStartOffset2(); int end = o.getEndOffset2(); int prevLineStart = myContent.lastIndexOf('\n', start - 2) + 1; return new TextRange(prevLineStart, Math.max(start, end - 1)); } | convert |
262,929 | Set<TodoItem> () { final Set<TodoItem> set = new HashSet<>(); set.addAll(getAddedOrEditedTodos()); set.addAll(getInChangedTodos()); return set; } | inOneList |
262,930 | List<Change> () { return new ArrayList<>(myChanges); } | getChanges |
262,931 | void (final Collection<? extends VirtualFile> files, @Nullable final String changelist) { try { EditFileProvider provider = myVcs.getEditFileProvider(); assert provider != null; provider.editFiles(VfsUtilCore.toVirtualFileArray(files)); } catch (VcsException e) { Messages.showErrorDialog(VcsBundle.message("message.text... | processFiles |
262,932 | List<String> () { return ContainerUtil.map(myChangeListManager.getChangeLists(), FUNCTION); } | getChangelists |
262,933 | String () { return myChangeListManager.getDefaultListName(); } | getDefaultChangelist |
262,934 | HandleType (final VirtualFile file) { if (! myProject.isInitialized()) return null; AbstractVcs vcs = ProjectLevelVcsManager.getInstance(myProject).getVcsFor(file); if (vcs != null) { boolean fileExistsInVcs = vcs.fileExistsInVcs(VcsUtil.getFilePath(file)); if (fileExistsInVcs && vcs.getEditFileProvider() != null) { re... | createHandleType |
262,935 | AnnotatedLineModificationDetails (@NotNull String beforeContent, @NotNull String afterContent, @NotNull String originalLine) { List<LineFragment> fragments = compareContents(beforeContent, afterContent); LineOffsets afterLineOffsets = LineOffsetsUtil.create(afterContent); int originalLineNumber = findOriginalLine(after... | createDetailsFor |
262,936 | AnnotatedLineModificationDetails (@Nullable String beforeContent, @NotNull String afterContent, int originalLineNumber) { LineOffsets afterLineOffsets = LineOffsetsUtil.create(afterContent); if (originalLineNumber >= afterLineOffsets.getLineCount()) { return null; // invalid line or content } String lineContentAfter = ... | createDetailsFor |
262,937 | AnnotatedLineModificationDetails (@NotNull String lineContentAfter, @NotNull LineOffsets afterLineOffsets, @NotNull List<? extends LineFragment> fragments, int originalLineNumber) { LineFragment lineFragment = ContainerUtil.find(fragments.iterator(), fragment -> { return fragment.getStartLine2() <= originalLineNumber &... | createFragmentDetails |
262,938 | AnnotatedLineModificationDetails (@NotNull String lineContentAfter) { InnerChange innerChange = new InnerChange(0, lineContentAfter.length(), InnerChangeType.INSERTED); return new AnnotatedLineModificationDetails(lineContentAfter, singletonList(innerChange)); } | createNewLineDetails |
262,939 | AnnotatedLineModificationDetails (@NotNull String lineContentAfter) { InnerChange innerChange = new InnerChange(0, lineContentAfter.length(), InnerChangeType.MODIFIED); return new AnnotatedLineModificationDetails(lineContentAfter, singletonList(innerChange)); } | createModifiedLineDetails |
262,940 | List<LineFragment> (@NotNull String beforeContent, @NotNull String afterContent) { ProgressIndicator indicator = ObjectUtils.chooseNotNull(ProgressIndicatorProvider.getGlobalProgressIndicator(), DumbProgressIndicator.INSTANCE); return ComparisonManager.getInstance().compareLinesInner(beforeContent, afterContent, Compar... | compareContents |
262,941 | int (@NotNull String afterContent, @NotNull LineOffsets afterLineOffsets, @NotNull String originalLine, @NotNull List<? extends LineFragment> fragments) { for (LineFragment fragment : fragments) { for (int i = fragment.getStartLine2(); i < fragment.getEndLine2(); i++) { String line = getLine(afterContent, afterLineOffs... | findOriginalLine |
262,942 | String (@NotNull String text, @NotNull LineOffsets lineOffsets, int line) { int lineStart = lineOffsets.getLineStart(line); int lineEnd = lineOffsets.getLineEnd(line); return text.substring(lineStart, lineEnd); } | getLine |
262,943 | void (@NotNull @Nls String text) { sb.append(myAsHtml ? XmlStringUtil.escapeString(text) : text); } | append |
262,944 | void (@NotNull @Nls String text) { sb.append(text); } | appendRaw |
262,945 | void (@NotNull VcsRevisionNumber revisionNumber, @Nullable Convertor<? super VcsRevisionNumber, String> linkBuilder) { appendNewline(); String revision; if (myAsHtml) { revision = linkBuilder != null ? linkBuilder.convert(revisionNumber) : null; if (revision == null) { revision = XmlStringUtil.escapeString(revisionNumb... | appendRevisionLine |
262,946 | void (@NotNull @Nls String content) { appendNewline(); append(content); } | appendLine |
262,947 | void (@NotNull @Nls String message) { append("\n\n"); appendTextWithLinks(message); } | appendCommitMessageBlock |
262,948 | void (@NotNull @Nls String message) { if (myAsHtml) { appendRaw(IssueLinkHtmlRenderer.formatTextWithLinks(myProject, message)); } else { append(VcsUtil.trimCommitMessageToSaneSize(message)); } } | appendTextWithLinks |
262,949 | void () { if (sb.length() != 0) append("\n"); } | appendNewline |
262,950 | String () { return sb.toString(); } | toString |
262,951 | String (@NotNull Project project, boolean asHtml, @NotNull @Nls String prefix, @NotNull @NlsSafe String revision, @Nullable @Nls String commitMessage) { AnnotationTooltipBuilder builder = new AnnotationTooltipBuilder(project, asHtml); builder.append(prefix); builder.append(" "); builder.append(revision); if (commitMess... | buildSimpleTooltip |
262,952 | void (@NotNull VirtualFilePropertyEvent event) { if (!event.isFromRefresh()) return; if (VirtualFile.PROP_WRITABLE.equals(event.getPropertyName())) { if (((Boolean)event.getOldValue()).booleanValue()) { closeAnnotations(event.getFile()); } } } | propertyChanged |
262,953 | void (@NotNull VirtualFileEvent event) { VirtualFile file = event.getFile(); if (!event.isFromRefresh()) return; if (!file.isWritable()) { closeAnnotations(file); } } | contentsChanged |
262,954 | void (@NotNull VirtualFile file) { VcsAnnotationLocalChangesListener annotationsListener = ProjectLevelVcsManager.getInstance(myProject).getAnnotationLocalChangesListener(); annotationsListener.invalidateAnnotationsFor(file, myVcsKey); } | closeAnnotations |
262,955 | void (int lineNumber, VcsRevisionNumber revisionNumber) { assert lineNumber >= 0 && mySize > lineNumber; myMap.put(lineNumber, revisionNumber); } | put |
262,956 | int () { return mySize; } | getNumLines |
262,957 | VcsRevisionNumber (int lineNumber) { assert lineNumber >= 0 && mySize > lineNumber; return myMap.get(lineNumber); } | getRevision |
262,958 | boolean () { return myMap.isEmpty(); } | isEmpty |
262,959 | DefaultVcsRootPolicy (Project project) { return project.getService(DefaultVcsRootPolicy.class); } | getInstance |
262,960 | String () { boolean isDirectoryBased = ProjectKt.isDirectoryBased(myProject); if (isDirectoryBased) { String fileName = ProjectKt.getStateStore(myProject).getDirectoryStorePath().getFileName().toString(); return VcsBundle.message("settings.vcs.mapping.project.description.with.idea.directory", fileName); } return VcsBun... | getProjectConfigurationMessage |
262,961 | void () { ProjectLevelVcsManagerEx vcsManager = ProjectLevelVcsManagerEx.getInstanceEx(myProject); if (StringUtil.isNotEmpty(vcsManager.haveDefaultMapping())) { vcsManager.scheduleMappedRootsUpdate(); } } | scheduleMappedRootsUpdate |
262,962 | void (Collection<VirtualFile> removed, Collection<VirtualFile> added) { myProject.getService(ModuleVcsDetector.class).scheduleScanForNewContentRoots(removed, added); } | scheduleRootsChangeProcessing |
262,963 | VcsKey () { return myVcs.getKeyInstanceMethod(); } | getSupportedVcs |
262,964 | boolean (@NotNull VirtualFile file) { if (myVcsDescriptor == null) return false; return myVcsDescriptor.probablyUnderVcs(file); } | isRoot |
262,965 | boolean (@NotNull VirtualFile file) { return true; } | validateRoot |
262,966 | boolean (@NotNull String dirName) { if (myVcsDescriptor == null) return false; return myVcsDescriptor.matchesVcsDirPattern(dirName); } | isVcsDir |
262,967 | boolean () { if (myVcsDescriptor == null) return false; return myVcsDescriptor.areChildrenValidMappings(); } | areChildrenValidMappings |
262,968 | void (final VcsErrorViewPanel errorTreeView, @NotNull @NlsContexts.TabTitle String tabDisplayName) { CommandProcessor commandProcessor = CommandProcessor.getInstance(); commandProcessor.executeCommand(myProject, () -> { final MessageView messageView = MessageView.getInstance(myProject); messageView.runWhenInitialized((... | openMessagesView |
262,969 | void (@NotNull VcsHistoryProvider historyProvider, @NotNull FilePath path, @NotNull AbstractVcs vcs) { showFileHistory(historyProvider, vcs.getAnnotationProvider(), path, vcs); } | showFileHistory |
262,970 | void (@NotNull VcsHistoryProvider historyProvider, @Nullable AnnotationProvider annotationProvider, @NotNull FilePath path, @NotNull AbstractVcs vcs) { FileHistoryRefresherI refresher = FileHistoryRefresher.findOrCreate(historyProvider, path, vcs); refresher.selectContent(); refresher.refresh(true); } | showFileHistory |
262,971 | void (@NotNull VcsHistoryProviderEx historyProvider, @NotNull FilePath path, @NotNull AbstractVcs vcs, @Nullable VcsRevisionNumber startingRevisionNumber) { FileHistoryRefresherI refresher = FileHistoryRefresher.findOrCreate(historyProvider, path, vcs, startingRevisionNumber); refresher.selectContent(); refresher.refre... | showFileHistory |
262,972 | Collection<VirtualFile> (List<? extends VirtualFile> files, String title, @Nullable String prompt, @Nullable String singleFileTitle, @Nullable String singleFilePromptTemplate, @NotNull VcsShowConfirmationOption confirmationOption) { if (files == null || files.isEmpty()) { return null; } final String okActionName = Comm... | selectFilesToProcess |
262,973 | Collection<FilePath> (@NotNull List<? extends FilePath> files, String title, @Nullable String prompt, @Nullable String singleFileTitle, @Nullable String singleFilePromptTemplate, @NotNull VcsShowConfirmationOption confirmationOption, @Nullable String okActionName, @Nullable String cancelActionName) { if (files.size() =... | selectFilePathsToProcess |
262,974 | Collection<FilePath> (@NotNull List<? extends FilePath> files, String title, @Nullable String prompt, @Nullable String singleFileTitle, @Nullable String singleFilePromptTemplate, @NotNull VcsShowConfirmationOption confirmationOption) { return selectFilePathsToProcess(files, title, prompt, singleFileTitle, singleFilePro... | selectFilePathsToProcess |
262,975 | void (final List<? extends VcsException> abstractVcsExceptions, @NotNull final String tabDisplayName) { showErrorsImpl(abstractVcsExceptions.isEmpty(), () -> abstractVcsExceptions.get(0), tabDisplayName, vcsErrorViewPanel -> addDirectMessages(vcsErrorViewPanel, abstractVcsExceptions)); } | showErrors |
262,976 | boolean (@NotNull Collection<? extends Change> changes, @NotNull LocalChangeList initialChangeList, @NotNull String commitMessage, @Nullable CommitResultHandler customResultHandler) { return CommitChangeListDialog.commitVcsChanges(myProject, changes, initialChangeList, commitMessage, customResultHandler); } | commitChanges |
262,977 | void (VcsErrorViewPanel vcsErrorViewPanel, List<? extends VcsException> abstractVcsExceptions) { for (final VcsException exception : abstractVcsExceptions) { String[] messages = getExceptionMessages(exception); vcsErrorViewPanel.addMessage(getErrorCategory(exception), messages, exception.getVirtualFile(), -1, -1, null)... | addDirectMessages |
262,978 | String[] (@NotNull VcsException exception) { String[] messages = exception.getMessages(); if (messages.length == 0) messages = new String[]{VcsBundle.message("exception.text.unknown.error")}; final List<String> list = new ArrayList<>(); for (String message : messages) { list.addAll(StringUtil.split(StringUtil.convertLi... | getExceptionMessages |
262,979 | void (final boolean isEmpty, final Supplier<? extends VcsException> firstGetter, @NotNull @NlsContexts.TabTitle String tabDisplayName, final Consumer<? super VcsErrorViewPanel> viewFiller) { if (ApplicationManager.getApplication().isUnitTestMode()) { if (!isEmpty) { VcsException exception = firstGetter.get(); if (!hand... | showErrorsImpl |
262,980 | boolean (VcsException exception) { if (myCustomHandler != null) { myCustomHandler.consume(exception); return true; } return false; } | handleCustom |
262,981 | void (final Map<HotfixData, List<VcsException>> exceptionGroups, @NotNull String tabDisplayName) { showErrorsImpl(exceptionGroups.isEmpty(), () -> { final List<VcsException> exceptionList = exceptionGroups.values().iterator().next(); return exceptionList == null ? null : (exceptionList.isEmpty() ? null : exceptionList.... | showErrors |
262,982 | int (VcsException exception) { if (exception.isWarning()) { return MessageCategory.WARNING; } else { return MessageCategory.ERROR; } } | getErrorCategory |
262,983 | List<VcsException> (AbstractVcs vcs, TransactionRunnable runnable, Object vcsParameters) { List<VcsException> exceptions = new ArrayList<>(); TransactionProvider transactionProvider = vcs.getTransactionProvider(); boolean transactionSupported = transactionProvider != null; if (transactionSupported) { transactionProvide... | runTransactionRunnable |
262,984 | void (FileAnnotation annotation, VirtualFile file, AbstractVcs vcs) { showAnnotation(annotation, file, vcs, 0); } | showAnnotation |
262,985 | void (FileAnnotation annotation, VirtualFile file, AbstractVcs vcs, int line) { TextEditor textFileEditor; FileEditor fileEditor = FileEditorManager.getInstance(myProject).getSelectedEditor(file); if (fileEditor instanceof TextEditor) { textFileEditor = ((TextEditor)fileEditor); } else { FileEditor[] editors = FileEdit... | showAnnotation |
262,986 | ChangesBrowserDialog (CommittedChangesTableModel changelists, @Nullable @NlsContexts.DialogTitle String title, @Nullable Component parent, Consumer<? super ChangesBrowserDialog> initRunnable) { final ChangesBrowserDialog.Mode mode = ChangesBrowserDialog.Mode.Browse; final ChangesBrowserDialog dlg = parent != null ? new... | createChangesBrowserDialog |
262,987 | void (@NotNull CommittedChangeList changelist, @Nullable String title) { LoadingCommittedChangeListPanel panel = new LoadingCommittedChangeListPanel(myProject); panel.setChangeList(changelist, null); ChangeListViewerDialog.show(myProject, title, panel); } | showChangesListBrowser |
262,988 | void (@NotNull Collection<Change> changes, @Nullable String title) { LoadingCommittedChangeListPanel panel = new LoadingCommittedChangeListPanel(myProject); panel.setChanges(changes, null); ChangeListViewerDialog.show(myProject, title, panel); } | showWhatDiffersBrowser |
262,989 | List<VirtualFile> (@NotNull List<? extends VirtualFile> files, @NotNull MergeProvider provider, @NotNull MergeDialogCustomizer mergeDialogCustomizer) { if (files.isEmpty()) return Collections.emptyList(); RefreshVFsSynchronously.refreshVirtualFiles(files); final MultipleFileMergeDialog fileMergeDialog = new MultipleFil... | showMergeDialog |
262,990 | void (@NotNull CommittedChangesProvider provider, @NotNull RepositoryLocation location, @Nullable String title, @Nullable Component parent) { ChangesBrowserSettingsEditor filterUI = provider.createFilterUI(true); CommittedChangesFilterDialog filterDialog = new CommittedChangesFilterDialog(myProject, filterUI, provider.... | showCommittedChangesBrowser |
262,991 | void (@NotNull CommittedChangesProvider provider, @NotNull RepositoryLocation location, @NotNull ChangeBrowserSettings settings, int maxCount, @Nullable String title) { DefaultActionGroup extraActions = new DefaultActionGroup(); //noinspection unchecked RepositoryLocationCommittedChangesPanel<ChangeBrowserSettings> pan... | openCommittedChangesTab |
262,992 | void (@NotNull final AnActionEvent e) { contentManager.removeContent(content); } | actionPerformed |
262,993 | void (@NotNull final Project project, @NotNull final VcsRevisionNumber revision, @NotNull final VirtualFile virtualFile, @NotNull VcsKey vcsKey, @Nullable final RepositoryLocation location, final boolean isNonLocal) { final AbstractVcs vcs = ProjectLevelVcsManager.getInstance(project).findVcsByName(vcsKey.getName()); i... | loadAndShowCommittedChangesDetails |
262,994 | void (@NotNull Project project, @NotNull VcsRevisionNumber revision, @NotNull FilePath filePath, @NotNull CommittedChangeListProvider changelistProvider) { loadAndShowCommittedChangesDetails(project, revision, filePath, showCommittedChangesAsTab(), changelistProvider); } | loadAndShowCommittedChangesDetails |
262,995 | void (@NotNull Project project, @NotNull VcsRevisionNumber revision, @NotNull FilePath filePath, boolean showAsTab, @NotNull CommittedChangeListProvider changelistProvider) { final String title = VcsBundle.message("paths.affected.in.revision", VcsUtil.getShortRevisionString(revision)); final BackgroundableActionLock lo... | loadAndShowCommittedChangesDetails |
262,996 | boolean () { return Registry.is("vcs.show.affected.files.as.tab") && ModalityState.current() == ModalityState.nonModal(); } | showCommittedChangesAsTab |
262,997 | void () { myCanceled = true; } | cancel |
262,998 | void (@NotNull final ProgressIndicator indicator) { final AsynchConsumer<List<CommittedChangeList>> appender = myDlg.getAppender(); final BufferedListConsumer<CommittedChangeList> bufferedListConsumer = new BufferedListConsumer<>(10, appender, -1); final Application application = ApplicationManager.getApplication(); tr... | run |
262,999 | void (CommittedChangeList committedChangeList) { myRevisionsReturned = true; bufferedListConsumer.consumeOne(committedChangeList); if (myCanceled) { indicator.cancel(); } } | consume |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.