Searched refs:SourceCast (Results 1 – 2 of 2) sorted by relevance
232 std::string SourceCast(const Type &type, bool castFromDest) const { in SourceCast() function in flatbuffers::java::JavaGenerator234 return SourceCast(type.VectorType(), castFromDest); in SourceCast()248 std::string SourceCast(const Type &type) const { in SourceCast() function in flatbuffers::java::JavaGenerator249 return SourceCast(type, true); in SourceCast()253 return IsScalar(type.base_type) ? SourceCast(type, castFromDest) : ""; in SourceCastBasic()490 code += SourceCast(type); in GenStructBody()650 std::string src_cast = SourceCast(field.value.type); in GenStruct()
188 std::string SourceCast(const Type &type) const { in SourceCast() function in flatbuffers::csharp::CSharpGenerator190 return SourceCast(type.VectorType()); in SourceCast()198 return IsScalar(type.base_type) ? SourceCast(type) : ""; in SourceCastBasic()447 code += SourceCast(type); in GenStructBody()610 std::string src_cast = SourceCast(field.value.type); in GenStruct()