Home
last modified time | relevance | path

Searched refs:isTypedVector (Results 1 – 10 of 10) sorted by relevance

/third_party/flatbuffers/dart/test/
Dflex_types_test.dart25 expect(ValueTypeUtils.isTypedVector(ValueType.VectorInt), isTrue);
26 expect(ValueTypeUtils.isTypedVector(ValueType.VectorUInt), isTrue);
27 expect(ValueTypeUtils.isTypedVector(ValueType.VectorFloat), isTrue);
28 expect(ValueTypeUtils.isTypedVector(ValueType.VectorBool), isTrue);
29 expect(ValueTypeUtils.isTypedVector(ValueType.VectorKey), isTrue);
30 expect(ValueTypeUtils.isTypedVector(ValueType.VectorString), isTrue);
32 expect(ValueTypeUtils.isTypedVector(ValueType.Vector), isFalse);
33 expect(ValueTypeUtils.isTypedVector(ValueType.Map), isFalse);
34 expect(ValueTypeUtils.isTypedVector(ValueType.Bool), isFalse);
35 expect(ValueTypeUtils.isTypedVector(ValueType.VectorInt2), isFalse);
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/
DJSONTest.kt268 assertEquals(true, ref.isTypedVector) in testArrays()
272 assertEquals(true, ref.isTypedVector) in testArrays()
280 assertEquals(true, ref.isTypedVector) in testArrays()
288 assertEquals(false, ref.isTypedVector) in testArrays()
295 assertEquals(false, ref.isTypedVector) in testArrays()
/third_party/flatbuffers/ts/flexbuffers/
Dvalue-type-util.ts24 export function isTypedVector(value: ValueType): boolean { function
36 return isTypedVector(value)
Dreference.ts3 …ctNumber, isAVector, fixedTypedVectorElementSize, isFixedTypedVector, isTypedVector, typedVectorEl…
104 if (isTypedVector(this.valueType)) {
/third_party/flatbuffers/dart/lib/src/
Dtypes.dart114 static bool isTypedVector(ValueType self) {
131 isTypedVector(self) || isFixedTypedVector(self) || self == ValueType.Vector
Dreference.dart131 if (ValueTypeUtils.isTypedVector(_valueType)) {
/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java111 static boolean isTypedVector(int type) { in isTypedVector() method in FlexBuffers
337 public boolean isTypedVector() { in isTypedVector() method in FlexBuffers.Reference
338 return FlexBuffers.isTypedVector(type); in isTypedVector()
534 } else if (FlexBuffers.isTypedVector(type)) { in asVector()
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffers.kt117 public val isTypedVector: Boolean get() = type.isTypedVector() constant in com.google.flatbuffers.kotlin.Reference
461isTypedVector -> TypedVector(type.toElementTypedVector(), buffer, buffer.indirect(end, parentWidth… in toVector()
DFlexBuffersInternals.kt108 internal fun FlexBufferType.isTypedVector(): Boolean = in isTypedVector() method
/third_party/flatbuffers/tests/
DJavaTest.java769 TestEq(ref.isTypedVector(), true); in testDeprecatedTypedVectorString()
925 assert(r.asMap().get("ints").isTypedVector()); in testSingleFixedTypeVector()
926 assert(r.asMap().get("floats").isTypedVector()); in testSingleFixedTypeVector()
927 assert(r.asMap().get("booleans").isTypedVector()); in testSingleFixedTypeVector()