Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MutableCollection (0.21 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        }
    
        private fun KtAnalysisSession.collectSymbolsByPackage(packageFqName: FqName, consumer: MutableCollection<KtSymbol>) {
            val symbol = getPackageSymbolIfPackageExists(packageFqName)
            consumer.addIfNotNull(symbol)
        }
    
        private fun KtAnalysisSession.collectSymbolsByClassId(classId: ClassId, consumer: MutableCollection<KtSymbol>) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

        override fun take() = error("unsupported")
    
        override fun remainingCapacity() = error("unsupported")
    
        override fun drainTo(sink: MutableCollection<in T>) = error("unsupported")
    
        override fun drainTo(
          sink: MutableCollection<in T>,
          maxElements: Int,
        ) = error("unsupported")
      }
    
      /** Returns true if no tasks have been scheduled. This runs the coordinator for confirmation. */
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 29 00:33:04 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolDeclarationOverridesProvider.kt

            firTypeScope.processCallableByName(firCallableDeclaration)
            process(firTypeScope, firCallableDeclaration)
        }
    
        private fun FirCallableSymbol<*>.collectIntersectionOverridesSymbolsTo(
            to: MutableCollection<FirCallableSymbol<*>>,
            useSiteSession: FirSession,
        ) {
            when (this) {
                is FirIntersectionCallableSymbol -> {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Mar 22 14:22:10 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top