Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for UcharType (0.18 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. src/cmd/cgo/gcc.go

    		}
    
    	case *dwarf.VoidType:
    		t.Go = c.goVoid
    		t.C.Set("void")
    		t.Align = 1
    	}
    
    	switch dtype.(type) {
    	case *dwarf.AddrType, *dwarf.BoolType, *dwarf.CharType, *dwarf.ComplexType, *dwarf.IntType, *dwarf.FloatType, *dwarf.UcharType, *dwarf.UintType:
    		s := dtype.Common().Name
    		if s != "" {
    			if ss, ok := dwarfToName[s]; ok {
    				s = ss
    			}
    			s = strings.Replace(s, " ", "", -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*TypedefType).Common", Method, 0},
    		{"(*TypedefType).Size", Method, 0},
    		{"(*TypedefType).String", Method, 0},
    		{"(*UcharType).Basic", Method, 0},
    		{"(*UcharType).Common", Method, 0},
    		{"(*UcharType).Size", Method, 0},
    		{"(*UcharType).String", Method, 0},
    		{"(*UintType).Basic", Method, 0},
    		{"(*UintType).Common", Method, 0},
    		{"(*UintType).Size", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirBuiltInTypes.kt

        override val float: KaType by cachedBuiltin(builtinTypes.floatType)
        override val double: KaType by cachedBuiltin(builtinTypes.doubleType)
    
        override val char: KaType by cachedBuiltin(builtinTypes.charType)
        override val boolean: KaType by cachedBuiltin(builtinTypes.booleanType)
        override val string: KaType by cachedBuiltin(builtinTypes.stringType)
    
        override val unit: KaType by cachedBuiltin(builtinTypes.unitType)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    #define GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(CharType)                \
      template <typename OtherOperand>                                      \
      class FormatForComparison<CharType*, OtherOperand> {                  \
       public:                                                              \
        static ::std::string Format(CharType* value) {                      \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #define GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(CharType)                \
      template <typename OtherOperand>                                      \
      class FormatForComparison<CharType*, OtherOperand> {                  \
       public:                                                              \
        static ::std::string Format(CharType* value) {                      \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg debug/dwarf, method (*TypedefType) Size() int64
    pkg debug/dwarf, method (*TypedefType) String() string
    pkg debug/dwarf, method (*UcharType) Basic() *BasicType
    pkg debug/dwarf, method (*UcharType) Common() *CommonType
    pkg debug/dwarf, method (*UcharType) Size() int64
    pkg debug/dwarf, method (*UcharType) String() string
    pkg debug/dwarf, method (*UintType) Basic() *BasicType
    pkg debug/dwarf, method (*UintType) Common() *CommonType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. 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