Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for styled (0.26 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaClassLikeSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaTypeParameterSymbol
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.Name
    
    public sealed interface KaType : KaLifetimeOwner, KaAnnotated {
        public val nullability: KaTypeNullability
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLParameterConversion.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.generator
    
    import kotlin.reflect.KType
    import kotlin.reflect.KTypeProjection
    import kotlin.reflect.KVariance
    import kotlin.reflect.full.createType
    
    sealed class HLParameterConversion {
        abstract fun convertExpression(expression: String, context: ConversionContext): String
        abstract fun convertType(type: KType): KType
        open val importsToAdd: List<String> get() = emptyList()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 15 09:32:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. LICENSE

       3. Grant of Patent License. Subject to the terms and conditions of
          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          (except as stated in this section) patent license to make, have made,
          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 22 18:59:39 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    NO WARRANTY
    
    11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
    WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
    EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
    OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
    EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/swig/testdata/stdio/main.swig

    /* Copyright 2011 The Go Authors. All rights reserved.
       Use of this source code is governed by a BSD-style
       license that can be found in the LICENSE file.  */
    
    /* A trivial example of wrapping a C library using SWIG.  */
    
    %{
    #include <stdio.h>
    #include <stdlib.h>
    %}
    
    %typemap(gotype) const char * "string"
    %typemap(in) const char * %{
    	$1 = malloc($input.n + 1);
    	memcpy($1, $input.p, $input.n);
    	$1[$input.n] = '\0';
    %}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 563 bytes
    - Viewed (0)
  6. CONTRIBUTING.md

         file).
      3. Files should be formatted according to Google's [Java style guide][].
      4. Please squash all commits for a change into a single commit (this can be
         done using `git rebase -i`). Do your best to have a
         [well-formed commit message][] for the change.
    
    [Java style guide]: https://google.github.io/styleguide/javaguide.html
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeCreator.kt

    ): KaTypeParameterType =
        analysisSession.typesCreator.buildTypeParameterType(KaTypeParameterTypeBuilder.BySymbol(symbol, token).apply(build))
    
    public sealed class KaTypeBuilder : KaLifetimeOwner
    
    public typealias KtTypeBuilder = KaTypeBuilder
    
    public sealed class KaClassTypeBuilder : KaTypeBuilder() {
        private val backingArguments = mutableListOf<KaTypeProjection>()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/expressionInfoProvider/whenMissingCases/sealedClass_empty.kt

    sealed class Foo {
        object A : Foo()
        class B(val i: Int) : Foo()
    }
    
    fun test(e: Foo) {
        <caret>when (e) {
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 17 19:55:08 UTC 2021
    - 124 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/when/sealedClassFromDependencyMissingCase.kt

    // IGNORE_FE10
    // KT-64503
    
    // MODULE: dependency
    // FILE: MySealedClass.kt
    sealed class MySealedClass
    
    class OneSealedChild : MySealedClass()
    class TwoSealedChild : MySealedClass()
    
    // MODULE: main(dependency)
    // FILE: main.kt
    fun testSealed(m: MySealedClass): String {
        return when (m) {
            is OneSealedChild -> "1"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 10 10:13:23 UTC 2024
    - 334 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/when/sealedClassFromLibraryMissingCase.kt

    // IGNORE_FE10
    
    // MODULE: lib
    // MODULE_KIND: LibraryBinary
    // FILE: MySealedClass.kt
    sealed class MySealedClass
    
    class OneSealedChild : MySealedClass()
    class TwoSealedChild : MySealedClass()
    
    // MODULE: main(lib)
    // FILE: main.kt
    fun testSealed(m: MySealedClass): String {
        return when (m) {
            is OneSealedChild -> "1"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 10 10:13:23 UTC 2024
    - 338 bytes
    - Viewed (0)
Back to top