Home
last modified time | relevance | path

Searched refs:with (Results 1 - 25 of 2515) sorted by relevance

12345678910>>...101

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DNumberFormatterApiTest.java83 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 DNumberRangeFormatterTest.java55 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 DNumberFormatterApiTest.java84 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 DNumberRangeFormatterTest.java53 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 Dnumbertest_api.cpp144 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 Dnumbertest_range.cpp67 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 DTrieTest.java21 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 Dtest_remote.rs96 #[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 Dlog_tls_dtors.rs33 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 DMakefile12 ${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
/kernel/linux/linux-5.10/arch/arc/include/asm/
H A Dcmpxchg.h82 * xchg (reg with memory) based on "Native atomic" EX insn
106 #define _xchg(ptr, with) ((typeof(*(ptr)))__xchg((unsigned long)(with), (ptr), \
126 #define xchg(ptr, with) \
132 old_val = _xchg(ptr, with); \
139 #define xchg(ptr, with) _xchg(ptr, with)
/third_party/skia/bin/
H A Dfetch-sk27 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:
/kernel/linux/linux-5.10/arch/openrisc/include/asm/
H A Dcmpxchg.h150 static inline unsigned long __xchg(volatile void *ptr, unsigned long with, in __xchg() argument
156 return xchg_small(ptr, with, size); in __xchg()
158 return xchg_u32(ptr, with); in __xchg()
164 #define xchg(ptr, with) \
167 (unsigned long)(with), \
/kernel/linux/linux-6.6/arch/openrisc/include/asm/
H A Dcmpxchg.h151 __arch_xchg(volatile void *ptr, unsigned long with, int size) in __arch_xchg() argument
156 return xchg_small(ptr, with, size); in __arch_xchg()
158 return xchg_u32(ptr, with); in __arch_xchg()
164 #define arch_xchg(ptr, with) \
167 (unsigned long)(with), \
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/x86_64/
H A Dnx_huge_pages_test.sh34 # Test with reboot permissions
36 echo Running test with CAP_SYS_BOOT enabled
40 echo setcap failed, skipping nx_huge_pages_test with CAP_SYS_BOOT enabled
45 echo Running test with CAP_SYS_BOOT disabled
48 echo Running as root, skipping nx_huge_pages_test with CAP_SYS_BOOT disabled
/third_party/gn/src/gn/
H A Dfunction_toolchain.cc52 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 DRunTest.bat3 @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/rust/crates/proc-macro-error/src/
H A Ddummy.rs69 //! 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 Dfallback.rs11 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/python/Doc/
H A Dmake.bat15 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/ffmpeg/tests/fate/
H A Dmov.mak35 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 Dcheckbashisms.pl21 # 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...]
/kernel/linux/linux-6.6/arch/loongarch/
H A DMakefile53 # GCC may have -mexplicit-relocs off by default if it was built with an old
65 # Also, -mdirect-extern-access is useful in case of building with explicit
75 KBUILD_AFLAGS_KERNEL += -Wa,-mla-global-with-pcrel
76 KBUILD_CFLAGS_KERNEL += -Wa,-mla-global-with-pcrel
77 KBUILD_AFLAGS_MODULE += -Wa,-mla-global-with-abs
78 KBUILD_CFLAGS_MODULE += -fplt -Wa,-mla-global-with-abs,-mla-local-with-abs
/third_party/rust/crates/clang-sys/src/
H A Dlink.rs128 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()
/kernel/linux/linux-5.10/Documentation/trace/
H A Dfunction-graph-fold.vim4 " -S option to load from the command-line together with a trace. You can then
7 " as would normally appear on the line with the closing brace. Folded
11 " Note that this will almost certainly only work well with a

Completed in 12 milliseconds

12345678910>>...101