Home
last modified time | relevance | path

Searched refs:ValueInterface (Results 1 – 3 of 3) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
DTestJsonSerialize.java26 interface ValueInterface { interface in TestJsonSerialize
31 implements ValueInterface
44 @JsonSerialize(as=ValueInterface.class)
54 public ValueInterface getValue() { in getValue()
62 public ValueInterface getStaticValue() { in getStaticValue()
67 public ValueInterface getDynamicValue() { in getDynamicValue()
85 static class ValueMap extends HashMap<String,ValueInterface> { }
87 static class ValueList extends ArrayList<ValueInterface> { }
89 static class ValueLinkedList extends LinkedList<ValueInterface> { }
225 ValueInterface[] array = new ValueInterface[] { new ValueClass() }; in testStaticTypingWithArray()
/external/tensorflow/tensorflow/core/framework/
Dvariant.h307 struct ValueInterface { struct
308 virtual ~ValueInterface() = default;
312 virtual std::unique_ptr<ValueInterface> Clone() const = 0;
313 virtual void CloneInto(ValueInterface* memory) const = 0;
314 virtual void MoveAssign(ValueInterface* memory) = 0;
315 virtual void MoveInto(ValueInterface* memory) = 0;
325 struct Value final : ValueInterface {
344 std::unique_ptr<ValueInterface> Clone() const final { in Clone()
348 void MoveAssign(ValueInterface* memory) final { in MoveAssign()
354 void CloneInto(ValueInterface* memory) const final { in CloneInto()
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/
DBuilderSimpleTest.java134 interface ValueInterface { interface in BuilderSimpleTest
143 static class ValueInterfaceImpl implements ValueInterface
180 public ValueInterface build() { in build()
384 ValueInterface value = MAPPER.readValue(json, ValueInterface.class); in testBuilderMethodReturnMoreGeneral()