Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AnnotationVisitor (0.46 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            }
    
            @Override
            public org.objectweb.asm.AnnotationVisitor visitAnnotation(String descriptor, boolean visible) {
                maybeAddDependentType(types, Type.getType(descriptor));
                return new AnnotationVisitor(types);
            }
    
            @Override
            public org.objectweb.asm.AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, String descriptor, boolean visible) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        private val onClassData: (ProtoBuf.Class) -> Unit
    ) : AnnotationVisitor(ASM_LEVEL) {
    
        /**
         * @see kotlin.Metadata.data1
         */
        private
        var d1 = mutableListOf<String>()
    
        /**
         * @see kotlin.Metadata.data2
         */
        private
        var d2 = mutableListOf<String>()
    
        override fun visitArray(name: String?): AnnotationVisitor? =
            when (name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.scripts.BuildScriptCompilationAndInstrumentation;
    import org.gradle.model.dsl.internal.transform.RuleVisitor;
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.FieldVisitor;
    import org.objectweb.asm.Handle;
    import org.objectweb.asm.Label;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    import org.gradle.kotlin.dsl.internal.sharedruntime.support.ClassBytesRepository
    import org.gradle.kotlin.dsl.internal.sharedruntime.support.unsafeLazy
    import org.objectweb.asm.AnnotationVisitor
    import org.objectweb.asm.Attribute
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassReader.SKIP_CODE
    import org.objectweb.asm.ClassReader.SKIP_FRAMES
    import org.objectweb.asm.FieldVisitor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top