Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for Callables (0.42 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractTypeScopeTest.kt

            val callables = typeScope.getCallableSignatures().toList()
            return prettyPrint {
                callables.forEach {
                    appendLine(stringRepresentation(it))
                }
            }
        }
    
        private fun KaSession.prettyPrintForTests(typeScope: KaTypeScope): String {
            val callables = typeScope.getCallableSignatures().toList()
            return prettyPrint {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

        /**
         * Returns a [KaScope] containing the *static* callables (functions and properties) and all classifiers (classes and objects) explicitly
         * declared in the given [KaSymbolWithMembers].
         *
         * It is worth noting that, while Java classes may contain declarations of static callables freely, in Kotlin only enum classes define
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolContainingDeclarationProvider.kt

        /**
         * Returns containing JVM class name for [KaCallableSymbol]
         *
         *   even for deserialized callables! (which is useful to look up the containing facade in [PsiElement])
         *   for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
         *
         * The returned JVM class name is of fully qualified name format, e.g., foo.bar.Baz.Companion
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. .idea/dictionaries/geevee.xml

    <component name="ProjectDictionaryState">
      <dictionary name="geevee">
        <words>
          <w>builtins</w>
          <w>callables</w>
          <w>klass</w>
          <w>proto</w>
          <w>protoc</w>
          <w>protos</w>
          <w>ubuntu</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jul 08 11:27:39 UTC 2015
    - 267 bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtBackingFieldSymbolRenderer.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.renderers.callables
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.KaDeclarationRenderer
    import org.jetbrains.kotlin.analysis.api.symbols.KaBackingFieldSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtCallableReceiverRenderer.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.renderers.callables
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.KaDeclarationRenderer
    import org.jetbrains.kotlin.analysis.api.symbols.KaReceiverParameterSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtPropertyGetterSymbolRenderer.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.renderers.callables
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.KaDeclarationRenderer
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtSyntheticJavaPropertySymbolRenderer.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.renderers.callables
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.KaDeclarationRenderer
    import org.jetbrains.kotlin.analysis.api.symbols.KaSyntheticJavaPropertySymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirCallableFilteringScope.kt

                baseScope.processAllCallables { callable ->
                    if (isTargetCallable(callable)) {
                        add(callable.name)
                    }
                }
            }
        }
    
        override fun getCallableNames(): Set<Name> = cachedCallableNames
    
        override fun processFunctionsByName(name: Name, processor: (FirNamedFunctionSymbol) -> Unit) {
            if (!cachedCallableNames.contains(name)) return
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/scopeProvider/Fe10IdeNormalAnalysisSourceModulePackageScopeTestGenerated.java

      }
    
      @Test
      @TestMetadata("callables.kt")
      public void testCallables() {
        runTest("analysis/analysis-api/testData/components/scopeProvider/packageScope/callables.kt");
      }
    
      @Test
      @TestMetadata("classes.kt")
      public void testClasses() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 23 10:55:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top