Home
last modified time | relevance | path

Searched refs:SourceCast (Results 1 – 2 of 2) sorted by relevance

/external/flatbuffers/src/
Didl_gen_java.cpp232 std::string SourceCast(const Type &type, bool castFromDest) const { in SourceCast() function in flatbuffers::java::JavaGenerator
234 return SourceCast(type.VectorType(), castFromDest); in SourceCast()
248 std::string SourceCast(const Type &type) const { in SourceCast() function in flatbuffers::java::JavaGenerator
249 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()
Didl_gen_csharp.cpp188 std::string SourceCast(const Type &type) const { in SourceCast() function in flatbuffers::csharp::CSharpGenerator
190 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()