Home
last modified time | relevance | path

Searched refs:setDouble (Results 1 – 25 of 72) sorted by relevance

123

/third_party/flutter/skia/bench/
DMatrix44Bench.cpp112 fM0.setDouble(0, 0, -1.1); in InvertMatrix44Bench()
113 fM0.setDouble(0, 1, 2.1); in InvertMatrix44Bench()
114 fM0.setDouble(0, 2, -3.1); in InvertMatrix44Bench()
115 fM0.setDouble(0, 3, 4.1); in InvertMatrix44Bench()
116 fM0.setDouble(1, 0, 5.1); in InvertMatrix44Bench()
117 fM0.setDouble(1, 1, -6.1); in InvertMatrix44Bench()
118 fM0.setDouble(1, 2, 7.1); in InvertMatrix44Bench()
119 fM0.setDouble(1, 3, 8.1); in InvertMatrix44Bench()
120 fM0.setDouble(2, 0, -9.1); in InvertMatrix44Bench()
121 fM0.setDouble(2, 1, 10.1); in InvertMatrix44Bench()
[all …]
/third_party/flutter/skia/tests/
DMatrix44Test.cpp86 placeholderMatrix->setDouble(row, col, row * col); in test_constructor()
401 perspective.setDouble(3, 2, 1.0); in test_invert()
412 affineAndPerspective.setDouble(3, 2, 1.0); in test_invert()
425 tinyScale.setDouble(0, 0, 1e-39); in test_invert()
431 tinyScaleTranslate.setDouble(0, 0, 1e-38); in test_invert()
433 tinyScaleTranslate.setDouble(0, 3, 10); in test_invert()
441 tinyScalePerspective.setDouble(0, 0, 1e-39); in test_invert()
442 tinyScalePerspective.setDouble(3, 2, -1); in test_invert()
456 a.setDouble(row, col, i); in test_transpose()
457 b.setDouble(col, row, i++); in test_transpose()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumparse_parsednumber.cpp97 output.setDouble(uprv_getNaN()); in populateFormattable()
102 output.setDouble(-INFINITY); in populateFormattable()
105 output.setDouble(INFINITY); in populateFormattable()
111 output.setDouble(-0.0); in populateFormattable()
Dnfsubs.cpp765 result.setDouble(tempResult); in doParse()
959 result.setDouble(tempResult); in doParse()
1193 resVal.setDouble(result); in doParse()
1324 result.setDouble((double)n/(double)d); in doParse()
/third_party/node/deps/icu-small/source/i18n/
Dnumparse_parsednumber.cpp97 output.setDouble(uprv_getNaN()); in populateFormattable()
102 output.setDouble(-INFINITY); in populateFormattable()
105 output.setDouble(INFINITY); in populateFormattable()
111 output.setDouble(-0.0); in populateFormattable()
Dnfsubs.cpp765 result.setDouble(tempResult); in doParse()
959 result.setDouble(tempResult); in doParse()
1193 resVal.setDouble(result); in doParse()
1324 result.setDouble((double)n/(double)d); in doParse()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumparse_parsednumber.cpp93 output.setDouble(uprv_getNaN()); in populateFormattable()
98 output.setDouble(-INFINITY); in populateFormattable()
101 output.setDouble(INFINITY); in populateFormattable()
107 output.setDouble(-0.0); in populateFormattable()
Dnfsubs.cpp765 result.setDouble(tempResult); in doParse()
959 result.setDouble(tempResult); in doParse()
1193 resVal.setDouble(result); in doParse()
1324 result.setDouble((double)n/(double)d); in doParse()
/third_party/icu/icu4c/source/i18n/
Dnumparse_parsednumber.cpp97 output.setDouble(uprv_getNaN()); in populateFormattable()
102 output.setDouble(-INFINITY); in populateFormattable()
105 output.setDouble(INFINITY); in populateFormattable()
111 output.setDouble(-0.0); in populateFormattable()
Dnfsubs.cpp765 result.setDouble(tempResult); in doParse()
959 result.setDouble(tempResult); in doParse()
1193 resVal.setDouble(result); in doParse()
1324 result.setDouble((double)n/(double)d); in doParse()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DDoubleArrayListTest.java251 assertEquals(1D, list.setDouble(0, 0), 0.0); in testSetDouble()
254 assertEquals(3D, list.setDouble(1, 0), 0.0); in testSetDouble()
258 list.setDouble(-1, 0); in testSetDouble()
265 list.setDouble(2, 0); in testSetDouble()
537 list.setDouble(0, 0); in assertImmutable()
/third_party/icu/icu4c/source/test/intltest/
Dtsnmfmt.cpp300 number[i].setDouble(aNumber); in tryIt()
304 number[i].setDouble(1234.5); // "parse failed" value in tryIt()
312 number[i].setDouble(number[i].getLong()); in tryIt()
314 number[i].setDouble((double)number[i].getInt64()); in tryIt()
Dtufmtts.cpp226 formattable.setDouble(2); in testAPI()
230 formattable.setDouble(3); in testAPI()
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2JQLModule.java137 jql(jqlid).setDouble(placeholder, val); in psetDouble()
141 public void setDouble(Integer jqlid, String placeholder, Double val) { in setDouble() method in EJDB2JQLModule
142 jql(jqlid).setDouble(placeholder, val); in setDouble()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DDoubleArrayList.java170 return setDouble(index, element); in set()
174 public double setDouble(int index, double element) { in setDouble() method in DoubleArrayList
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/
DJQL.java228 public JQL setDouble(int pos, double val) throws EJDB2Exception { in setDouble() method in JQL
233 public JQL setDouble(String placeholder, double val) throws EJDB2Exception { in setDouble() method in JQL
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/
DJQL.java240 public JQL setDouble(int pos, double val) throws EJDB2Exception { in setDouble() method in JQL
245 public JQL setDouble(String placeholder, double val) throws EJDB2Exception { in setDouble() method in JQL
/third_party/protobuf/js/experimental/benchmarks/code_size/kernel/
Dpopular_types.js44 message.setDouble(1, 1.0);
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/
DSwiftEjdb2FlutterPlugin.swift322 try q.setDouble(v.int32Value, asDouble(val)) in prepareQuery()
324 try q.setDouble(plh as! String, asDouble(val)) in prepareQuery()
/third_party/protobuf/objectivec/
DGPBDictionary.h699 - (void)setDouble:(double)value forKey:(uint32_t)key;
1620 - (void)setDouble:(double)value forKey:(int32_t)key;
2541 - (void)setDouble:(double)value forKey:(uint64_t)key;
3462 - (void)setDouble:(double)value forKey:(int64_t)key;
4383 - (void)setDouble:(double)value forKey:(BOOL)key;
5304 - (void)setDouble:(double)value forKey:(NSString *)key;
/third_party/node/deps/icu-small/source/i18n/unicode/
Dfmtable.h501 void setDouble(double d);
/third_party/flutter/skia/third_party/externals/icu/source/i18n/unicode/
Dfmtable.h499 void setDouble(double d);
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dfmtable.h501 void setDouble(double d);
/third_party/icu/icu4c/source/i18n/unicode/
Dfmtable.h501 void setDouble(double d);
/third_party/protobuf/js/experimental/runtime/kernel/
Dkernel_test.js2030 accessor.setDouble(1, 2);
2040 accessor.setDouble(1, 0);
2056 expect(() => Kernel.createEmpty().setDouble(-1, 1))
2060 accessor.setDouble(-1, 1);
2068 () => Kernel.createEmpty().setDouble(
2073 accessor.setDouble(1, /** @type {number} */ (/** @type {*} */ (null)));

123