Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for specialName (0.14 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) encoding(params bool, local forLocalNameType) AST {
    	if len(st.str) < 1 {
    		st.fail("expected encoding")
    	}
    
    	if st.str[0] == 'G' || st.str[0] == 'T' {
    		return st.specialName()
    	}
    
    	a, explicitObjectParameter := st.name()
    	a = simplify(a)
    
    	if !params {
    		// Don't demangle the parameters.
    
    		// Strip CV-qualifiers, as they apply to the 'this'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                withEntry("firScope", this@correspondingClassIdIfExists) { it.toString() }
            }
        }
    
        private fun ClassId.idWithoutCompanion() = if (shortClassName == SpecialNames.DEFAULT_NAME_FOR_COMPANION_OBJECT) outerClassId else this
    
        private fun FirScope.isScopeForClass(): Boolean = when {
            this is FirNestedClassifierScope -> true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top