Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for InternalName (0.53 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/AsmExtensions.kt

    
    internal
    fun publicClass(
        name: InternalName,
        superName: InternalName? = null,
        interfaces: List<InternalName>? = null,
        classBody: ClassWriter.() -> Unit = {}
    ) = beginPublicClass(name, superName, interfaces).run {
        classBody()
        endClass()
    }
    
    
    internal
    fun beginPublicClass(name: InternalName, superName: InternalName? = null, interfaces: List<InternalName>? = null) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

    
    fun publicClass(
        name: InternalName,
        superName: InternalName? = null,
        interfaces: List<InternalName>? = null,
        classBody: ClassWriter.() -> Unit = {}
    ) = beginPublicClass(name, superName, interfaces).run {
        classBody()
        endClass()
    }
    
    
    internal
    fun beginPublicClass(name: InternalName, superName: InternalName? = null, interfaces: List<InternalName>? = null) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GradleType.kt

    internal
    object GradleTypeName {
    
        val action = Action::class.internalName
    
        val artifactHandler = ArtifactHandler::class.internalName
    
        val externalModuleDependency = ExternalModuleDependency::class.internalName
    
        val dependencyHandler = DependencyHandler::class.internalName
    
        val dependencyConstraintHandler = DependencyConstraintHandler::class.internalName
    
        val extensionAware = ExtensionAware::class.internalName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TestWithClassPath.kt

    fun ClassPathBuilderScope.publicInterface(name: String, vararg interfaces: String) {
        val internalName = InternalName.from(name)
        writeClassFileTo(
            outputDir,
            internalName,
            beginClass(
                ACC_PUBLIC + ACC_ABSTRACT + ACC_INTERFACE,
                internalName,
                interfaces = interfaces.takeIf { it.isNotEmpty() }?.map(InternalName.Companion::from)
            ).endClass()
        )
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

        binDir: File?,
        outputPackage: OutputPackage,
        format: AccessorFormat,
        moduleName: String,
        useLowPriorityOverloadResolution: Boolean
    ): InternalName {
    
        val (simpleClassName, fragments) = fragmentsFor(accessor)
        val className = InternalName("${outputPackage.path}/$simpleClassName")
        val sourceCode = mutableListOf<String>()
    
        fun collectSourceFragment(source: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt

        private
        val names: MutableSet<String> = hashSetOf()
    
        init {
            givenPrefixes.map { it.replace('.', '/') }.forEach { internalName ->
                names.add(internalName)
                prefixes.add("$internalName/")
            }
        }
    
        fun matches(packageName: String): Boolean {
            if (names.contains(packageName)) {
                return true
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

        val returnType: TypeSpec
    )
    
    
    internal
    data class TypeSpec(val sourceName: String, val internalName: InternalName) {
    
        val kmType: KmType
            get() = newClassTypeOf(internalName.value)
    }
    
    
    internal
    fun IO.writeClassFileTo(binDir: File, internalClassName: InternalName, classBytes: ByteArray) {
        val classFile = binDir.resolve("$internalClassName.class")
        writeFile(classFile, classBytes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingBackwardsCompatibilityVisitor.java

        private static String fixInternalNameForBackwardCompatibility(String internalName) {
            // Fix renamed type references
            for (Pair<String, String> renamedInterface : RENAMED_TYPE_INTERNAL_NAMES) {
                if (renamedInterface.left.equals(internalName)) {
                    return renamedInterface.right;
                }
            }
            return internalName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 08:17:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                }
    
                if (declaration.kind != ClassKind.INTERFACE && declaration.kind != ClassKind.ANNOTATION_CLASS) {
                    val internalName = computeClassInternalName(declaration)
                    if (internalName != null) {
                        return internalName
                    }
                } else if (interfaceSupertypeInternalName == null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    
    internal
    fun jvmGetterSignatureFor(pluginsExtension: ExtensionSpec): JvmMethodSignature = jvmGetterSignatureFor(
        pluginsExtension.name,
        accessorDescriptorFor(pluginsExtension.receiverType.internalName, pluginsExtension.returnType.internalName)
    )
    
    
    internal
    fun jvmGetterSignatureFor(propertyName: String, desc: String): JvmMethodSignature =
        // Accessors honor the kotlin property jvm interop convention.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top