Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for analyzeCopy (0.2 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveDanglingFileReferenceTest.kt

    package org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.resolver
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.analyze
    import org.jetbrains.kotlin.analysis.api.analyzeCopy
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.analysis.project.structure.DanglingFileResolutionMode
    import org.jetbrains.kotlin.analysis.test.framework.project.structure.KtTestModule
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/session/KtAnalysisSessionProvider.kt

    /**
     * Provides [KaSession]s by use-site [KtElement]s or [KtModule]s.
     *
     * This provider should not be used directly.
     * Please use [analyze][org.jetbrains.kotlin.analysis.api.analyze] or [analyzeCopy][org.jetbrains.kotlin.analysis.api.analyzeCopy] instead.
     */
    @OptIn(KaAnalysisApiInternals::class)
    public abstract class KaSessionProvider(public val project: Project) : Disposable {
        public abstract val tokenFactory: KaLifetimeTokenFactory
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

     *
     * The project will be analyzed from the perspective of [useSiteKtElement]'s module, also called the use-site module.
     */
    @OptIn(KtModuleStructureInternals::class)
    public inline fun <R> analyzeCopy(
        useSiteKtElement: KtElement,
        resolutionMode: DanglingFileResolutionMode,
        crossinline action: KaSession.() -> R,
    ): R {
        val containingFile = useSiteKtElement.containingKtFile
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // Runs the analysis and populates `control_predecessors_` for `region`.
      void AnalyzeRegion(Region* region);
    
      // Runs the analysis and populates `control_predecessors_` for `op`.
      void AnalyzeOp(Operation* op);
    
      // Updates `control_predecessors_` for given `resource_id` and `op`.
      void AddPredecessorsForAccess(ResourceId resource_id, Operation* op,
                                    bool read_only);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

              control_predecessors_[entry.first] = std::move(entry.second);
            for (auto& entry : child_analysis.op_to_resource_ids_)
              op_to_resource_ids_[entry.first] = std::move(entry.second);
          }
          AnalyzeOp(&op);
        }
      }
    }
    
    ResourceIdSet
    SideEffectAnalysisInfo::GetDependentIds(ResourceId resource_id,
                                             bool is_fetch_op)  const {
      ResourceIdSet dependent_ids;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top