Searched refs:FBT_BLOB (Results 1 – 3 of 3) sorted by relevance
/third_party/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffers.java | 97 public static final int FBT_BLOB = 25; field in FlexBuffers 354 return type == FBT_BLOB; in isBlob() 600 case FBT_BLOB: in toString()
|
D | FlexBuffersBuilder.java | 437 Value value = writeBlob(iKey, val, FBT_BLOB, false); in putBlob()
|
/third_party/flatbuffers/include/flatbuffers/ |
D | flexbuffers.h | 80 FBT_BLOB = 25, enumerator 414 bool IsBlob() const { return type_ == FBT_BLOB; } in IsBlob() 599 if (type_ == FBT_BLOB || type_ == FBT_STRING) { in AsBlob() 1068 return CreateBlob(data, len, 0, FBT_BLOB); in Blob() 1071 return CreateBlob(flatbuffers::vector_data(v), v.size(), 0, FBT_BLOB); in Blob()
|