Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UcharType (0.19 sec)

  1. src/debug/dwarf/type.go

    func (t *BasicType) String() string {
    	if t.Name != "" {
    		return t.Name
    	}
    	return "?"
    }
    
    // A CharType represents a signed character type.
    type CharType struct {
    	BasicType
    }
    
    // A UcharType represents an unsigned character type.
    type UcharType struct {
    	BasicType
    }
    
    // An IntType represents a signed integer type.
    type IntType struct {
    	BasicType
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            get() = withValidityAssertion { analysisContext.builtIns.booleanType.toKtType(analysisContext) }
    
        override val char: KaType
            get() = withValidityAssertion { analysisContext.builtIns.charType.toKtType(analysisContext) }
    
        override val string: KaType
            get() = withValidityAssertion { analysisContext.builtIns.stringType.toKtType(analysisContext) }
    
        override val unit: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top