Home
last modified time | relevance | path

Searched refs:BooleanValue (Results 1 – 24 of 24) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DTestPropertyTypeInfo.java17 protected static class BooleanValue { class in TestPropertyTypeInfo
21 public BooleanValue(Boolean value) { b = value; } in BooleanValue() method in TestPropertyTypeInfo.BooleanValue
126 list.add(new MethodWrapperBean(new BooleanValue(true))); in testSimpleListMethod()
134 assertEquals(BooleanValue.class, bean.value.getClass()); in testSimpleListMethod()
135 assertEquals(((BooleanValue) bean.value).b, Boolean.TRUE); in testSimpleListMethod()
147 FieldWrapperBean[] { new FieldWrapperBean(new BooleanValue(true)) }); in testSimpleArrayField()
154 assertEquals(BooleanValue.class, bean.value.getClass()); in testSimpleArrayField()
155 assertEquals(((BooleanValue) bean.value).b, Boolean.TRUE); in testSimpleArrayField()
193 map.put("xyz", new MethodWrapperBean(new BooleanValue(true))); in testSimpleMapMethod()
201 assertEquals(BooleanValue.class, ob.getClass()); in testSimpleMapMethod()
[all …]
/external/turbine/java/com/google/turbine/binder/
DConstEvaluator.java369 private Const.BooleanValue asBoolean(int position, Value value) { in asBoolean()
373 return (Const.BooleanValue) value; in asBoolean()
405 result = String.valueOf(((Const.BooleanValue) value).value()); in toString()
660 return new Const.BooleanValue(!asBoolean(position, expr).value()); in unaryNegate()
882 return new Const.BooleanValue(asInt(position, a).value() < asInt(position, b).value()); in lessThan()
884 return new Const.BooleanValue(asLong(position, a).value() < asLong(position, b).value()); in lessThan()
886 return new Const.BooleanValue(asFloat(position, a).value() < asFloat(position, b).value()); in lessThan()
888 return new Const.BooleanValue( in lessThan()
901 return new Const.BooleanValue(asInt(position, a).value() <= asInt(position, b).value()); in lessThanEqual()
903 return new Const.BooleanValue(asLong(position, a).value() <= asLong(position, b).value()); in lessThanEqual()
[all …]
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
DLazyBooleanValue.java35 import com.sun.jdi.BooleanValue;
38 public class LazyBooleanValue extends LazyPrimitiveValue<BooleanValue> implements BooleanValue {
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DBooleanValueImpl.java31 implements BooleanValue {
41 if ((obj != null) && (obj instanceof BooleanValue)) { in equals()
42 return (value == ((BooleanValue)obj).value()) in equals()
DPrimitiveValueImpl.java79 if (this instanceof BooleanValue) { in checkedBooleanValue()
DPacketStream.java282 if(!(val instanceof BooleanValue)) in writeUntaggedValueChecked()
DVirtualMachineImpl.java472 public BooleanValue mirrorOf(boolean value) { in mirrorOf()
/external/turbine/javatests/com/google/turbine/model/
DConstTest.java43 .addEqualityGroup(new Const.BooleanValue(true), new Const.BooleanValue(true)) in equalsTest()
44 .addEqualityGroup(new Const.BooleanValue(false), new Const.BooleanValue(false)) in equalsTest()
/external/turbine/java/com/google/turbine/model/
DConst.java71 public static class BooleanValue extends Value { class in Const
74 public BooleanValue(boolean value) { in BooleanValue() method in Const.BooleanValue
109 return obj instanceof BooleanValue && value == ((BooleanValue) obj).value(); in equals()
/external/cronet/testing/libfuzzer/proto/
Djson.proto40 BooleanValue boolean_value = 5;
83 message BooleanValue { message
/external/guice/core/test/com/google/inject/
DTypeConversionTest.java43 @interface BooleanValue {} annotation in TypeConversionTest
54 @Inject @BooleanValue Boolean booleanField;
55 @Inject @BooleanValue boolean primitiveBooleanField;
104 bindConstant().annotatedWith(BooleanValue.class).to("true"); in testConstantInjection()
139 bindConstant().annotatedWith(BooleanValue.class).to("true"); in testConstantInjectionWithExplicitBindingsRequired()
/external/kotlinpoet/interop/kotlinx-metadata/src/main/kotlin/com/squareup/kotlinpoet/metadata/specs/
DkmAnnotations.kt28 import kotlinx.metadata.KmAnnotationArgument.BooleanValue in <lambda>()
68 is BooleanValue -> CodeBlock.of("%L", value) in toCodeBlock()
/external/oss-fuzz/projects/jsoncpp/
Djson.proto54 BooleanValue boolean_value = 5;
97 message BooleanValue { message
/external/kotlinpoet/interop/kotlinx-metadata/src/test/kotlin/com/squareup/kotlinpoet/metadata/specs/
DKmAnnotationsTest.kt24 import kotlinx.metadata.KmAnnotationArgument.BooleanValue
140 mapOf("value" to BooleanValue(true)), in booleanValue()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DBooleanValue.java38 public interface BooleanValue extends PrimitiveValue { interface
DVirtualMachine.java310 BooleanValue mirrorOf(boolean value); in mirrorOf()
/external/turbine/java/com/google/turbine/parse/
DConstExpressionParser.java115 pos, TurbineConstantTypeKind.BOOLEAN, new Const.BooleanValue(true)); in primary()
122 pos, TurbineConstantTypeKind.BOOLEAN, new Const.BooleanValue(false)); in primary()
/external/turbine/java/com/google/turbine/bytecode/
DAnnotationWriter.java107 writeConst('Z', pool.integer(((Const.BooleanValue) value).value() ? 1 : 0)); in writeConstElementValue()
DAttributeWriter.java161 output.writeShort(pool.integer(((Const.BooleanValue) value).value() ? 1 : 0)); in writeConstantValue()
DClassReader.java358 return new ConstValue(new Const.BooleanValue(readInt(constantPool) != 0)); in readElementValue()
/external/skia/bazel/exporter/build_proto/build/
Dbuild.pb.go883BooleanValue *bool `protobuf:"varint,14,opt,name=boolean_value,json=booleanValue" json:"boolean_va… member
988 if x != nil && x.BooleanValue != nil {
989 return *x.BooleanValue
2274BooleanValue *bool `protobuf:"varint,4,opt,name=boolean_v… member
2349 if x != nil && x.BooleanValue != nil {
2350 return *x.BooleanValue
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBinder.java186 return new Const.BooleanValue(asInt(value) != 0); in bindConstValue()
/external/libchrome/components/policy/core/common/
Dconfiguration_policy_provider_test.cc261 TEST_P(ConfigurationPolicyProviderTest, BooleanValue) { in TEST_P() argument
/external/pdfium/fxjs/
Dfxv8.cpp143 return pValue->BooleanValue(pIsolate); in ReentrantToBooleanHelper()