Home
last modified time | relevance | path

Searched refs:GetDataType (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dfake_input.cc41 Status GetDataType(DataType* dt) const;
95 TF_RETURN_IF_ERROR(GetDataType(&dt)); in AddInputToBuilder()
115 TF_RETURN_IF_ERROR(GetDataType(&dt)); in AddInputToBuilder()
141 Status FakeInputImpl::GetDataType(DataType* dt) const { in GetDataType() function in tensorflow::__anona398ba0d0111::FakeInputImpl
Dtensor_util.h200 static DataType GetDataType() { return DataTypeToEnum<T>::value; }
252 static DataType GetDataType() { return DataType::DT_STRING; }
288 tensor.set_dtype(TypeHelper::GetDataType());
/external/libchrome/dbus/
Dvalues_util.cc40 DCHECK_EQ(Message::DICT_ENTRY, reader->GetDataType()); in PopDictionaryEntries()
46 if (entry_reader.GetDataType() == Message::STRING) { in PopDictionaryEntries()
94 switch (reader->GetDataType()) { in PopDataAsValue()
181 if (sub_reader.GetDataType() == Message::DICT_ENTRY) { in PopDataAsValue()
Dmessage.h484 Message::DataType GetDataType();
Dmessage.cc91 const DataType type = reader->GetDataType(); in ToStringInternal()
990 Message::DataType MessageReader::GetDataType() { in GetDataType() function in dbus::MessageReader
/external/libbrillo/brillo/dbus/
Ddata_serialization.cc274 switch (reader->GetDataType()) { in PopValueFromReader()
314 LOG(FATAL) << "Unknown D-Bus data type: " << variant_reader.GetDataType(); in PopValueFromReader()
Ddata_serialization.h158 if ((*reader_ref)->GetDataType() != dbus::Message::VARIANT)
Ddata_serialization_unittest.cc157 EXPECT_EQ(Message::BYTE, reader.GetDataType()); in TEST()