Home
last modified time | relevance | path

Searched defs:builder (Results 1 – 25 of 15309) sorted by relevance

12345678910>>...613

/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/
H A DMonster.py819 def MonsterStart(builder): builder.StartObject(54) argument
820 def Start(builder): argument
822 def MonsterAddPos(builder, pos): builder.PrependStructSlot(0, flatbuffers.number_types.UOffsetTFlag… argument
823 def AddPos(builder, pos): argument
825 def MonsterAddMana(builder, mana): builder.PrependInt16Slot(1, mana, 150) argument
826 def AddMana(builder, mana): argument
828 def MonsterAddHp(builder, hp): builder.PrependInt16Slot(2, hp, 100) argument
829 def AddHp(builder, hp): argument
831 def MonsterAddName(builder, name): builder.PrependUOffsetTRelativeSlot(3, flatbuffers.number_types.… argument
832 def AddName(builder, name): argument
[all …]
H A DMonster.php761 public static function startMonster(FlatBufferBuilder $builder)
770 …public static function createMonster(FlatBufferBuilder $builder, $pos, $mana, $hp, $name, $invento…
836 public static function addPos(FlatBufferBuilder $builder, $pos)
846 public static function addMana(FlatBufferBuilder $builder, $mana)
856 public static function addHp(FlatBufferBuilder $builder, $hp)
866 public static function addName(FlatBufferBuilder $builder, $name)
876 public static function addInventory(FlatBufferBuilder $builder, $inventory)
886 public static function createInventoryVector(FlatBufferBuilder $builder, array $data)
900 public static function startInventoryVector(FlatBufferBuilder $builder, $numElems)
910 public static function addColor(FlatBufferBuilder $builder, $color)
[all …]
H A DTypeAliases.py155 def TypeAliasesStart(builder): builder.StartObject(12) argument
156 def Start(builder): argument
158 def TypeAliasesAddI8(builder, i8): builder.PrependInt8Slot(0, i8, 0) argument
159 def AddI8(builder, i8): argument
161 def TypeAliasesAddU8(builder, u8): builder.PrependUint8Slot(1, u8, 0) argument
162 def AddU8(builder, u8): argument
164 def TypeAliasesAddI16(builder, i16): builder.PrependInt16Slot(2, i16, 0) argument
165 def AddI16(builder, i16): argument
167 def TypeAliasesAddU16(builder, u16): builder.PrependUint16Slot(3, u16, 0) argument
168 def AddU16(builder, u16): argument
[all …]
H A DMonster.java220 public static void startMonster(FlatBufferBuilder builder) { builder.startTable(54); } in startMonster()
221 …public static void addPos(FlatBufferBuilder builder, int posOffset) { builder.addStruct(0, posOffs… in addPos()
222 …public static void addMana(FlatBufferBuilder builder, short mana) { builder.addShort(1, mana, 150)… in addMana()
223 public static void addHp(FlatBufferBuilder builder, short hp) { builder.addShort(2, hp, 100); } in addHp()
224 …public static void addName(FlatBufferBuilder builder, int nameOffset) { builder.addOffset(nameOffs… in addName()
225 …public static void addInventory(FlatBufferBuilder builder, int inventoryOffset) { builder.addOffse… in addInventory()
226 …public static int createInventoryVector(FlatBufferBuilder builder, byte[] data) { return builder.c… in createInventoryVector()
227 …public static int createInventoryVector(FlatBufferBuilder builder, ByteBuffer data) { return build… in createInventoryVector()
228 …public static void startInventoryVector(FlatBufferBuilder builder, int numElems) { builder.startVe… in startInventoryVector()
229 …public static void addColor(FlatBufferBuilder builder, int color) { builder.addByte(6, (byte) colo… in addColor()
[all …]
/aosp_15_r20/external/flatbuffers/tests/optional_scalars/
H A DScalarStuff.py283 def ScalarStuffStart(builder): builder.StartObject(36) argument
284 def Start(builder): argument
286 def ScalarStuffAddJustI8(builder, justI8): builder.PrependInt8Slot(0, justI8, 0) argument
287 def AddJustI8(builder, justI8): argument
289 def ScalarStuffAddMaybeI8(builder, maybeI8): builder.PrependInt8Slot(1, maybeI8, None) argument
290 def AddMaybeI8(builder, maybeI8): argument
292 def ScalarStuffAddDefaultI8(builder, defaultI8): builder.PrependInt8Slot(2, defaultI8, 42) argument
293 def AddDefaultI8(builder, defaultI8): argument
295 def ScalarStuffAddJustU8(builder, justU8): builder.PrependUint8Slot(3, justU8, 0) argument
296 def AddJustU8(builder, justU8): argument
[all …]
H A Dscalar-stuff.js168 static startScalarStuff(builder) { argument
171 static addJustI8(builder, justI8) { argument
174 static addMaybeI8(builder, maybeI8) { argument
177 static addDefaultI8(builder, defaultI8) { argument
180 static addJustU8(builder, justU8) { argument
183 static addMaybeU8(builder, maybeU8) { argument
186 static addDefaultU8(builder, defaultU8) { argument
189 static addJustI16(builder, justI16) { argument
192 static addMaybeI16(builder, maybeI16) { argument
195 static addDefaultI16(builder, defaultI16) { argument
[all …]
H A DScalarStuff.java68 public static int createScalarStuff(FlatBufferBuilder builder, in createScalarStuff()
145 public static void startScalarStuff(FlatBufferBuilder builder) { builder.startTable(36); } in startScalarStuff()
146 …public static void addJustI8(FlatBufferBuilder builder, byte justI8) { builder.addByte(0, justI8, … in addJustI8()
147 …public static void addMaybeI8(FlatBufferBuilder builder, byte maybeI8) { builder.addByte(1, maybeI… in addMaybeI8()
148 …public static void addDefaultI8(FlatBufferBuilder builder, byte defaultI8) { builder.addByte(2, de… in addDefaultI8()
149 …public static void addJustU8(FlatBufferBuilder builder, int justU8) { builder.addByte(3, (byte) ju… in addJustU8()
150 …public static void addMaybeU8(FlatBufferBuilder builder, int maybeU8) { builder.addByte(4, (byte) … in addMaybeU8()
151 …public static void addDefaultU8(FlatBufferBuilder builder, int defaultU8) { builder.addByte(5, (by… in addDefaultU8()
152 …public static void addJustI16(FlatBufferBuilder builder, short justI16) { builder.addShort(6, just… in addJustI16()
153 …public static void addMaybeI16(FlatBufferBuilder builder, short maybeI16) { builder.addShort(7, ma… in addMaybeI16()
[all …]
/aosp_15_r20/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DGeneratedMessageTest.java112 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetFieldBuilderForExtensionField() local
131 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetFieldBuilderWithExistingMessage() local
153 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetFieldBuilderWithExistingBuilder() local
181 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetRepeatedFieldBuilderForExtensionField() local
206 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetRepeatedFieldBuilderForExistingBuilder() local
238 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetExtensionFieldOutOfBound() local
273 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testMessageOrBuilder() local
281 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testUsingBuilderMultipleTimes() local
330 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testProtosShareRepeatedArraysIfDidntChange() local
344 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testRepeatedArraysAreImmutable() local
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DGeneratedMessageTest.java112 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetFieldBuilderForExtensionField() local
131 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetFieldBuilderWithExistingMessage() local
153 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetFieldBuilderWithExistingBuilder() local
181 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetRepeatedFieldBuilderForExtensionField() local
206 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetRepeatedFieldBuilderForExistingBuilder() local
238 TestAllExtensions.Builder builder = TestAllExtensions.newBuilder(); in testGetExtensionFieldOutOfBound() local
273 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testMessageOrBuilder() local
281 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testUsingBuilderMultipleTimes() local
330 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testProtosShareRepeatedArraysIfDidntChange() local
344 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testRepeatedArraysAreImmutable() local
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/
H A DJsonFormatTest.java106 private void setAllFields(TestAllTypes.Builder builder) { in setAllFields()
169 Message.Builder builder = message.newBuilderForType(); in assertRoundTripEquals() local
170 parser.merge(printer.print(message), builder); in assertRoundTripEquals() local
179 Message.Builder builder = message.newBuilderForType(); in assertRoundTripEquals() local
180 parser.merge(printer.print(message), builder); in assertRoundTripEquals() local
195 private void mergeFromJson(String json, Message.Builder builder) throws IOException { in mergeFromJson()
199 private void mergeFromJsonIgnoringUnknownFields(String json, Message.Builder builder) in mergeFromJsonIgnoringUnknownFields()
206 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testAllFields() local
312 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testParserAcceptStringForNumericField() local
339 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testParserAcceptFloatingPointValueForIntegerField() local
[all …]
/aosp_15_r20/external/protobuf/java/util/src/test/java/com/google/protobuf/util/
H A DJsonFormatTest.java106 private void setAllFields(TestAllTypes.Builder builder) { in setAllFields()
169 Message.Builder builder = message.newBuilderForType(); in assertRoundTripEquals() local
170 parser.merge(printer.print(message), builder); in assertRoundTripEquals() local
179 Message.Builder builder = message.newBuilderForType(); in assertRoundTripEquals() local
180 parser.merge(printer.print(message), builder); in assertRoundTripEquals() local
195 private void mergeFromJson(String json, Message.Builder builder) throws IOException { in mergeFromJson()
199 private void mergeFromJsonIgnoringUnknownFields(String json, Message.Builder builder) in mergeFromJsonIgnoringUnknownFields()
206 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testAllFields() local
312 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testParserAcceptStringForNumericField() local
339 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); in testParserAcceptFloatingPointValueForIntegerField() local
[all …]
/aosp_15_r20/external/flatbuffers/tests/my-game/example/
H A Dmonster.js532 static startMonster(builder) { argument
535 static addPos(builder, posOffset) { argument
538 static addMana(builder, mana) { argument
541 static addHp(builder, hp) { argument
544 static addName(builder, nameOffset) { argument
547 static addInventory(builder, inventoryOffset) { argument
550 static createInventoryVector(builder, data) { argument
557 static startInventoryVector(builder, numElems) { argument
560 static addColor(builder, color) { argument
563 static addTestType(builder, testType) { argument
[all …]
/aosp_15_r20/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DHalPropValueTest.java89 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromHidlValue() local
109 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/true); in testBuildFromAidlValue() local
129 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromInt32Hidl() local
146 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromInt32sHidl() local
166 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromFloatHidl() local
184 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromFloatsHidl() local
204 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromInt64Hidl() local
221 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromInt64sHidl() local
242 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromStringHidl() local
258 HalPropValueBuilder builder = new HalPropValueBuilder(/*isAidl=*/false); in testBuildFromMixedHidl() local
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/lite/
H A Dflatbuffer_operator.cc47 mlir::Builder builder, in GetPaddingAttr()
85 llvm::StringRef str, flatbuffers::FlatBufferBuilder* builder) { in ConvertTFL_AFAttrForOptionWriter()
96 tflite::TensorType type, flatbuffers::FlatBufferBuilder* builder) { in ConvertDerivedTFLiteTypeAttrForOptionWriter()
106 llvm::StringRef str, flatbuffers::FlatBufferBuilder* builder) { in ConvertTFL_PaddingAttrForOptionWriter()
114 flatbuffers::FlatBufferBuilder* builder) { in ConvertTFL_MirrorPaddingAttrForOptionWriter()
125 mlir::Type type, flatbuffers::FlatBufferBuilder* builder) { in ConvertDerivedTypeAttrForOptionWriter()
131 int i, flatbuffers::FlatBufferBuilder* builder) { in ConvertI32AttrForOptionWriter()
137 int64_t i, flatbuffers::FlatBufferBuilder* builder) { in ConvertI64AttrForOptionWriter()
142 int i, flatbuffers::FlatBufferBuilder* builder) { in ConvertPositiveI32AttrForOptionWriter()
148 flatbuffers::FlatBufferBuilder* builder) { in ConvertI64ArrayAttrForOptionWriter()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/tests/
H A Darray_elementwise_ops_test.cc56 XlaBuilder builder(TestName()); in XLA_TEST_F() local
64 XlaBuilder builder(TestName()); in XLA_TEST_F() local
73 XlaBuilder builder(TestName()); in XLA_TEST_F() local
81 XlaBuilder builder(TestName()); in XLA_TEST_F() local
98 XlaBuilder builder(TestName()); in XLA_TEST_F() local
106 XlaBuilder builder(TestName()); in XLA_TEST_F() local
117 XlaBuilder builder(TestName()); in XLA_TEST_F() local
145 XlaBuilder builder(TestName()); in XLA_TEST_F() local
153 XlaBuilder builder(TestName()); in XLA_TEST_F() local
167 XlaBuilder builder(TestName()); in XLA_TEST_F() local
[all …]
H A Dwhile_test.cc56 XlaBuilder builder("condition"); in XLA_TEST_F() local
65 XlaBuilder builder("body"); in XLA_TEST_F() local
73 XlaBuilder builder(TestName()); in XLA_TEST_F() local
92 XlaBuilder builder("condition"); in XLA_TEST_F() local
101 XlaBuilder builder("body"); in XLA_TEST_F() local
109 XlaBuilder builder(TestName()); in XLA_TEST_F() local
123 XlaBuilder builder("condition"); in XLA_TEST_F() local
132 XlaBuilder builder("body"); in XLA_TEST_F() local
140 XlaBuilder builder(TestName()); in XLA_TEST_F() local
155 XlaBuilder builder("condition"); in XLA_TEST_F() local
[all …]
H A Dscalar_computations_test.cc50 XlaBuilder builder(TestName()); in TestCompare() local
61 XlaBuilder builder(TestName()); in TestMinMax() local
70 XlaBuilder builder(TestName()); in XLA_TEST_F() local
77 XlaBuilder builder(TestName()); in XLA_TEST_F() local
84 XlaBuilder builder(TestName()); in XLA_TEST_F() local
91 XlaBuilder builder(TestName()); in XLA_TEST_F() local
98 XlaBuilder builder(TestName()); in XLA_TEST_F() local
105 XlaBuilder builder(TestName()); in XLA_TEST_F() local
112 XlaBuilder builder(TestName()); in XLA_TEST_F() local
119 XlaBuilder builder(TestName()); in XLA_TEST_F() local
[all …]
/aosp_15_r20/cts/tests/tests/text/src/android/text/cts/
H A DSelectionTest.java46 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testGetSelectionStart() local
64 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testGetSelectionEnd() local
82 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testSetSelection1() local
111 SpannableStringBuilder builder = new SpannableStringBuilder("hello, world"); in testSetSelection2() local
139 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testRemoveSelection() local
159 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testSelectAll() local
186 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testMoveLeft() local
214 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testMoveRight() local
246 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testMoveUp() local
286 SpannableStringBuilder builder = new SpannableStringBuilder(text); in testMoveUpAfterTyping() local
[all …]
H A DSpannableStringBuilderTest.java98 SpannableStringBuilder builder = new SpannableStringBuilder("spannable string"); in testGetSpanFlags() local
112 SpannableStringBuilder builder = new SpannableStringBuilder("spannable string"); in testNextSpanTransition() local
128 SpannableStringBuilder builder = new SpannableStringBuilder("hello, world"); in testSetSpan() local
168 SpannableStringBuilder builder = new SpannableStringBuilder("hello, world"); in testValueOf() local
174 SpannableStringBuilder builder = new SpannableStringBuilder("hello, world!"); in testReplace1() local
207 SpannableStringBuilder builder = new SpannableStringBuilder("hello, world"); in testReplace2() local
283 SpannableStringBuilder builder = new SpannableStringBuilder("hello, world"); in testSubSequence() local
298 SpannableStringBuilder builder = new SpannableStringBuilder("hello"); in testGetChars() local
332 SpannableStringBuilder builder = new SpannableStringBuilder("hello"); in testAppend1() local
345 SpannableStringBuilder builder = new SpannableStringBuilder("hello"); in testAppend2() local
[all …]
/aosp_15_r20/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DZenPolicyTest.java60 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyAllowedToDisallowed() local
85 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyAllowedToUnset() local
102 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyDisallowedToUnset() local
120 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyDisallowedToAllowed() local
138 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyUnsetToAllowed() local
156 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyMoreSevereCallSenders() local
174 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyLessSevereCallSenders() local
192 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyMoreSevereMessageSenders() local
212 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyChannels_applyUnset() local
228 ZenPolicy.Builder builder = new ZenPolicy.Builder(); in testZenPolicyApplyChannels_applyStricter() local
[all …]
/aosp_15_r20/external/flatbuffers/python/flatbuffers/reflection/
H A DField.py158 def FieldStart(builder): builder.StartObject(13) argument
159 def Start(builder): argument
161 def FieldAddName(builder, name): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UO… argument
162 def AddName(builder, name): argument
164 def FieldAddType(builder, type): builder.PrependUOffsetTRelativeSlot(1, flatbuffers.number_types.UO… argument
165 def AddType(builder, type): argument
167 def FieldAddId(builder, id): builder.PrependUint16Slot(2, id, 0) argument
168 def AddId(builder, id): argument
170 def FieldAddOffset(builder, offset): builder.PrependUint16Slot(3, offset, 0) argument
171 def AddOffset(builder, offset): argument
[all …]
/aosp_15_r20/external/flatbuffers/tests/
H A Dmonster_test_generated.py111 def InParentNamespaceStart(builder): builder.StartObject(0) argument
112 def InParentNamespaceEnd(builder): return builder.EndObject() argument
139 def Pack(self, builder): argument
167 def MonsterStart(builder): builder.StartObject(0) argument
168 def MonsterEnd(builder): return builder.EndObject() argument
195 def Pack(self, builder): argument
217 def CreateTest(builder, a, b): argument
252 def Pack(self, builder): argument
285 def TestSimpleTableWithEnumStart(builder): builder.StartObject(1) argument
286 def TestSimpleTableWithEnumAddColor(builder, color): builder.PrependUint8Slot(0, color, 2) argument
[all …]
/aosp_15_r20/external/kotlinpoet/kotlinpoet/src/commonTest/kotlin/com/squareup/kotlinpoet/
H A DDelegatedConstructorCallTest.kt24 val builder = TypeSpec.classBuilder("Test") in defaultPresentInClass() constant
36 val builder = TypeSpec.objectBuilder("Test") in defaultPresentInObject() constant
48 val builder = TypeSpec.classBuilder("Test") in defaultNotPresentInExternalClass() constant
61 val builder = TypeSpec.classBuilder("Test") in defaultNotPresentInExpectClass() constant
74 val builder = TypeSpec.objectBuilder("Test") in defaultNotPresentInExpectObject() constant
87 val builder = TypeSpec.objectBuilder("Test") in defaultNotPresentInExternalObject() constant
100 val builder = TypeSpec.classBuilder("Test") in allowedInClass() constant
113 val builder = TypeSpec.objectBuilder("Test") in allowedInObject() constant
126 val builder = TypeSpec.classBuilder("Test") in allowedInClassSecondary() constant
146 val builder = TypeSpec.classBuilder("Test") in notAllowedInExternalClass() constant
[all …]
/aosp_15_r20/external/cronet/components/cronet/android/test/javatests/src/org/chromium/net/
H A DCronetUrlRequestTest.java96 UrlRequest.Builder builder = in startAndWaitForComplete() local
237 ExperimentalUrlRequest.Builder builder = in runConnectionMigrationTest() local
285 UrlRequest.Builder builder = in testRedirectAsync() local
399 UrlRequest.Builder builder = in testRedirectWithNullLocationHeader() local
468 UrlRequest.Builder builder = in testOnRedirectReceivedAfterCancel() local
533 UrlRequest.Builder builder = in testSetHttpMethod() local
557 UrlRequest.Builder builder = in testBadMethod() local
572 UrlRequest.Builder builder = in testBadHeaderName() local
593 UrlRequest.Builder builder = in testAcceptEncodingIgnored() local
612 UrlRequest.Builder builder = in testBadHeaderValue() local
[all …]
/aosp_15_r20/external/flatbuffers/tests/MyGame/
H A DMonsterExtra.py141 def MonsterExtraStart(builder): builder.StartObject(11) argument
142 def Start(builder): argument
144 def MonsterExtraAddD0(builder, d0): builder.PrependFloat64Slot(0, d0, float('nan')) argument
145 def AddD0(builder, d0): argument
147 def MonsterExtraAddD1(builder, d1): builder.PrependFloat64Slot(1, d1, float('nan')) argument
148 def AddD1(builder, d1): argument
150 def MonsterExtraAddD2(builder, d2): builder.PrependFloat64Slot(2, d2, float('inf')) argument
151 def AddD2(builder, d2): argument
153 def MonsterExtraAddD3(builder, d3): builder.PrependFloat64Slot(3, d3, float('-inf')) argument
154 def AddD3(builder, d3): argument
[all …]

12345678910>>...613