Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 694 for checkers (0.13 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirTypeParameterSymbolBase.kt

    import org.jetbrains.kotlin.analysis.api.symbols.pointers.KaSymbolPointer
    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.fir.analysis.checkers.typeParameterSymbols
    import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol
    import org.jetbrains.kotlin.fir.types.UnexpandedTypeCheck
    import org.jetbrains.kotlin.fir.types.isNullableAny
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/EnumMultiset.java

      }
    
      @Override
      public int size() {
        return Ints.saturatedCast(size);
      }
    
      @Override
      public int count(@CheckForNull Object element) {
        // isActuallyE checks for null, but we check explicitly to help nullness checkers.
        if (element == null || !isActuallyE(element)) {
          return 0;
        }
        Enum<?> e = (Enum<?>) element;
        return counts[e.ordinal()];
      }
    
      // Modification Operations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/EnumMultiset.java

      }
    
      @Override
      public int size() {
        return Ints.saturatedCast(size);
      }
    
      @Override
      public int count(@CheckForNull Object element) {
        // isActuallyE checks for null, but we check explicitly to help nullness checkers.
        if (element == null || !isActuallyE(element)) {
          return 0;
        }
        Enum<?> e = (Enum<?>) element;
        return counts[e.ordinal()];
      }
    
      // Modification Operations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/ktSymbolUtils.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    import org.jetbrains.kotlin.descriptors.annotations.KotlinTarget
    import org.jetbrains.kotlin.fir.FirAnnotationContainer
    import org.jetbrains.kotlin.fir.analysis.checkers.getActualTargetList
    import org.jetbrains.kotlin.fir.dispatchReceiverClassLookupTagOrNull
    import org.jetbrains.kotlin.fir.resolve.toFirRegularClassSymbol
    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	"encoding/gob"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"go/token"
    	"io"
    	"log"
    	"os"
    	"strconv"
    	"strings"
    
    	"golang.org/x/tools/go/analysis"
    )
    
    // flags common to all {single,multi,unit}checkers.
    var (
    	JSON    = false // -json
    	Context = -1    // -c=N: if N>0, display offending line plus N lines of context
    )
    
    // Parse creates a flag for each of the analyzer's flags,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

    import org.jetbrains.kotlin.descriptors.ClassKind
    import org.jetbrains.kotlin.descriptors.annotations.AnnotationUseSiteTarget
    import org.jetbrains.kotlin.descriptors.annotations.KotlinTarget
    import org.jetbrains.kotlin.fir.analysis.checkers.getAllowedAnnotationTargets
    import org.jetbrains.kotlin.fir.declarations.*
    import org.jetbrains.kotlin.fir.languageVersionSettings
    import org.jetbrains.kotlin.fir.symbols.impl.FirBackingFieldSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Converter.java

         * perform runtime null checks on the input and output. (That would also make NullPointerTester
         * happy!) However, since we didn't do that for many years, we're not about to start now.
         * (Runtime checks could be particularly bad for users of LegacyConverter.)
         *
         * Luckily, our nullness checker is smart enough to realize that `convert` has @PolyNull-like
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Converter.java

         * perform runtime null checks on the input and output. (That would also make NullPointerTester
         * happy!) However, since we didn't do that for many years, we're not about to start now.
         * (Runtime checks could be particularly bad for users of LegacyConverter.)
         *
         * Luckily, our nullness checker is smart enough to realize that `convert` has @PolyNull-like
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

    import org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder
    import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KaAnnotationImpl
    import org.jetbrains.kotlin.descriptors.ClassKind
    import org.jetbrains.kotlin.fir.analysis.checkers.getContainingClassSymbol
    import org.jetbrains.kotlin.fir.declarations.FirClass
    import org.jetbrains.kotlin.fir.declarations.getTargetType
    import org.jetbrains.kotlin.fir.diagnostics.ConeSimpleDiagnostic
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    described as "modular".
    
    A compiler’s type checker is an example of a modular static analysis.
    Many other checkers we would like to apply to Go programs can be
    understood as alternative or non-standard type systems. For example,
    vet's printf checker infers whether a function has the "printf wrapper"
    type, and it applies stricter checks to calls of such functions. In
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top