/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
H A D | NumberFormatterApiTest.java | 83 NumberFormatter.with(), in notationSimple() 99 NumberFormatter.with().notation(Notation.simple()), in notationSimple() 112 "Basic with Negative Sign", in notationSimple() 115 NumberFormatter.with(), in notationSimple() 127 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 143 NumberFormatter.with().notation(Notation.engineering()), in notationScientific() 159 NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)), in notationScientific() 175 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)), in notationScientific() 191 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 200 NumberFormatter.with() in notationScientific() [all...] |
H A D | NumberRangeFormatterTest.java | 55 LocalizedNumberRangeFormatter lnrf2 = NumberRangeFormatter.with().locale(ULocale.US); in testSanity() 57 LocalizedNumberRangeFormatter lnrf4 = NumberRangeFormatter.with().locale(Locale.US); in testSanity() 70 NumberRangeFormatter.with(), in testBasic() 84 "Basic with units", in testBasic() 85 NumberRangeFormatter.with() in testBasic() 86 .numberFormatterBoth(NumberFormatter.with().unit(MeasureUnit.METER)), in testBasic() 100 "Basic with different units", in testBasic() 101 NumberRangeFormatter.with() in testBasic() 102 .numberFormatterFirst(NumberFormatter.with().unit(MeasureUnit.METER)) in testBasic() 103 .numberFormatterSecond(NumberFormatter.with() in testBasic() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
H A D | NumberFormatterApiTest.java | 84 NumberFormatter.with(), in notationSimple() 100 NumberFormatter.with().notation(Notation.simple()), in notationSimple() 113 "Basic with Negative Sign", in notationSimple() 116 NumberFormatter.with(), in notationSimple() 128 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 144 NumberFormatter.with().notation(Notation.engineering()), in notationScientific() 160 NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)), in notationScientific() 176 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)), in notationScientific() 192 NumberFormatter.with().notation(Notation.scientific()), in notationScientific() 201 NumberFormatter.with() in notationScientific() [all...] |
H A D | NumberRangeFormatterTest.java | 53 LocalizedNumberRangeFormatter lnrf2 = NumberRangeFormatter.with().locale(ULocale.US); in testSanity() 55 LocalizedNumberRangeFormatter lnrf4 = NumberRangeFormatter.with().locale(Locale.US); in testSanity() 68 NumberRangeFormatter.with(), in testBasic() 82 "Basic with units", in testBasic() 83 NumberRangeFormatter.with() in testBasic() 84 .numberFormatterBoth(NumberFormatter.with().unit(MeasureUnit.METER)), in testBasic() 98 "Basic with different units", in testBasic() 99 NumberRangeFormatter.with() in testBasic() 100 .numberFormatterFirst(NumberFormatter.with().unit(MeasureUnit.METER)) in testBasic() 101 .numberFormatterSecond(NumberFormatter.with() in testBasic() [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numbertest_api.cpp | 144 NumberFormatter::with(), in notationSimple() 160 NumberFormatter::with().notation(Notation::simple()), in notationSimple() 173 u"Basic with Negative Sign", in notationSimple() 176 NumberFormatter::with(), in notationSimple() 188 NumberFormatter::with().notation(Notation::scientific()), in notationScientific() 204 NumberFormatter::with().notation(Notation::engineering()), in notationScientific() 220 NumberFormatter::with().notation( in notationScientific() 237 NumberFormatter::with().notation(Notation::scientific().withMinExponentDigits(2)), in notationScientific() 253 NumberFormatter::with().notation(Notation::scientific()), in notationScientific() 262 NumberFormatter::with() in notationScientific() [all...] |
H A D | numbertest_range.cpp | 67 LocalizedNumberRangeFormatter lnrf2 = NumberRangeFormatter::with().locale("en-us"); in testSanity() 76 NumberRangeFormatter::with(), in testBasic() 90 u"Basic with units", in testBasic() 91 NumberRangeFormatter::with() in testBasic() 92 .numberFormatterBoth(NumberFormatter::with().unit(METER)), in testBasic() 106 u"Basic with different units", in testBasic() 107 NumberRangeFormatter::with() in testBasic() 108 .numberFormatterFirst(NumberFormatter::with().unit(METER)) in testBasic() 109 .numberFormatterSecond(NumberFormatter::with().unit(KILOMETER)), in testBasic() 124 NumberRangeFormatter::with() in testBasic() [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
H A D | TrieTest.java | 21 trie.root().with("answer", t -> t.putPrefixAndValue(42)); in testSimple() 28 trie.root().with("foo", foo -> foo.with("bar", fooBar -> fooBar.putPrefixAndValue(42))); in testSubSpan() 35 trie.root().with("foo", foo -> { in testHierarchyAndOrdering() 36 foo.with("two", sub -> sub.putPrefixAndValue(3)); in testHierarchyAndOrdering() 37 foo.with("one", sub -> sub.putPrefixAndValue(2)); in testHierarchyAndOrdering() 38 foo.with("*", sub -> sub.putPrefixAndValue(1)); in testHierarchyAndOrdering() 40 trie.root().with("bar", bar -> bar.with("baz", baz -> baz.with("quu in testHierarchyAndOrdering() [all...] |
/third_party/rust/crates/serde/test_suite/tests/ |
H A D | test_remote.rs | 96 #[serde(with = "UnitDef")] 99 #[serde(with = "PrimitivePrivDef")] 102 #[serde(with = "PrimitivePubDef")] 105 #[serde(with = "NewtypePrivDef")] 108 #[serde(with = "NewtypePubDef")] 111 #[serde(with = "TuplePrivDef")] 114 #[serde(with = "TuplePubDef")] 117 #[serde(with = "StructPrivDef")] 120 #[serde(with = "StructPubDef")] 123 #[serde(with [all...] |
/third_party/rust/crates/env_logger/tests/ |
H A D | log_tls_dtors.rs | 33 DROP_ME_0.with(|_| {}); in run() 34 DROP_ME_1.with(|_| {}); in run() 35 DROP_ME_2.with(|_| {}); in run() 36 DROP_ME_3.with(|_| {}); in run() 37 DROP_ME_4.with(|_| {}); in run() 38 DROP_ME_5.with(|_| {}); in run() 39 DROP_ME_6.with(|_| {}); in run() 40 DROP_ME_7.with(|_| {}); in run() 41 DROP_ME_8.with(|_| {}); in run() 42 DROP_ME_9.with(| in run() [all...] |
/third_party/PyYAML/ |
H A D | Makefile | 12 ${PYTHON} setup.py --with-libyaml build ${PARAMETERS} 18 ${PYTHON} setup.py --with-libyaml build -f ${PARAMETERS} 24 ${PYTHON} setup.py --with-libyaml install ${PARAMETERS} 37 @# ${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar 38 ${PYTHON} setup.py --with-libyaml sdist --formats=gztar 41 ${PYTHON} setup.py --with-libyaml bdist_wininst 44 ${PYTHON} setup.py --with-libyaml clean -a
|
/third_party/skia/bin/ |
H A D | fetch-sk | 27 with open(sk_path, 'rb') as f: 43 with open('DEPS', 'rb') as f: 64 with open(sk_version_path, 'r', encoding='utf8') as f: 83 with open(skzip, 'wb') as f: 88 with zipfile.ZipFile(skzip, 'r') as f: 102 with open(sk_version_path, 'w', encoding='utf8') as f:
|
/third_party/gn/src/gn/ |
H A D | function_toolchain.cc | 52 When you have a simple build with only one toolchain, the build config file 61 with the build arguments overridden as specified in the toolchain_args. 67 1. Loads the file with the toolchain definition in it (as determined by the 122 this toolchain are compatible with the compiler flags, etc. that may be 318 command [string with substitutions] 326 The prefix with which to launch the command (e.g. the path to a Goma or 332 default_output_dir [string with substitutions] 341 GN doesn't do anything with this string other than pass it along, 342 potentially with target-specific overrides. It is the tool's job to use 354 GN doesn't actually do anything with thi [all...] |
/third_party/pcre2/pcre2/ |
H A D | RunTest.bat | 3 @rem MS Windows batch file to run pcre2test on testfiles with the correct
291 echo ** available on the system, rather than a bug or problem with PCRE2.
304 call :runsub 1 testout "Main non-UTF, non-UCP functionality (Compatible with Perl >= 5.10)" -q
305 if %jit% EQU 1 call :runsub 1 testoutjit "Test with JIT Override" -q -jit
312 if %jit% EQU 1 call :runsub 2 testoutjit "Test with JIT Override" -q -jit
317 if %jit% EQU 1 call :runsub 3 testoutjit "Test with JIT Override" -q -jit
325 call :runsub 4 testout "UTF-%bits% and Unicode property support - (Compatible with Perl >= 5.10)" -q
326 if %jit% EQU 1 call :runsub 4 testoutjit "Test with JIT Override" -q -jit
335 if %jit% EQU 1 call :runsub 5 testoutjit "Test with JIT Override" -q -jit
347 call :runsub 7 testout "DFA matching with UT [all...] |
/third_party/python/Doc/ |
H A D | make.bat | 15 echo Installing sphinx with %PYTHON%
24 echo Installing python-docs-theme with %PYTHON%
32 echo Installing blurb with %PYTHON%
33 rem Should have been installed with Sphinx earlier
43 echo Installing sphinx-lint with %PYTHON%
44 rem Should have been installed with Sphinx earlier
106 echo.Call %this% with the desired Sphinx builder as the first argument, e.g.
138 echo.Merging Misc/NEWS with %BLURB%
156 rem hhc.exe seems to always exit with code 1, reset to 0 for less than 2
171 echo.Can't specify filenames to build with htmlvie [all...] |
/third_party/rust/crates/proc-macro-error/src/ |
H A D | dummy.rs | 69 //! omit `impl MyTrait for #name` and fill functions bodies with `unimplemented!()`. 131 DUMMY_IMPL.with(|old_dummy| old_dummy.replace(Some(dummy))) in set_dummy() 138 DUMMY_IMPL.with(|old_dummy| { in append_dummy() 149 DUMMY_IMPL.with(|old_dummy| old_dummy.replace(None))
|
/third_party/rust/crates/proc-macro-error/src/imp/ |
H A D | fallback.rs | 11 ERR_STORAGE.with(|storage| { in abort_if_dirty() 19 ERR_STORAGE.with(|storage| storage.replace(Vec::new())) 24 ERR_STORAGE.with(|storage| storage.borrow_mut().push(diag));
|
/third_party/ffmpeg/tests/fate/ |
H A D | mov.mak | 35 fate-mov-mp4-with-mov-in24-ver \ 50 # Edit list with encryption 53 # Fragmented encryption with senc boxes in movie fragments. 67 # Makes sure that we handle timestamps of packets in case of multiple edit lists with one of them ending on a B-frame correctly. 89 # Makes sure that we pick the right frames according to edit list when there is no keyframe with PTS < edit list start. 94 # Makes sure that the stream start_time is not negative when the first packet is a DISCARD packet with negative timestamp. 98 # with negative timestamps (skip_samples is not set for Vorbis, so ffmpeg computes start_time as negative if not specified by demuxer). 101 # Makes sure that expected frames are generated for mov_neg_first_pts_discard.mov with -vsync cfr 104 # Makes sure that no frame is dropped/duplicated with fps filter due to start_time / duration miscalculations. 117 fate-mov-gpmf-remux: CMD = md5 -i $(TARGET_SAMPLES)/mov/fake-gp-media-with [all...] |
/third_party/ltp/scripts/ |
H A D | checkbashisms.pl | 21 # along with this program. If not, see <https://www.gnu.org/licenses/>. 45 This program comes with ABSOLUTELY NO WARRANTY. 294 # Remove quoted strings delimited with $otherquote 397 $explanation = "sourced script with arguments"; 434 # spaces if the delimiter starts with a -, as that changes 443 # As above, with the exception that we don't remove the string 650 q<read with option other than -r>, 658 qr'(?:^|\s+)(\[|test)\s+-a' => q<test with unary -a (should be -e)>, 704 # $LEADIN . qr'jobs\s+-[^lp]\s' => q<'jobs' with option other than -l or -p>, 707 q<'command' with optio [all...] |
/third_party/rust/crates/clang-sys/src/ |
H A D | link.rs | 128 LIBRARY.with(|l| l.borrow().is_some()) in is_loaded() 132 LIBRARY.with(|l| { in with_library() 205 /// module with the same name as the function (e.g., `clang_createIndex::is_loaded()` for 215 LIBRARY.with(|l| *l.borrow_mut() = Some(library)); in load() 237 LIBRARY.with(|l| l.borrow_mut().clone()) in get_library() 244 LIBRARY.with(|l| mem::replace(&mut *l.borrow_mut(), library)) in set_library()
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 5 # this file except in compliance with the License. You can obtain a copy 52 shared library or module to stay compatible with previous versions on 74 Not only create a new instance, but immediately load it with data from the 195 If an ordinals file has been loaded, it gets rewritten with the data from 198 If there are more arguments, they are used as I<%options> with the 218 If there are more arguments, they are used as I<%options> with the 284 croak __PACKAGE__."->items called with invalid filter"; 291 croak __PACKAGE__."->items called with invalid filter"; 303 # - For platforms, both MUST hold the same ones, but with opposite values 337 # Check that both items run with th [all...] |
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 5 # this file except in compliance with the License. You can obtain a copy 52 shared library or module to stay compatible with previous versions on 74 Not only create a new instance, but immediately load it with data from the 195 If an ordinals file has been loaded, it gets rewritten with the data from 198 If there are more arguments, they are used as I<%options> with the 218 If there are more arguments, they are used as I<%options> with the 284 croak __PACKAGE__."->items called with invalid filter"; 291 croak __PACKAGE__."->items called with invalid filter"; 303 # - For platforms, both MUST hold the same ones, but with opposite values 337 # Check that both items run with th [all...] |
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/ |
H A D | do-plot | 53 with="with linespoints" 91 plot_cmd="plot '$FILE' using 1:2 title \"${column[$count]}\" $with" 95 plot_cmd=$plot_cmd",'$FILE' using 1:$count title \"${column[$count]}\" $with"
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/ |
H A D | do-plot | 53 with="with linespoints" 91 plot_cmd="plot '$FILE' using 1:2 title \"${column[$count]}\" $with" 95 plot_cmd=$plot_cmd",'$FILE' using 1:$count title \"${column[$count]}\" $with"
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
H A D | do-plot | 53 with="with linespoints" 91 plot_cmd="plot '$FILE' using 1:2 title \"${column[$count]}\" $with" 95 plot_cmd=$plot_cmd",'$FILE' using 1:$count title \"${column[$count]}\" $with"
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/ |
H A D | do-plot | 53 with="with linespoints" 91 plot_cmd="plot '$FILE' using 1:2 title \"${column[$count]}\" $with" 95 plot_cmd=$plot_cmd",'$FILE' using 1:$count title \"${column[$count]}\" $with"
|