Lines Matching refs:flat

202 std::string NameFlatTypeKind(flat::Type::Kind kind) {  in NameFlatTypeKind()
204 case flat::Type::Kind::kArray: in NameFlatTypeKind()
206 case flat::Type::Kind::kVector: in NameFlatTypeKind()
208 case flat::Type::Kind::kString: in NameFlatTypeKind()
210 case flat::Type::Kind::kHandle: in NameFlatTypeKind()
212 case flat::Type::Kind::kRequestHandle: in NameFlatTypeKind()
214 case flat::Type::Kind::kPrimitive: in NameFlatTypeKind()
216 case flat::Type::Kind::kIdentifier: in NameFlatTypeKind()
221 std::string NameFlatConstantKind(flat::Constant::Kind kind) { in NameFlatConstantKind()
223 case flat::Constant::Kind::kIdentifier: in NameFlatConstantKind()
225 case flat::Constant::Kind::kLiteral: in NameFlatConstantKind()
273 std::string NameUnionTag(StringView union_name, const flat::Union::Member& member) { in NameUnionTag()
277 std::string NameFlatCType(const flat::Type* type, flat::Decl::Kind decl_kind) { in NameFlatCType()
280 case flat::Type::Kind::kHandle: in NameFlatCType()
281 case flat::Type::Kind::kRequestHandle: in NameFlatCType()
284 case flat::Type::Kind::kVector: in NameFlatCType()
286 case flat::Type::Kind::kString: in NameFlatCType()
289 case flat::Type::Kind::kPrimitive: { in NameFlatCType()
290 auto primitive_type = static_cast<const flat::PrimitiveType*>(type); in NameFlatCType()
294 case flat::Type::Kind::kArray: { in NameFlatCType()
295 auto array_type = static_cast<const flat::ArrayType*>(type); in NameFlatCType()
300 case flat::Type::Kind::kIdentifier: { in NameFlatCType()
301 auto identifier_type = static_cast<const flat::IdentifierType*>(type); in NameFlatCType()
303 case flat::Decl::Kind::kConst: in NameFlatCType()
304 case flat::Decl::Kind::kEnum: in NameFlatCType()
305 case flat::Decl::Kind::kStruct: in NameFlatCType()
306 case flat::Decl::Kind::kUnion: { in NameFlatCType()
313 case flat::Decl::Kind::kInterface: { in NameFlatCType()
328 std::string NameName(const flat::Name& name, StringView library_separator, StringView name_separato… in NameName()
343 std::string NameInterface(const flat::Interface& interface) { in NameInterface()
347 std::string NameDiscoverable(const flat::Interface& interface) { in NameDiscoverable()
351 std::string NameMethod(StringView interface_name, const flat::Interface::Method& method) { in NameMethod()
393 std::string NameCodedStruct(const flat::Struct* struct_decl) { in NameCodedStruct()
397 std::string NameCodedUnion(const flat::Union* union_decl) { in NameCodedUnion()