OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:valueinterface
(Results
1 - 19
of
19
) sorted by null
/external/tensorflow/tensorflow/core/framework/
variant.h
158
: value_(other.is_empty() ? std::unique_ptr<
ValueInterface
>()
286
struct
ValueInterface
{
287
virtual ~
ValueInterface
() = default;
291
virtual std::unique_ptr<
ValueInterface
> Clone() const = 0;
301
struct Value :
ValueInterface
{
316
std::unique_ptr<
ValueInterface
> Clone() const override {
317
return std::unique_ptr<
ValueInterface
>(new Value(in_place, value));
341
// value_ can point to any type T as wrapped by a
ValueInterface
.
343
std::unique_ptr<
ValueInterface
> value_;
/prebuilts/go/darwin-x86/src/reflect/
deepequal.go
132
return
valueInterface
(v1, false) ==
valueInterface
(v2, false)
value.go
116
// TODO: pass safe boolean from
valueInterface
so
948
return
valueInterface
(v, true)
951
func
valueInterface
(v Value, safe bool) interface{} {
[
all
...]
/prebuilts/go/linux-x86/src/reflect/
deepequal.go
132
return
valueInterface
(v1, false) ==
valueInterface
(v2, false)
value.go
116
// TODO: pass safe boolean from
valueInterface
so
948
return
valueInterface
(v, true)
951
func
valueInterface
(v Value, safe bool) interface{} {
[
all
...]
/prebuilts/go/darwin-x86/src/encoding/json/
decode.go
1032
//
valueInterface
is like value but returns interface{}
1033
func (d *decodeState)
valueInterface
() interface{} {
1061
v = append(v, d.
valueInterface
())
1107
m[key] = d.
valueInterface
()
[
all
...]
/prebuilts/go/linux-x86/src/encoding/json/
decode.go
1032
//
valueInterface
is like value but returns interface{}
1033
func (d *decodeState)
valueInterface
() interface{} {
1061
v = append(v, d.
valueInterface
())
1107
m[key] = d.
valueInterface
()
[
all
...]
/prebuilts/go/darwin-x86/pkg/darwin_amd64/encoding/
json.a
158
valueInterface