Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for callableName (0.16 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            matchAndInterceptStandardCallableSignature(request, implTypeField, code, callableName, interceptedCallableDescriptor, matchOpcodeExpression);
    
            if (interceptedCallable.getParameters().stream().anyMatch(it -> it.getKind() == ParameterKindInfo.KOTLIN_DEFAULT_MASK)) {
                matchAndInterceptKotlinDefaultSignature(request, implTypeField, code, callableName, interceptedCallable, matchOpcodeExpression);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationCallInterceptionRequestReaderImpl.java

            String callableName = getCallableName(methodElement, kindInfo);
            CallableReturnTypeInfo returnType = new CallableReturnTypeInfo(extractReturnType(methodElement));
            List<ParameterInfo> parameterInfos = extractParameters(methodElement);
            return new CallableInfoImpl(kindInfo, owner, callableName, returnType, parameterInfos);
        }
    
        @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

    internal fun CallableMemberDescriptor.calculateCallableId(allowLocal: Boolean): CallableId? {
        if (this is SyntheticJavaPropertyDescriptor) {
            return getMethod.calculateCallableId(allowLocal)?.copy(callableName = name)
        }
        var current: DeclarationDescriptor = containingDeclaration
    
        val localName = mutableListOf<String>()
        val className = mutableListOf<String>()
    
        while (true) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

                    ktProperty.nameAsName == callableId.callableName && ktProperty.inScope
                }
                ?: emptyList()
    
        override fun getTopLevelFunctions(callableId: CallableId): Collection<KtNamedFunction> =
            index.topLevelFunctionMap[callableId.packageName]
                ?.filter { ktNamedFunction ->
                    ktNamedFunction.nameAsName == callableId.callableName && ktNamedFunction.inScope
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

                }
    
                else -> {
                    val symbol = getClassOrObjectSymbolByClassId(classId)
                    if (symbol != null) {
                        val scope = getCompositeCombinedMemberAndCompanionObjectScope(symbol)
                        consumer.addAll(scope.getCallableSymbols(callableId.callableName))
                    }
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top