Home
last modified time | relevance | path

Searched refs:startMap (Results 1 – 12 of 12) sorted by relevance

/third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/
DFlexBuffersBenchmark.kt77 val startMap = jBuilder.startMap() in mapJava() constant
86 val startInnerMap = jBuilder.startMap() in mapJava()
90 jBuilder.endMap(null, startMap) in mapJava()
153 val pos = kBuilder.startMap() in stringMapKotlin()
170 val pos = kBuilder.startMap() in stringMapBytIndexKotlin()
185 val v = jBuilder.startMap() in stringMapJava()
/third_party/flatbuffers/dart/test/
Dflex_builder_test.dart192 ..startMap()
201 ..startMap()
213 ..startMap()
217 ..startMap()
/third_party/icu/icu4c/source/test/intltest/
Dutxttest.cpp1004 int32_t startMap[] = { 0, 0, 2, 2, 2, 5, 5, 5, 5, 9, 9}; in ErrorTest() local
1021 int32_t startMapLimit = UPRV_LENGTHOF(startMap); in ErrorTest()
1025 TEST_ASSERT(cpIndex == startMap[i]); in ErrorTest()
1027 TEST_ASSERT(cpIndex == startMap[i]); in ErrorTest()
1035 TEST_ASSERT(cpIndex == startMap[i]); in ErrorTest()
1080 int32_t startMap[] ={ 0, 1, 1, 3, 4, 4, 6, 6}; in ErrorTest() local
1092 int32_t startMapLimit = UPRV_LENGTHOF(startMap); in ErrorTest()
1097 TEST_ASSERT(cpIndex == startMap[i]); in ErrorTest()
1105 TEST_ASSERT(cpIndex == startMap[i]); in ErrorTest()
1148 int32_t startMap[] ={ 0, 1, 1, 3, 4, 4, 6, 6}; in ErrorTest() local
[all …]
/third_party/flatbuffers/tests/
DJavaScriptFlexBuffersTest.js236 builder.startMap();
283 builder.startMap();
304 builder.startMap();
DJavaTest.java617 int map1 = builder.startMap(); in testFlexBuffersTest()
626 int map2 = builder.startMap(); in testFlexBuffersTest()
650 map2 = builder.startMap(); in testFlexBuffersTest()
900 int mapPos = builder.startMap(); in testSingleFixedTypeVector()
956 int mapPost = b.startMap(); in testSingleElementMap()
1003 int mapStart = builder.startMap(); in testHashMapToMap()
1053 int map = builder.startMap(); in testFlexBuffersUtf8Map()
/third_party/flatbuffers/dart/lib/src/
Dbuilder.dart68 startMap();
128 /// It also implies that you call this method only after you called [startMap].
215 /// It is also possible to add nested vector or map by calling [startVector] / [startMap].
225 …/// It is also possible to add nested vector or map by calling [startVector] / [startMap] after ca…
226 void startMap() {
/third_party/flatbuffers/ts/flexbuffers/
Dbuilder.ts185 startMap(presorted = false): void { method in Builder
452 this.startMap(true);
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffersBuilder.kt419 public fun startMap(): Int = stack.size in endTypedVector() method in com.google.flatbuffers.kotlin.FlexBuffersBuilder
427 val pos = startMap() in endTypedVector()
DJSON.kt160 val fPos = output.startMap() in parseObject()
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffersTest.kt271 val pos = builder.startMap() in <lambda>()
/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffersBuilder.java598 public int startMap() { in startMap() method in FlexBuffersBuilder
/third_party/flatbuffers/docs/source/
DFlexBuffers.md133 int smap = builder.startMap();