Home
last modified time | relevance | path

Searched refs:scientific (Results 1 – 25 of 220) sorted by relevance

123456789

/external/icu/icu4c/source/i18n/
Dnumber_notation.cpp16 ScientificNotation Notation::scientific() { in scientific() function in Notation
24 union_.scientific = settings; in scientific()
35 union_.scientific = settings; in engineering()
48 union_.scientific = settings; in ScientificNotation()
71 ScientificSettings settings = fUnion.scientific; in withMinExponentDigits()
82 ScientificSettings settings = fUnion.scientific; in withExponentSignDisplay()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/
Dnumberpermutationtest.txt88 scientific/+ee/sign-always percent unit-width-narrow
102 scientific/+ee/sign-always percent unit-width-full-name
116 scientific/+ee/sign-always currency/EUR unit-width-narrow
130 scientific/+ee/sign-always currency/EUR unit-width-full-name
144 scientific/+ee/sign-always measure-unit/length-furlong unit-width-narrow
158 scientific/+ee/sign-always measure-unit/length-furlong unit-width-full-name
340 scientific/+ee/sign-always percent precision-integer
354 scientific/+ee/sign-always percent .000
368 scientific/+ee/sign-always percent .##/@@@+
382 scientific/+ee/sign-always percent @@
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/
Dnumberpermutationtest.txt88 scientific/+ee/sign-always percent unit-width-narrow
102 scientific/+ee/sign-always percent unit-width-full-name
116 scientific/+ee/sign-always currency/EUR unit-width-narrow
130 scientific/+ee/sign-always currency/EUR unit-width-full-name
144 scientific/+ee/sign-always measure-unit/length-furlong unit-width-narrow
158 scientific/+ee/sign-always measure-unit/length-furlong unit-width-full-name
340 scientific/+ee/sign-always percent precision-integer
354 scientific/+ee/sign-always percent .000
368 scientific/+ee/sign-always percent .##/@@@+
382 scientific/+ee/sign-always percent @@
[all …]
/external/icu/icu4c/source/test/testdata/
Dnumberpermutationtest.txt88 scientific/+ee/sign-always percent unit-width-narrow
102 scientific/+ee/sign-always percent unit-width-full-name
116 scientific/+ee/sign-always currency/EUR unit-width-narrow
130 scientific/+ee/sign-always currency/EUR unit-width-full-name
144 scientific/+ee/sign-always measure-unit/length-furlong unit-width-narrow
158 scientific/+ee/sign-always measure-unit/length-furlong unit-width-full-name
340 scientific/+ee/sign-always percent precision-integer
354 scientific/+ee/sign-always percent .000
368 scientific/+ee/sign-always percent .##/@@@+
382 scientific/+ee/sign-always percent @@
[all …]
/external/openscreen/third_party/abseil/src/absl/strings/internal/
Dcharconv_parse.cc124 bool scientific = in AllowExponent() local
125 (flags & chars_format::scientific) == chars_format::scientific; in AllowExponent()
126 return scientific || !fixed; in AllowExponent()
132 bool scientific = in RequireExponent() local
133 (flags & chars_format::scientific) == chars_format::scientific; in RequireExponent()
134 return scientific && !fixed; in RequireExponent()
/external/abseil-cpp/absl/strings/internal/
Dcharconv_parse.cc124 bool scientific = in AllowExponent() local
125 (flags & chars_format::scientific) == chars_format::scientific; in AllowExponent()
126 return scientific || !fixed; in AllowExponent()
132 bool scientific = in RequireExponent() local
133 (flags & chars_format::scientific) == chars_format::scientific; in RequireExponent()
134 return scientific && !fixed; in RequireExponent()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/
Dcharconv_parse.cc124 bool scientific = in AllowExponent() local
125 (flags & chars_format::scientific) == chars_format::scientific; in AllowExponent()
126 return scientific || !fixed; in AllowExponent()
132 bool scientific = in RequireExponent() local
133 (flags & chars_format::scientific) == chars_format::scientific; in RequireExponent()
134 return scientific && !fixed; in RequireExponent()
/external/libtextclassifier/abseil-cpp/absl/strings/internal/
Dcharconv_parse.cc124 bool scientific = in AllowExponent() local
125 (flags & chars_format::scientific) == chars_format::scientific; in AllowExponent()
126 return scientific || !fixed; in AllowExponent()
132 bool scientific = in RequireExponent() local
133 (flags & chars_format::scientific) == chars_format::scientific; in RequireExponent()
134 return scientific && !fixed; in RequireExponent()
/external/webrtc/third_party/abseil-cpp/absl/strings/internal/
Dcharconv_parse.cc124 bool scientific = in AllowExponent() local
125 (flags & chars_format::scientific) == chars_format::scientific; in AllowExponent()
126 return scientific || !fixed; in AllowExponent()
132 bool scientific = in RequireExponent() local
133 (flags & chars_format::scientific) == chars_format::scientific; in RequireExponent()
134 return scientific && !fixed; in RequireExponent()
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dhicpp-signed-bitwise-standard-types.h51 scientific = 1u << 7u, enumerator
53 floatfield = scientific | fixed | (scientific | fixed) | 0u,
/external/tensorflow/tensorflow/core/kernels/
Das_string_op.cc38 bool scientific; in AsStringOp() local
45 OP_REQUIRES_OK(ctx, ctx->GetAttr("scientific", &scientific)); in AsStringOp()
56 OP_REQUIRES(ctx, !(scientific || shortest), in AsStringOp()
68 OP_REQUIRES(ctx, !(scientific && shortest), in AsStringOp()
110 } else if (scientific) { in AsStringOp()
/external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
Dfmtflags.pass.cpp46 assert(std::ios_base::scientific); in main()
64 & std::ios_base::scientific in main()
79 assert(std::ios_base::floatfield == (std::ios_base::scientific in main()
/external/llvm-project/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
Dfmtflags.pass.cpp47 assert(std::ios_base::scientific); in main()
65 & std::ios_base::scientific in main()
80 assert(std::ios_base::floatfield == (std::ios_base::scientific in main()
/external/llvm-project/libcxx/test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/
Dscientific.pass.cpp27 std::ios_base& r = std::scientific(ios); in main()
29 assert(ios.flags() & std::ios::scientific); in main()
/external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/
Dscientific.pass.cpp26 std::ios_base& r = std::scientific(ios); in main()
28 assert(ios.flags() & std::ios::scientific); in main()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_AsString.pbtxt11 name: "scientific"
13 Use scientific notation for floating point numbers.
19 Use shortest representation (either scientific or standard) for
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DAsString.pbtxt34 name: "scientific"
96 name: "scientific"
159 name: "scientific"
223 name: "scientific"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DAsString.pbtxt34 name: "scientific"
96 name: "scientific"
159 name: "scientific"
/external/openscreen/third_party/abseil/src/absl/strings/
Dcharconv.h30 scientific = 1, enumerator
33 general = fixed | scientific,
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/
Dcharconv.h30 scientific = 1, enumerator
33 general = fixed | scientific,
/external/libtextclassifier/abseil-cpp/absl/strings/
Dcharconv.h30 scientific = 1, enumerator
33 general = fixed | scientific,
/external/webrtc/third_party/abseil-cpp/absl/strings/
Dcharconv.h30 scientific = 1, enumerator
33 general = fixed | scientific,
/external/abseil-cpp/absl/strings/
Dcharconv.h30 scientific = 1, enumerator
33 general = fixed | scientific,
/external/tensorflow/tensorflow/python/kernel_tests/
Das_string_op_test.py46 output = string_ops.as_string(input_, scientific=True)
76 output = string_ops.as_string(input_, scientific=True, shortest=True)
107 output = string_ops.as_string(input_, scientific=True)
182 output = string_ops.as_string(input_, scientific=True)
220 output = string_ops.as_string(input_, scientific=True, shortest=True)
/external/icu/tools/srcgen/javadoc_patches/patches/src/main/java/android/icu/text/
DNumberFormat.java.patch189 …* <strong>[icu]</strong> Returns a scientific format for the current default <code>FORMAT</code> l…
190 * @return a scientific number format
199 * <strong>[icu]</strong> Returns a scientific format for the specified locale.
200 * @return a scientific number format
209 * <strong>[icu]</strong> Returns a scientific format for the specified locale.
210 * @return a scientific number format

123456789