Searched refs:toTypedVector (Results 1 – 9 of 9) sorted by relevance
/external/flatbuffers/dart/test/ |
D | flex_types_test.dart | 51 expect(ValueTypeUtils.toTypedVector(ValueType.Int, 0), 53 expect(ValueTypeUtils.toTypedVector(ValueType.UInt, 0), 55 expect(ValueTypeUtils.toTypedVector(ValueType.Bool, 0), 57 expect(ValueTypeUtils.toTypedVector(ValueType.Float, 0), 59 expect(ValueTypeUtils.toTypedVector(ValueType.Key, 0), 61 expect(ValueTypeUtils.toTypedVector(ValueType.String, 0), 64 expect(ValueTypeUtils.toTypedVector(ValueType.Int, 2), 66 expect(ValueTypeUtils.toTypedVector(ValueType.UInt, 2), 68 expect(ValueTypeUtils.toTypedVector(ValueType.Float, 2), 71 expect(ValueTypeUtils.toTypedVector(ValueType.Int, 3), [all …]
|
/external/flatbuffers/ts/flexbuffers/ |
D | value-type-util.ts | 41 export function toTypedVector(valueType: ValueType, length: number): ValueType { function
|
D | builder.ts | 5 import { isNumber, isTypedVectorElement, toTypedVector } from './value-type-util.js' 381 const vType = toTypedVector(vectorType, fix ? vecLength : 0);
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffersBuilder.java | 558 : (typed ? FlexBuffers.toTypedVector(vectorType, fixed ? length : 0) in createVector() 644 return new Value(-1, FlexBuffers.toTypedVector(FBT_KEY,0), bitWidth, vloc); in createKeyVector()
|
D | FlexBuffers.java | 136 static int toTypedVector(int type, int fixedLength) { in toTypedVector() method in FlexBuffers
|
/external/flatbuffers/dart/lib/src/ |
D | types.dart | 153 static ValueType toTypedVector(ValueType self, int length) {
|
D | builder.dart | 353 ValueTypeUtils.toTypedVector(vectorType, fix ? vecLength : 0);
|
/external/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ |
D | FlexBuffersInternals.kt | 114 internal fun FlexBufferType.toTypedVector(): FlexBufferType = (this - T_INT) + T_VECTOR_INT in isTypedVector() method
|
D | FlexBuffersBuilder.kt | 684 return createAnyVector(key, start, length, elementType.toTypedVector(), keys) in createTypedVector()
|