Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for IsBoolean (0.23 sec)

  1. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          assertTrue(desc, isGuarded(method));
          assertTrue(desc, isBoolean(method));
        } else if (isTryEnter(method)) {
          assertFalse(desc, isTimed(method));
          assertTrue(desc, isBoolean(method));
          assertFalse(desc, isInterruptible(method));
        } else if (isWaitFor(method)) {
          assertTrue(desc, isGuarded(method));
          assertEquals(desc, isTimed(method), isBoolean(method));
        } else { // any other enterXxx method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          assertTrue(desc, isGuarded(method));
          assertTrue(desc, isBoolean(method));
        } else if (isTryEnter(method)) {
          assertFalse(desc, isTimed(method));
          assertTrue(desc, isBoolean(method));
          assertFalse(desc, isInterruptible(method));
        } else if (isWaitFor(method)) {
          assertTrue(desc, isGuarded(method));
          assertEquals(desc, isTimed(method), isBoolean(method));
        } else { // any other enterXxx method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/const.go

    	if l.Type() == nil || r.Type() == nil {
    		return l, r
    	}
    
    	if !l.Type().IsInterface() && !r.Type().IsInterface() {
    		// Can't mix bool with non-bool, string with non-string.
    		if l.Type().IsBoolean() != r.Type().IsBoolean() {
    			return l, r
    		}
    		if l.Type().IsString() != r.Type().IsString() {
    			return l, r
    		}
    	}
    
    	if !l.Type().IsUntyped() {
    		r = convlit(r, l.Type())
    		return l, r
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

            else method.parameterTypes.last().name
    
        val isBoolean =
            primitiveTypeStrings[propertyJavaType] == Boolean::class.simpleName
    
        val propertyNames =
            if (hasIsGetterName) listOf(method.name)
            else {
                val prefixRemoved = method.name.drop(3)
                if (hasSetterName && isBoolean) listOf("is$prefixRemoved", prefixRemoved.decapitalize())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val KaType.isChar: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.CHAR) }
        public val KaType.isBoolean: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.BOOLEAN) }
        public val KaType.isString: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.STRING) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/predicates.go

    // The isX predicates below report whether t is an X.
    // If t is a type parameter the result is false; i.e.,
    // these predicates don't look inside a type parameter.
    
    func isBoolean(t Type) bool        { return isBasic(t, IsBoolean) }
    func isInteger(t Type) bool        { return isBasic(t, IsInteger) }
    func isUnsigned(t Type) bool       { return isBasic(t, IsUnsigned) }
    func isFloat(t Type) bool          { return isBasic(t, IsFloat) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/go/types/predicates.go

    // The isX predicates below report whether t is an X.
    // If t is a type parameter the result is false; i.e.,
    // these predicates don't look inside a type parameter.
    
    func isBoolean(t Type) bool        { return isBasic(t, IsBoolean) }
    func isInteger(t Type) bool        { return isBasic(t, IsInteger) }
    func isUnsigned(t Type) bool       { return isBasic(t, IsUnsigned) }
    func isFloat(t Type) bool          { return isBasic(t, IsFloat) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

            val constantValue = when {
                value == null -> KaConstantValue.KaNullConstantValue(expression)
                type == null -> KaConstantValueFactory.createConstantValue(value, psi as? KtElement)
                type.isBoolean -> KaConstantValue.KaBooleanConstantValue(value as Boolean, expression)
                type.isChar -> KaConstantValue.KaCharConstantValue((value as? Char) ?: (value as Number).toInt().toChar(), 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)
  9. src/cmd/compile/internal/walk/convert.go

    	if types.IsDirectIface(fromType) {
    		return n
    	}
    
    	isInteger := fromType.IsInteger()
    	isBool := fromType.IsBoolean()
    	if sc := fromType.SoleComponent(); sc != nil {
    		isInteger = sc.IsInteger()
    		isBool = sc.IsBoolean()
    	}
    	// Try a bunch of cases to avoid an allocation.
    	var value ir.Node
    	switch {
    	case fromType.Size() == 0:
    		// n is zero-sized. Use zerobase.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/check.go

    			if len(b.Succs) != 2 {
    				f.Fatalf("if block %s len(Succs)==%d, want 2", b, len(b.Succs))
    			}
    			if b.NumControls() != 1 {
    				f.Fatalf("if block %s has no control value", b)
    			}
    			if !b.Controls[0].Type.IsBoolean() {
    				f.Fatalf("if block %s has non-bool control value %s", b, b.Controls[0].LongString())
    			}
    		case BlockDefer:
    			if len(b.Succs) != 2 {
    				f.Fatalf("defer block %s len(Succs)==%d, want 2", b, len(b.Succs))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top