Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for withSelf (0.18 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            val declaration = PsiTreeUtil.getContextOfType(contextElement, KtDeclaration::class.java, false) ?: return emptyList()
            for (ktDeclaration in declaration.parentsOfType<KtDeclaration>(withSelf = true)) {
                if (fqName.pathSegments().size == 1) {
                    getSymbolsFromDeclaration(fqName.shortName(), ktDeclaration).ifNotEmpty { return this }
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                    }
                }
    
                firStatements.forEach(::addCandidate)
            }
    
            val parentDeclarations = anchor.parentsOfType<KtDeclaration>(withSelf = true)
            for (parentDeclaration in parentDeclarations) {
                val parentFirDeclaration = parentDeclaration.getOrBuildFir(firResolveSession)
                if (parentFirDeclaration is FirControlFlowGraphOwner) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    private inline fun <reified T : KtElement> KtFile.findSmallestElementOfTypeContainingSelection(selection: TextRange): T? =
        findElementAt(selection.startOffset)
            ?.parentsOfType<T>(withSelf = true)
            ?.firstOrNull { selection in it.textRange }
    
    /**
     * How a symbol is imported. The order of the enum entry represents the priority of imports. If a symbol is available from multiple kinds of
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_pod_control_test.go

    		{
    			name:        "all refs",
    			claimStates: []string{withRef, withRef},
    			expected:    false,
    		},
    		{
    			name:        "stale & exists",
    			claimStates: []string{stale, exists},
    			expected:    true,
    		},
    		{
    			name:        "stale & missing",
    			claimStates: []string{stale, missing},
    			expected:    true,
    		},
    		{
    			name:        "withRef & stale",
    			claimStates: []string{withRef, stale},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. CREDITS

     * this copyright notice must be retained, unchanged, in its entirety.  If
     * for any reason the author might be held responsible for any consequences
     * of copying or use, license is withheld.
     */
    
    
    --------------------------------------------------
    For lib/py/compat/win32/stdint.h
    
    // ISO C9x  compliant stdint.h for Microsoft Visual Studio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top