Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for callableName (0.29 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

            List<RequestExtra> extras = getJvmRequestExtras(accessor, method, accessor.binaryCompatibility);
            String callableName = accessor.methodName;
            Type originalType = accessor.originalType;
            return new CallInterceptionRequestImpl(
                extractCallableInfo(INSTANCE_METHOD, method, originalType, callableName, Collections.emptyList()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescEnumEntrySymbol.kt

                val enumClassId = enumDescriptor.classId ?: return null
                CallableId(
                    packageName = enumClassId.packageFqName,
                    className = enumClassId.relativeClassName,
                    callableName = descriptor.name
                )
            }
    
        override val returnType: KaType
            get() = withValidityAssertion { enumDescriptor.defaultType.toKtType(analysisContext) }
    
        override val name: Name
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirNonStarImportingScope.kt

        override fun getPossibleCallableNames(): Set<Name> = withValidityAssertion {
            imports.flatMapTo(hashSetOf()) { listOfNotNull(it.callableName, it.aliasName) }
        }
    
        override fun getPossibleClassifierNames(): Set<Name> = withValidityAssertion {
            imports.flatMapTo((hashSetOf())) { listOfNotNull(it.relativeClassName?.shortName(), it.aliasName) }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

                expression = KaArrayAnnotationValue(
                    values = rawValues.map {
                        KaEnumEntryAnnotationValue(
                            callableId = CallableId(classId = expectedEnumClassId, callableName = Name.identifier(it)),
                            sourcePsi = null,
                            token
                        )
                    },
                    sourcePsi = null,
                    token
                ),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirTopLevelCallableSymbolPointer.kt

    }
    
    private fun KaFirSession.getCallableSymbols(callableId: CallableId) =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substitutorProvider/AbstractCreateInheritanceTypeSubstitutorTest.kt

                                for (function in functions) {
                                    val signature = function.substitute(substitutor)
                                    append(signature.callableId!!.callableName.asString())
                                    printCollection(signature.valueParameters, prefix = "(", postfix = ")") {
                                        append(it.returnType.render(typeRenderer, position = Variance.IN_VARIANCE))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            }
        }
    
        private val CallableId.isStringEquals: Boolean
            get() = classId == StandardClassIds.String && callableName.identifierOrNullIfSpecial == "equals"
    
        private val CallableId.isStringPlus: Boolean
            get() = classId == StandardClassIds.String && callableName.identifierOrNullIfSpecial == "plus"
    
        ////// KINDS
    
        private fun ConeKotlinType.toConstantValueKind(): ConstantValueKind? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/pointers/KtFe10DescFunctionLikeSymbolPointer.kt

            }
    
            @Suppress("UNCHECKED_CAST")
            return memberScope
                .getContributedDescriptors(DescriptorKindFilter.CALLABLES) { it == callableId.callableName }
                .filterIsInstance<CallableMemberDescriptor>()
                .firstOrNull { it.getSymbolPointerSignature() == signature }
                ?.toKtCallableSymbol(analysisContext) as? T
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

        }
    
        return CallableId(
            packageName = containingFile.packageFqName,
            className = if (className.isNotEmpty()) FqName.fromSegments(className.asReversed()) else null,
            callableName = Name.identifier(selfName),
            pathToLocal = if (localName.isNotEmpty()) FqName.fromSegments(localName.asReversed()) else null
        )
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

        private fun FirRegularClass.isDeclared(): Boolean = symbol.classId.parentClassId == owner.classId
    
        override fun isTargetCallable(callable: FirCallableSymbol<*>): Boolean =
            callable.callableId.callableName != SpecialNames.INIT && callable.fir.isDeclared()
    
        override fun processDeclaredConstructors(processor: (FirConstructorSymbol) -> Unit) {
            delegate.processDeclaredConstructors(processor)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top