Searched refs:default_types (Results 1 – 9 of 9) sorted by relevance
/external/tensorflow/tensorflow/java/src/gen/cc/ |
D | op_generator.cc | 148 std::map<string, Type> default_types, in RenderSecondaryFactoryMethod() argument 155 default_types.find(parameter.name()) != default_types.end()) { in RenderSecondaryFactoryMethod() 156 return_type.add_parameter(default_types.at(parameter.name())); in RenderSecondaryFactoryMethod() 179 default_types.find(attr.type().name()) != default_types.end()) { in RenderSecondaryFactoryMethod() 180 factory_statement << default_types.at(attr.type().name()).name() in RenderSecondaryFactoryMethod() 212 std::map<string, Type> default_types; in RenderFactoryMethods() local 220 default_types.insert(std::make_pair(attr.type().name(), default_type)); in RenderFactoryMethods() 271 if (!default_types.empty()) { in RenderFactoryMethods() 272 RenderSecondaryFactoryMethod(op, op_class, default_types, writer); in RenderFactoryMethods()
|
/external/libxkbcommon/test/data/rules/ |
D | inc-dst-simple | 12 * = default_types
|
D | groups | 17 * = default_types
|
D | simple | 14 * = default_types
|
D | inc-dst-loop-twice | 12 * = default_types
|
D | multiple-options | 14 * = default_types
|
D | index | 25 * = default_types
|
/external/openscreen/tools/cddl/ |
D | sema.cc | 742 std::vector<std::pair<std::string, CppType::Which>> default_types; in PrePopulateCppTypes() local 743 default_types.emplace_back("text", CppType::Which::kString); in PrePopulateCppTypes() 744 default_types.emplace_back("tstr", CppType::Which::kString); in PrePopulateCppTypes() 745 default_types.emplace_back("bstr", CppType::Which::kBytes); in PrePopulateCppTypes() 746 default_types.emplace_back("bytes", CppType::Which::kBytes); in PrePopulateCppTypes() 747 default_types.emplace_back("uint", CppType::Which::kUint64); in PrePopulateCppTypes() 749 for (auto& pair : default_types) { in PrePopulateCppTypes()
|
/external/tensorflow/tensorflow/lite/python/ |
D | lite.py | 590 default_types = [_dtypes.float32] 594 all_types = default_types + [_dtypes.int16] 596 all_types = default_types + [_dtypes.int8, _dtypes.uint8] 602 elif self.inference_input_type not in default_types or \ 603 self.inference_output_type not in default_types:
|