Home
last modified time | relevance | path

Searched refs:effectivePackageOptions (Results 1 – 3 of 3) sorted by relevance

/external/dokka/core/src/main/kotlin/Kotlin/
DDocumentationBuilder.kt76 …fun effectivePackageOptions(pack: String): PackageOptions = perPackageOptions.firstOrNull { pack =… in <lambda>() method
77 …fun effectivePackageOptions(pack: FqName): PackageOptions = effectivePackageOptions(pack.asString(… in <lambda>() method
980 return (options.effectivePackageOptions(fqNameSafe).includeNonPublic in isDocumented()
984 && (!options.effectivePackageOptions(fqNameSafe).skipDeprecated || !isDeprecated()) in isDocumented()
1049 if (options.effectivePackageOptions(fqNameSafe).suppress) return true in isDocumentationSuppressed()
DDescriptorDocumentationParser.kt62 …if (options.effectivePackageOptions(descriptor.fqNameSafe).reportUndocumented && !descriptor.isDep… in <lambda>()
/external/dokka/core/src/main/kotlin/Java/
DJavaPsiDocumentationBuilder.kt175 …private fun skipFile(javaFile: PsiJavaFile): Boolean = options.effectivePackageOptions(javaFile.pa… in appendFile()
186 …!(options.effectivePackageOptions((element.containingFile as? PsiJavaFile)?.packageName ?: "").inc… in appendFile()