Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for t_ushort (0.16 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

                    isBoolean -> "false"
                    isUnit -> "Unit"
                    isString -> "\"\""
                    isUInt -> "0.toUInt()"
                    isULong -> "0.toULong()"
                    isUShort -> "0.toUShort()"
                    isUByte -> "0.toUByte()"
                    else -> null
                }
            }
    }
    
    public typealias KtTypeInfoProviderMixIn = KaTypeInfoProviderMixIn
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                type.isShort -> KaConstantValue.KaShortConstantValue((value as Number).toShort(), expression)
                type.isUShort -> KaConstantValue.KaUnsignedShortConstantValue((value as Number).toShort().toUShort(), expression)
                type.isInt -> KaConstantValue.KaIntConstantValue((value as Number).toInt(), expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.Long -> (value as Number).toLong()
                ConstantValueKind.Short -> (value as Number).toShort()
                ConstantValueKind.UnsignedByte -> (value as Number).toLong().toUByte()
                ConstantValueKind.UnsignedShort -> (value as Number).toLong().toUShort()
                ConstantValueKind.UnsignedInt -> (value as Number).toLong().toUInt()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

                            println "prop theLong      : $p.theLong :"
                            println "prop thelong      : $p.thelong :"
                            println "prop theshort     : $p.theshort :"
                            println "prop theShort     : $p.theShort :"
                            println "prop theString    : $p.theString :"
                            println "prop theThing     : $p.theThing :"
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/convert/ShortConversionUtilTest.java

     *
     */
    public class ShortConversionUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testToShort() throws Exception {
            assertEquals(new Short("1000"), ShortConversionUtil.toShort("1,000"));
        }
    
        /**
         * @throws Exception
         */
        public void testToPrimitiveShort() throws Exception {
            assertEquals(1000, ShortConversionUtil.toPrimitiveShort("1,000"));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/convert/ShortConversionUtil.java

         * @return 変換された{@link Short}
         */
        public static Short toShort(final Object o) {
            return toShort(o, null);
        }
    
        /**
         * {@link Short}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
         * @return 変換された{@link Short}
         */
        public static Short toShort(final Object o, final String pattern) {
            if (o == null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/testdata/err2.go

    func main() {
    	s := ""
    	_ = s
    	C.malloc(s) // ERROR HERE
    
    	x := (*C.bar_t)(nil)
    	C.foop = x // ERROR HERE
    
    	// issue 13129: used to output error about C.unsignedshort with CC=clang
    	var x1 C.ushort
    	x1 = int(0) // ERROR HERE: C\.ushort
    
    	// issue 13423
    	_ = C.fopen() // ERROR HERE
    
    	// issue 13467
    	var x2 rune = '✈'
    	var _ rune = C.transform(x2) // ERROR HERE: C\.int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/syscall/types_freebsd.go

    	struct  timeval ifi_lastchange;
    };
    
    // This structure is a duplicate of if_msghdr on FreeBSD 8-STABLE.
    // See /usr/include/net/if.h.
    struct if_msghdr8 {
    	u_short ifm_msglen;
    	u_char  ifm_version;
    	u_char  ifm_type;
    	int     ifm_addrs;
    	int     ifm_flags;
    	u_short ifm_index;
    	struct  if_data8 ifm_data;
    };
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValueFactory.kt

            is UByte -> KaConstantValue.KaUnsignedByteConstantValue(value, expression)
            is Short -> KaConstantValue.KaShortConstantValue(value, expression)
            is UShort -> KaConstantValue.KaUnsignedShortConstantValue(value, expression)
            is Int -> KaConstantValue.KaIntConstantValue(value, expression)
            is UInt -> KaConstantValue.KaUnsignedIntConstantValue(value, expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/NumberConversionUtil.java

                return LongConversionUtil.toLong(o);
            } else if (type == Float.class) {
                return FloatConversionUtil.toFloat(o);
            } else if (type == Short.class) {
                return ShortConversionUtil.toShort(o);
            } else if (type == BigInteger.class) {
                return BigIntegerConversionUtil.toBigInteger(o);
            } else if (type == Byte.class) {
                return ByteConversionUtil.toByte(o);
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top