Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
62,700 | boolean (@NotNull final VirtualFile file, @NotNull final Project project) { if (file.getName().endsWith("Icons.java")) { return ReadAction.compute(() -> { PsiFile psiFile = PsiManager.getInstance(project).findFile(file); if (psiFile instanceof PsiJavaFile) { for (PsiClass aClass : ((PsiJavaFile)psiFile).getClasses()) {... | isGeneratedSource |
62,701 | void (@NotNull List<? extends PsiElement> elements, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result, boolean forNavigation) { final PsiElement psiElement = ContainerUtil.getFirstItem(elements); if (psiElement == null || !DevKitInspectionUtil.isAllowed(psiElement.getContainingFile())) { return; } super.... | collectNavigationMarkers |
62,702 | boolean (PsiClass psiClass, PsiFile descriptionPsiFile, Module module) { InspectionDescriptionInfo info = InspectionDescriptionInfo.create(module, psiClass); return descriptionPsiFile.equals(info.getDescriptionFile()); } | isTargetInspectionPsiClass |
62,703 | List<GotoRelatedItem> (PsiClass psiClass) { return GotoRelatedItem.createItems(Collections.singleton(psiClass)); } | createGotoRelatedItem |
62,704 | void (@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result) { UElement uElement = UastUtils.getUParentForIdentifier(element); if (uElement instanceof UField uField) { if (!isExtensionPointNameDeclarationField(uField)) return; process(resolveEpFqn(uField), uField, element.getProj... | collectNavigationMarkers |
62,705 | void (@Nullable @NonNls String epFqn, @NotNull UDeclaration uDeclaration, Project project, Collection<? super RelatedItemLineMarkerInfo<?>> result) { if (epFqn == null) return; final ExtensionPoint point = ExtensionPointIndex.findExtensionPoint(project, PluginRelatedLocatorsUtils.getCandidatesScope(project), epFqn); if... | process |
62,706 | boolean (@NotNull UCallExpression uCallExpression) { if (uCallExpression.getValueArgumentCount() != 1) return false; if (uCallExpression.getKind() != UastCallKind.CONSTRUCTOR_CALL) { if (uCallExpression.getKind() != UastCallKind.METHOD_CALL && !Objects.equals(uCallExpression.getMethodName(), "super")) { return false; }... | isExtensionPointNameDeclarationViaSuperCall |
62,707 | boolean (@NotNull UField uField) { if (!uField.isFinal()) { return false; } final UExpression initializer = uField.getUastInitializer(); if (!(initializer instanceof UCallExpression) && !(initializer instanceof UQualifiedReferenceExpression)) { return false; } final PsiClass fieldClass = PsiTypesUtil.getPsiClass(uField... | isExtensionPointNameDeclarationField |
62,708 | String () { return DevKitBundle.message("gutter.related.extension.declaration"); } | getName |
62,709 | Icon () { return DevKitIcons.Gutter.Plugin; } | getIcon |
62,710 | void (@NotNull PsiElement identifier, @NotNull PsiClass psiClass, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result) { if (psiClass.getQualifiedName() == null) { return; } if (!PsiUtil.isInstantiable(psiClass)) { // non-instantiable, abstract/interface can be registered as // - component interface-class ... | process |
62,711 | void (@NotNull PsiElement identifier, @NotNull PsiClass psiClass, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result, Project project, GlobalSearchScope candidatesScope) { // Components: search for _all_ occurrences // - component can be registered multiple times // - component-interface can occur multipl... | processComponent |
62,712 | void (@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result) { // UAST is used for getting the class identifier to work for all UAST languages (not possible in plain PSI) UElement uElement = UastUtils.getUParentForIdentifier(element); if (!(uElement instanceof UClass uClass)) { r... | collectNavigationMarkers |
62,713 | String () { return DevKitBundle.message("gutter.related.option.name"); } | getName |
62,714 | void (@NotNull PsiElement highlightingElement, @NotNull PsiClass psiClass, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result) { final boolean descriptionEnabled = myDescriptionOption.isEnabled(); final boolean beforeAfterEnabled = myBeforeAfterOption.isEnabled(); if (!descriptionEnabled && !beforeAfterEn... | process |
62,715 | void (PsiElement highlightingElement, PsiFile descriptionFile, Collection<? super RelatedItemLineMarkerInfo<?>> result) { final RelatedItemLineMarkerInfo<PsiElement> info = NavigationGutterIconBuilder .create(DevKitIcons.Gutter.DescriptionFile, CONVERTER, RELATED_ITEM_PROVIDER) .setTarget(descriptionFile) .setTooltipTe... | addDescriptionFileGutterIcon |
62,716 | void (PsiElement highlightingElement, PsiDirectory descriptionDirectory, Collection<? super RelatedItemLineMarkerInfo<?>> result) { final List<PsiFile> templateFiles = new SortedList<>(Comparator.comparing(PsiFileSystemItem::getName)); for (PsiFile file : descriptionDirectory.getFiles()) { final String fileName = file.... | addBeforeAfterTemplateFilesGutterIcon |
62,717 | String (DomElement element) { if (!(element instanceof ExtensionPoint)) return "?"; return ((ExtensionPoint)element).getEffectiveQualifiedName(); } | getExtensionPointName |
62,718 | RelatedItemLineMarkerInfo<PsiElement> (@NotNull List<? extends PointableCandidate> targets, @NotNull PsiElement element) { return createPluginLineMarkerInfo(targets, element, DevKitBundle.message("gutter.related.navigation.choose.extension"), (NullableFunction<Extension, String>)extension -> getExtensionPointName(exten... | createExtensionLineMarkerInfo |
62,719 | RelatedItemLineMarkerInfo<PsiElement> (@NotNull List<? extends PointableCandidate> targets, @NotNull PsiElement element) { return createPluginLineMarkerInfo(targets, element, DevKitBundle.message("gutter.related.navigation.choose.extension.point"), (NullableFunction<ExtensionPoint, String>)extensionPoint -> getExtensio... | createExtensionPointLineMarkerInfo |
62,720 | RelatedItemLineMarkerInfo<PsiElement> (@NotNull List<? extends ListenerCandidate> targets, @NotNull PsiElement element) { return createPluginLineMarkerInfo(targets, element, DevKitBundle.message("gutter.related.navigation.choose.listener"), (NullableFunction<Listeners.Listener, String>)listener -> listener.getTopicClas... | createListenerLineMarkerInfo |
62,721 | RelatedItemLineMarkerInfo<PsiElement> (@NotNull List<? extends ListenerCandidate> targets, @NotNull PsiElement element) { return createPluginLineMarkerInfo(targets, element, DevKitBundle.message("gutter.related.navigation.choose.listener"), (NullableFunction<Listeners.Listener, String>)listener -> listener.getListenerC... | createListenerTopicLineMarkerInfo |
62,722 | String () { //noinspection unchecked return getDomElementName((T)domElement, namer); } | getCustomName |
62,723 | String (@NotNull PsiElement element) { DomElement domElement = DomUtil.getDomElement(element); //noinspection unchecked return getDomElementName((T)domElement, namer); } | getElementText |
62,724 | String (@NotNull PsiElement element) { return UniqueVFilePathBuilder.getInstance() .getUniqueVirtualFilePath(element.getProject(), element.getContainingFile().getVirtualFile()); } | getContainerText |
62,725 | Icon (@NotNull PsiElement element) { DomElement domElement = DomUtil.getDomElement(element); assert domElement != null; return ObjectUtils.chooseNotNull(domElement.getPresentation().getIcon(), element.getIcon(0)); } | getIcon |
62,726 | StructureViewBuilder (@NotNull XmlFile file) { if (!DescriptorUtil.isPluginXml(file)) { return null; } return new TreeBasedStructureViewBuilder() { @NotNull @Override public StructureViewModel createStructureViewModel(@Nullable Editor editor) { return new PluginDescriptorXmlStructureViewModel(file, editor); } @Override... | createStructureViewBuilder |
62,727 | StructureViewModel (@Nullable Editor editor) { return new PluginDescriptorXmlStructureViewModel(file, editor); } | createStructureViewModel |
62,728 | boolean () { return false; } | isRootNodeShown |
62,729 | Collection<StructureViewTreeElement> () { XmlTag tag = getElement(); if (tag == null || !tag.isValid()) { return Collections.emptyList(); } return ContainerUtil.map(tag.getSubTags(), psiElement -> new PluginDescriptorTreeElement(psiElement, false, myIsRoot)); } | getChildrenBase |
62,730 | String () { XmlTag element = getElement(); try { return PluginDescriptorStructureUtil.getTagDisplayText(element); } catch (IndexNotReadyException ignore) { return PluginDescriptorStructureUtil.safeGetTagDisplayText(element); } } | getPresentableText |
62,731 | String () { try { return PluginDescriptorStructureUtil.getTagLocationString(getElement()); } catch (IndexNotReadyException ignore) { return null; } } | getLocationString |
62,732 | Icon (boolean open) { try { return PluginDescriptorStructureUtil.getTagIcon(getElement()); } catch (IndexNotReadyException ignore) { return PluginDescriptorStructureUtil.DEFAULT_ICON; } } | getIcon |
62,733 | boolean () { return true; } | isSearchInLocationString |
62,734 | boolean () { return myIsTopLevelNode; } | isTopLevelNode |
62,735 | String (PluginModule pluginModule) { return pluginModule.getValue().getStringValue(); } | getPluginModuleLocation |
62,736 | String (Vendor element) { return element.getValue(); } | getVendorLocation |
62,737 | StructureViewTreeElement () { XmlFile file = getPsiFile(); if (DescriptorUtil.isPluginXml(file)) { XmlTag rootTag = file.getRootTag(); if (rootTag != null) { return new PluginDescriptorTreeElement(rootTag, true, true); } } // shouldn't happen; just for additional safety return super.getRoot(); } | getRoot |
62,738 | boolean (StructureViewTreeElement element) { return false; } | isAlwaysShowsPlus |
62,739 | boolean (StructureViewTreeElement element) { return false; } | isAlwaysLeaf |
62,740 | Comparator () { return (o1, o2) -> { if (o1 instanceof PluginDescriptorTreeElement e1 && o2 instanceof PluginDescriptorTreeElement e2) { if (e1.isTopLevelNode() && e2.isTopLevelNode()) { return 0; } } //noinspection unchecked return ALPHA_SORTER.getComparator().compare(o1, o2); }; } | getComparator |
62,741 | boolean () { return ALPHA_SORTER.isVisible(); } | isVisible |
62,742 | ActionPresentation () { return new ActionPresentationData(DevKitBundle.message("structure.sort.alphabetically.in.groups"), DevKitBundle.message("structure.sort.alphabetically.in.groups.description"), AllIcons.ObjectBrowser.Sorted); } | getPresentation |
62,743 | String () { return "PluginDescriptorStructureAlphaSorter"; } | getName |
62,744 | PluginBuildConfiguration (@NotNull Module module) { return ModuleType.is(module, PluginModuleType.getInstance()) ? module.getService(PluginBuildConfiguration.class) : null; } | getInstance |
62,745 | boolean (Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; State state = (State)o; if (!Objects.equals(url, state.url)) return false; if (!Objects.equals(manifest, state.manifest)) return false; return true; } | equals |
62,746 | int () { int result = url != null ? url.hashCode() : 0; result = 31 * result + (manifest != null ? manifest.hashCode() : 0); return result; } | hashCode |
62,747 | State () { state.url = getPluginXmlUrl(); state.manifest = myManifestFilePointer == null ? null : myManifestFilePointer.getUrl(); return state; } | getState |
62,748 | void (@NotNull State state) { this.state = state; if (state.url != null) { myPluginXmlContainer.getConfiguration().replaceConfigFile(PluginDescriptorConstants.META_DATA, state.url); } if (state.manifest != null) { setManifestPath(VfsUtilCore.urlToPath(state.manifest)); } } | loadState |
62,749 | ConfigFile () { return myPluginXmlContainer.getConfigFile(PluginDescriptorConstants.META_DATA); } | getPluginXML |
62,750 | void (VirtualFile virtualFile) { myPluginXmlContainer.getConfiguration().replaceConfigFile(PluginDescriptorConstants.META_DATA, virtualFile.getUrl()); } | setPluginXmlFromVirtualFile |
62,751 | void () { myPluginXmlContainer.getConfiguration().removeConfigFiles(PluginDescriptorConstants.META_DATA); } | cleanupForNextTest |
62,752 | void (final String url) { final ConfigFileInfo descriptor = new ConfigFileInfo(PluginDescriptorConstants.META_DATA, url); myPluginXmlContainer.getConfiguration().addConfigFile(descriptor); ConfigFileFactory.getInstance().createFile(myModule.getProject(), descriptor.getUrl(), PluginDescriptorConstants.META_DATA.getDefau... | createDescriptor |
62,753 | ConfigFile () { return myPluginXmlContainer.getConfigFile(PluginDescriptorConstants.META_DATA); } | getPluginXmlConfigFile |
62,754 | String () { ConfigFile configFile = getPluginXmlConfigFile(); return configFile != null ? configFile.getUrl() : null; } | getPluginXmlUrl |
62,755 | String () { return new File(myModule.getModuleFilePath()).getParent() + File.separator + META_INF + File.separator + PLUGIN_XML; } | getDefaultLocation |
62,756 | void (final String pluginXmlPath) { myPluginXmlContainer.getConfiguration().removeConfigFiles(PluginDescriptorConstants.META_DATA); WriteAction.runAndWait(() -> createDescriptor(VfsUtilCore.pathToUrl(pluginXmlPath))); } | setPluginXmlPathAndCreateDescriptorIfDoesntExist |
62,757 | void (@Nullable String manifestPath) { if (StringUtil.isEmpty(manifestPath)) { myManifestFilePointer = null; return; } VirtualFile manifest = LocalFileSystem.getInstance().findFileByPath(manifestPath); if (manifest == null) { Messages.showErrorDialog(myModule.getProject(), DevKitBundle.message("error.file.not.found.mes... | setManifestPath |
62,758 | VirtualFile () { return myManifestFilePointer != null ? myManifestFilePointer.getFile() : null; } | getManifest |
62,759 | boolean () { return myUseUserManifest; } | isUseUserManifest |
62,760 | void (final boolean useUserManifest) { myUseUserManifest = useUserManifest; } | setUseUserManifest |
62,761 | void (Module module, final Set<? super Module> modules) { productionRuntimeDependencies(module).forEachModule(dep -> { if (ModuleType.get(dep) == StdModuleTypes.JAVA && !modules.contains(dep)) { modules.add(dep); getDependencies(dep, modules); } return true; }); } | getDependencies |
62,762 | Module[] (final Module module) { return ReadAction.compute(() -> { ArrayList<Module> result = new ArrayList<>(); final Module[] projectModules = ModuleManager.getInstance(module.getProject()).getModules(); for (Module projectModule : projectModules) { if (ArrayUtil.find(ModuleRootManager.getInstance(projectModule).getD... | getWrongSetDependencies |
62,763 | void (Module module, final Set<? super Library> libs) { productionRuntimeDependencies(module).forEachLibrary(library -> { libs.add(library); return true; }); } | getLibraries |
62,764 | OrderEnumerator (Module module) { return OrderEnumerator.orderEntries(module).productionOnly().runtimeOnly(); } | productionRuntimeDependencies |
62,765 | JComponent () { myPluginXML.addActionListener(new BrowseFilesListener(myPluginXML.getTextField(), DevKitBundle.message("deployment.directory.location", META_INF), DevKitBundle.message("saved.message.common", META_INF + File.separator + PLUGIN_XML), BrowseFilesListener.SINGLE_DIRECTORY_DESCRIPTOR)); myManifest.addAction... | createComponent |
62,766 | void (ActionEvent e) { final boolean selected = myUseUserManifest.isSelected(); myManifest.setEnabled(selected); } | actionPerformed |
62,767 | boolean () { final String pluginXmlPath = new File(myBuildProperties.getPluginXmlPath()).getParentFile().getParent(); //parent for meta-inf boolean modified = !Comparing.strEqual(myPluginXML.getText(), pluginXmlPath); final boolean selected = myUseUserManifest.isSelected(); modified |= myBuildProperties.isUseUserManife... | isModified |
62,768 | void (File plugin, Project project) { if (Messages.showYesNoDialog(project, DevKitBundle.message("deployment.view.delete", plugin.getPath()), DevKitBundle.message("deployment.cleanup", META_INF), null) == Messages.YES) { FileUtil.delete(plugin.getParentFile()); } } | askToDeleteOldPlugin |
62,769 | void () { myPluginXML.setText(myBuildProperties.getPluginXmlPath().substring(0, myBuildProperties.getPluginXmlPath().length() - META_INF.length() - PLUGIN_XML.length() - 2)); myManifest.setText(myBuildProperties.getManifestPath()); myUseUserManifest.setSelected(myBuildProperties.isUseUserManifest()); } | reset |
62,770 | String () { return DevKitBundle.message("deployment.title"); } | getDisplayName |
62,771 | String () { return "plugin.configuring"; } | getHelpTopic |
62,772 | List<TargetTypeBuildScope> (@NotNull CompileScope baseScope, @NotNull Project project, boolean forceBuild) { List<String> pluginArtifactTargetIds = new ArrayList<>(); for (Module module : baseScope.getAffectedModules()) { if (PluginModuleType.isOfType(module)) { pluginArtifactTargetIds.add(module.getName()+":plugin"); ... | getBuildTargetScopes |
62,773 | void (@NotNull final AnActionEvent e) { final Project project = e.getData(CommonDataKeys.PROJECT); if (project == null) return; List<Module> pluginModules = new ArrayList<>(); for (Module aModule : ModuleManager.getInstance(project).getModules()) { if (PluginModuleType.isOfType(aModule)) { pluginModules.add(aModule); }... | actionPerformed |
62,774 | void (@NotNull AnActionEvent e) { long moduleCount = 0; final Project project = e.getData(CommonDataKeys.PROJECT); if (project != null) { moduleCount = Arrays.stream(ModuleManager.getInstance(project).getModules()).filter(PluginModuleType::isOfType) .limit(2).count(); } boolean enabled = false; if (moduleCount > 1) { e... | update |
62,775 | void (@NotNull AnActionEvent e) { Module module = e.getData(PlatformCoreDataKeys.MODULE); if (module != null && PluginModuleType.isOfType(module)) { doPrepare(Collections.singletonList(module), e.getProject()); } } | actionPerformed |
62,776 | void (List<Module> pluginModules, Project project) { List<String> errorMessages = new ArrayList<>(); List<String> successMessages = new ArrayList<>(); CompilerManager compilerManager = CompilerManager.getInstance(project); CompileScope scope = compilerManager.createModulesCompileScope(pluginModules.toArray(Module.EMPTY... | doPrepare |
62,777 | void (boolean aborted, int errors, int warnings, @NotNull CompileContext compileContext) { if (aborted || errors != 0) return; ApplicationManager.getApplication().invokeLater(() -> { for (Module module : pluginModules) { if (!doPrepare(module, errorMessages, successMessages)) { return; } } if (!errorMessages.isEmpty())... | finished |
62,778 | boolean (Module module, List<String> errorMessages, List<String> successMessages) { String pluginName = module.getName(); String defaultPath = new File(module.getModuleFilePath()).getParent() + File.separator + pluginName; Set<Module> modules = new HashSet<>(); PluginBuildUtil.getDependencies(module, modules); modules.... | doPrepare |
62,779 | boolean (Project project, File dstFile) { VirtualFile vfile = VfsUtil.findFileByIoFile(dstFile, true); return vfile == null || !ReadonlyStatusHandler.getInstance(project).ensureFilesWritable(Collections.singleton(vfile)).hasReadonlyFiles(); } | clearReadOnly |
62,780 | String (String fileName, Set<String> usedFileNames, @Nullable String preferredName) { String uniqueName; if (preferredName != null && !usedFileNames.contains(preferredName)) { uniqueName = preferredName; } else { uniqueName = fileName; if (usedFileNames.contains(uniqueName)) { int dotPos = uniqueName.lastIndexOf('.'); ... | getLibraryFileName |
62,781 | void (@NotNull AnActionEvent e) { Module module = e.getData(PlatformCoreDataKeys.MODULE); boolean enabled = module != null && PluginModuleType.isOfType(module); e.getPresentation().setEnabledAndVisible(enabled); if (enabled) { e.getPresentation().setText(DevKitBundle.messagePointer("prepare.for.deployment", module.getN... | update |
62,782 | ActionUpdateThread () { return ActionUpdateThread.BGT; } | getActionUpdateThread |
62,783 | BuildNumber (@Nullable String s, ConvertContext context) { return s == null ? null : BuildNumber.fromStringOrNull(s); } | fromString |
62,784 | String (@Nullable BuildNumber number, ConvertContext context) { return number == null ? null : number.asString(); } | toString |
62,785 | String (@Nullable String s, ConvertContext context) { return DevKitBundle.message("inspections.plugin.xml.invalid.build.number", s); } | getErrorMessage |
62,786 | ExtensionPoint (PsiElement declaration) { DomElement domElement = null; if (declaration instanceof PomTargetPsiElement) { final PomTarget pomTarget = ((PomTargetPsiElement)declaration).getTarget(); if (pomTarget instanceof DomTarget) { domElement = ((DomTarget)pomTarget).getDomElement(); } } // via XmlTag for "qualifie... | resolveFromDeclaration |
62,787 | boolean (PsiField field) { return s.equals(getPlaceName(field)); } | accept |
62,788 | Collection<PsiField> (ConvertContext context) { CommonProcessors.CollectProcessor<PsiField> collectProcessor = new CommonProcessors.CollectProcessor<>(); processAllActionPlaces(context, collectProcessor); return collectProcessor.getResults(); } | getVariants |
62,789 | void (ConvertContext context, Processor<PsiField> fieldProcessor) { final GlobalSearchScope scope = context.getSearchScope(); if (scope == null) return; AllClassesSearch.search(context.getSearchScope(), context.getProject(), s -> s.endsWith(PLACES_CLASSNAME_SUFFIX)) .forEach(psiClass -> { return ContainerUtil.process(p... | processAllActionPlaces |
62,790 | String (PsiField field) { final PsiExpression initializer = field.getInitializer(); return initializer != null ? Pair.getSecond(StringExpressionHelper.evaluateExpression(initializer)) : null; } | getPlaceName |
62,791 | GenericDomValue<String> (ActionOrGroup actionOrGroup) { return myDomValueGetter.apply(actionOrGroup); } | getDomValue |
62,792 | boolean (ActionOrGroup actionOrGroup) { return myRequired.apply(actionOrGroup); } | isRequired |
62,793 | String (ActionOrGroup actionOrGroup) { return getMessageKeyPrefix(actionOrGroup) + actionOrGroup.getId().getStringValue() + myPropertyKeySuffix; } | getMessageKey |
62,794 | String (ActionOrGroup actionOrGroup, @NotNull OverrideText overrideText) { return getMessageKeyPrefix(actionOrGroup) + actionOrGroup.getId().getStringValue() + "." + overrideText.getPlace().getStringValue() + myPropertyKeySuffix; } | getMessageKey |
62,795 | String (ActionOrGroup actionOrGroup) { return actionOrGroup instanceof Action ? "action." : "group."; } | getMessageKeyPrefix |
62,796 | boolean (@NotNull @NonNls String fieldName) { return fieldName.equals(IMPLEMENTATION_ATTRIBUTE) || fieldName.equals("className") || fieldName.equals("serviceInterface") || fieldName.equals("serviceImplementation") || fieldName.equals("class") || fieldName.endsWith("ClassName") || (fieldName.endsWith("Class") && !fieldN... | isClassField |
62,797 | SearchScope (@NotNull PsiElement element) { if (element instanceof PomTargetPsiElement) { PomTarget target = ((PomTargetPsiElement)element).getTarget(); if (target instanceof DomTarget) { DomElement domElement = ((DomTarget)target).getDomElement(); if (domElement instanceof ExtensionPoint || domElement instanceof Exten... | getAdditionalUseScope |
62,798 | SearchScope (PsiElement element) { Project project = element.getProject(); return CachedValuesManager.getManager(project).getCachedValue(project, () -> { Collection<VirtualFile> pluginXmlFiles = DomService.getInstance().getDomFileCandidates(IdeaPlugin.class, GlobalSearchScope.allScope(project)); GlobalSearchScope scope... | getAllPluginDescriptorFilesSearchScope |
62,799 | String () { return DevKitBundle.message("plugin.xml.scopes.display.name"); } | getDisplayName |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.