Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for callableName (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultInstrumentedGroovyCallsTracker.java

            private final String callableName;
            private final String callerClassName;
            private final CallKind kind;
            private boolean isMatchedAtDispatchSite = false;
    
            public EntryPointCallSiteImpl(String callableName, String callerClassName, CallKind kind) {
                this.callableName = callableName;
                this.callerClassName = callerClassName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/PerThreadInstrumentedGroovyCallsTracker.java

        public String findCallerForCurrentCallIfNotIntercepted(String callableName, CallKind kind) {
            return perThreadImplementation.get().findCallerForCurrentCallIfNotIntercepted(callableName, kind);
        }
    
        @Override
        public void markCurrentCallAsIntercepted(String callableName, CallKind kind) {
            perThreadImplementation.get().markCurrentCallAsIntercepted(callableName, kind);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/model/CallableInfoImpl.java

        private final String callableName;
        private final CallableReturnTypeInfo returnType;
        private final List<ParameterInfo> parameters;
    
        public CallableInfoImpl(CallableKindInfo kind, CallableOwnerInfo owner, String callableName, CallableReturnTypeInfo returnType, List<ParameterInfo> parameters) {
            this.kind = kind;
            this.owner = owner;
            this.callableName = callableName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsHelper.java

         * call described by the {@code callableName} and {@code kind}
         * from a class identified by {@code consumerClass}.
         * After running the callable, ensures that the entry point leaves the context and returns the callable's result.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

                    .getCallableSymbols(callableId.callableName).toList()
    
                if (declaredSymbols.isNotEmpty()) {
                    return declaredSymbols
                }
    
                // Fake overrides are absent in the declared member scope
                return classSymbol.getCombinedMemberScope()
                    .getCallableSymbols(callableId.callableName)
                    .filter { it.getContainingSymbol() == classSymbol }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsTracker.java

         * @return an entry point call site token that must later be passed to {@link InstrumentedGroovyCallsTracker#leaveCall}
         */
        EntryPointCallSite enterCall(String callerClassName, String callableName, CallKind callKind);
    
        /**
         * Unregisters the instrumented call site. The entry point must be the instance returned from the {@link InstrumentedGroovyCallsTracker#enterCall}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

                        .map { functionProto -> nameResolver.getName(functionProto.name) }
    
                    val callableNames = (propertyNames + functionNames).distinct()
                    callableNames.forEach { callableName ->
                        getTopLevelCallableSymbols(packageFqName, callableName).forEach { symbol ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyMetaClassHelper.java

        public static void addInvocationHooksToMetaClassIfInstrumented(Class<?> javaClass, String callableName) {
            // In BeanDynamicObject we can't filter interceptors, so we have to apply all interceptors
            CallInterceptorResolver resolver = ClosureCallInterceptorResolver.of(ALL);
            if (resolver.isAwareOfCallSiteName(callableName)) {
                addInvocationHooksToMetaClass(javaClass, resolver);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/Import.kt

        abstract val resolvedClassId: ClassId?
    }
    
    internal class NonStarImport(
        override val packageFqName: FqName,
        override val relativeClassName: FqName?,
        override val resolvedClassId: ClassId?,
        val callableName: Name?,
        val aliasName: Name?,
    ) : Import()
    
    internal class StarImport(
        override val packageFqName: FqName,
        override val relativeClassName: FqName?,
        override val resolvedClassId: ClassId?,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jul 27 23:37:54 UTC 2022
    - 940 bytes
    - Viewed (0)
Back to top