Home
last modified time | relevance | path

Searched refs:setFloat (Results 1 – 21 of 21) sorted by relevance

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DFloatArrayListTest.java251 assertEquals(1F, list.setFloat(0, 0), 0.0f); in testSetFloat()
254 assertEquals(3F, list.setFloat(1, 0), 0.0f); in testSetFloat()
258 list.setFloat(-1, 0); in testSetFloat()
265 list.setFloat(2, 0); in testSetFloat()
537 list.setFloat(0, 0); in assertImmutable()
/third_party/flutter/skia/bench/
DMatrix44Bench.cpp249 fM1.setFloat(x,y, rand.nextF()); in SetConcatMatrix44Bench()
250 fM2.setFloat(x,y, rand.nextF()); in SetConcatMatrix44Bench()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DFloatArrayList.java169 return setFloat(index, element); in set()
173 public float setFloat(int index, float element) { in setFloat() method in FloatArrayList
DInternal.java680 float setFloat(int index, float element);
/third_party/protobuf/js/experimental/runtime/kernel/
Dkernel_test.js1040 accessor.setFloat(1, 1.6);
1048 accessor.setFloat(1, 0);
1063 expect(() => Kernel.createEmpty().setFloat(-1, 1))
1067 accessor.setFloat(-1, 1);
1075 () => Kernel.createEmpty().setFloat(
1080 accessor.setFloat(1, /** @type {number} */ (/** @type {*} */ (null)));
1087 expect(() => Kernel.createEmpty().setFloat(1, Number.MAX_VALUE))
1091 accessor.setFloat(1, Number.MAX_VALUE);
Dkernel.js1920 setFloat(fieldNumber, value) { method in Kernel
/third_party/protobuf/objectivec/
DGPBDictionary.h604 - (void)setFloat:(float)value forKey:(uint32_t)key;
1525 - (void)setFloat:(float)value forKey:(int32_t)key;
2446 - (void)setFloat:(float)value forKey:(uint64_t)key;
3367 - (void)setFloat:(float)value forKey:(int64_t)key;
4288 - (void)setFloat:(float)value forKey:(BOOL)key;
5209 - (void)setFloat:(float)value forKey:(NSString *)key;
DGPBDictionary.m2515 - (void)setFloat:(float)value forKey:(uint32_t)key {
4265 - (void)setFloat:(float)value forKey:(int32_t)key {
6015 - (void)setFloat:(float)value forKey:(uint64_t)key {
7765 - (void)setFloat:(float)value forKey:(int64_t)key {
9559 - (void)setFloat:(float)value forKey:(NSString *)key {
11284 - (void)setFloat:(float)value forKey:(BOOL)key {
/third_party/protobuf/js/experimental/runtime/kernel/conformance/
Dtest_all_types_proto2.js100 msg.accessor_.setFloat(11, value);
Dtest_all_types_proto3.js100 msg.accessor_.setFloat(11, value);
/third_party/protobuf/js/experimental/runtime/testing/binary/
Dtest_message.js687 setFloat(fieldNumber, value) { method in TestMessage
688 this.kernel_.setFloat(fieldNumber, value);
/third_party/protobuf/js/experimental/benchmarks/code_size/kernel/
Dall_types.js86 message.setFloat(1, 1.0);
/third_party/flutter/skia/include/core/
DSkMatrix44.h285 inline void setFloat(int row, int col, float value) { in setFloat() function
/third_party/protobuf/objectivec/Tests/
DGPBDictionaryTests+Bool.m1603 [dict setFloat:500.f forKey:YES];
1770 [dict setFloat:500.f forKey:YES];
1844 [dict setFloat:501.f forKey:YES];
1853 [dict setFloat:500.f forKey:NO];
DGPBMessageTests+Serialization.m1500 [msg.mapInt32Float setFloat:1020.f forKey:220];
1501 [msg.mapInt32Float setFloat:121.f forKey:2021];
DGPBDictionaryTests+Int32.m1904 [dict setFloat:500.f forKey:11];
2075 [dict setFloat:500.f forKey:11];
2186 [dict setFloat:503.f forKey:11];
2201 [dict setFloat:501.f forKey:14];
DGPBDictionaryTests+String.m1904 [dict setFloat:500.f forKey:@"foo"];
2075 [dict setFloat:500.f forKey:@"foo"];
2186 [dict setFloat:503.f forKey:@"foo"];
2201 [dict setFloat:501.f forKey:@"mumble"];
DGPBDictionaryTests+UInt64.m1904 [dict setFloat:500.f forKey:31ULL];
2075 [dict setFloat:500.f forKey:31ULL];
2186 [dict setFloat:503.f forKey:31ULL];
2201 [dict setFloat:501.f forKey:34ULL];
DGPBDictionaryTests+Int64.m1904 [dict setFloat:500.f forKey:21LL];
2075 [dict setFloat:500.f forKey:21LL];
2186 [dict setFloat:503.f forKey:21LL];
2201 [dict setFloat:501.f forKey:24LL];
DGPBDictionaryTests+UInt32.m1904 [dict setFloat:500.f forKey:1U];
2075 [dict setFloat:500.f forKey:1U];
2186 [dict setFloat:503.f forKey:1U];
2201 [dict setFloat:501.f forKey:4U];
DGPBTestUtilities.m1102 [message.mapInt32Float setFloat:(i + 1) forKey:110 + i * 100];