Home
last modified time | relevance | path

Searched refs:offset_prefix (Results 1 – 6 of 6) sorted by relevance

/external/flatbuffers/src/
Didl_gen_java.cpp660 auto offset_prefix = in GenStruct() local
694 code += offset_prefix + getter; in GenStruct()
708 code += offset_prefix + conditional_cast; in GenStruct()
719 code += offset_prefix + getter + "(o + "; in GenStruct()
733 const auto body = offset_prefix + conditional_cast + getter + "("; in GenStruct()
767 code += "(" + type_name + " obj)" + offset_prefix + getter; in GenStruct()
779 code += offset_prefix; in GenStruct()
795 code += offset_prefix; in GenStruct()
805 code += offset_prefix; in GenStruct()
836 code += offset_prefix + conditional_cast + obj + ".__assign("; in GenStruct()
Didl_gen_js_ts.cpp777 auto offset_prefix = in GenStruct() local
836 code += offset_prefix + in GenStruct()
869 code += offset_prefix + "(obj || " + GenerateNewExpression(type) + in GenStruct()
952 code += offset_prefix + "(obj || " + in GenStruct()
965 code += offset_prefix + GenGetter(vectortype, "(" + index + ")"); in GenStruct()
1005 code += offset_prefix + in GenStruct()
1078 code += "Length():number {\n" + offset_prefix; in GenStruct()
1081 code += "Length = function() {\n" + offset_prefix; in GenStruct()
1104 offset_prefix; in GenStruct()
1107 code += "Array = function() {\n" + offset_prefix; in GenStruct()
Didl_gen_csharp.cpp617 auto offset_prefix = in GenStruct() local
659 code += offset_prefix + getter; in GenStruct()
674 code += offset_prefix + conditional_cast; in GenStruct()
685 code += offset_prefix + getter + "(o + " + "__p."; in GenStruct()
701 const auto body = offset_prefix + conditional_cast + getter + "("; in GenStruct()
737 code += offset_prefix + GenGetter(Type(BASE_TYPE_STRING)); in GenStruct()
744 code += offset_prefix + "(TTable?)" + getter; in GenStruct()
751 code += offset_prefix + GenGetter(Type(BASE_TYPE_STRING)); in GenStruct()
764 code += offset_prefix; in GenStruct()
780 code += offset_prefix; in GenStruct()
Didl_gen_rust.cpp1009 const std::string &offset_prefix) { in GenTableAccessorFuncBody() argument
1011 offset_prefix + "::" + GetFieldOffsetName(field); in GenTableAccessorFuncBody()
1252 const auto offset_prefix = Name(struct_def); in GenTable() local
1265 GenTableAccessorFuncBody(field, "'a", offset_prefix)); in GenTable()
1290 offset_prefix + "::" + GetFieldOffsetName(field)); in GenTable()
Didl_gen_kotlin.cpp813 auto offset_prefix = in GenerateStructGetters() local
/external/rust/crates/aho-corasick/src/packed/
Dtests.rs37 tests.push(self.offset_prefix(i)); in variations()
63 fn offset_prefix(&self, off: usize) -> SearchTestOwned { in offset_prefix() method