Home
last modified time | relevance | path

Searched refs:terminated (Results 1 - 25 of 33) sorted by relevance

12

/third_party/node/deps/v8/tools/testrunner/local/
H A Dpool.py127 self.terminated = False
164 if self.terminated:
231 assert not self.terminated
257 if self.terminated:
259 self.terminated = True
/third_party/rust/crates/nom/tests/
H A Dmultiline.rs4 sequence::terminated,
17 terminated(alphanumeric, end_of_line)(input) in read_line()
H A Dini.rs8 sequence::{delimited, pair, separated_pair, terminated, tuple},
31 map(many0(terminated(key_value, opt(multispace))), |vec| { in keys_and_values()
37 let (i, category) = terminated(category, opt(multispace))(i)?; in category_and_keys()
48 many0(terminated(key_value, opt(multispace))), in categories()
H A Dcustom_errors.rs9 use nom::sequence::terminated;
37 //terminated!(input, test1, fix_error!(CustomError, digit)) in test2()
38 terminated(test1, digit)(input) in test2()
H A Dini_str.rs6 sequence::{delimited, pair, terminated, tuple},
25 terminated( in category()
/third_party/rust/crates/nom/examples/
H A Diterator.rs7 use nom::sequence::{separated_pair, terminated};
67 terminated( in main()
H A Djson.rs11 sequence::{delimited, preceded, separated_pair, terminated},
85 /// before the string (using `preceded`) and after the string (using `terminated`).
99 preceded(char('\"'), cut(terminated(parse_str, char('\"')))), in string()
114 cut(terminated( in array()
139 cut(terminated( in hash()
H A Ds_expression.rs14 sequence::{delimited, preceded, terminated, tuple},
195 // variables to our language, we say that if must be terminated by at least in parse_if()
197 terminated(tag("if"), multispace1), in parse_if()
H A Djson_iterator.rs11 sequence::{preceded, separated_pair, terminated},
231 preceded(char('\"'), cut(terminated(parse_str, char('\"')))), in parse_str()
244 cut(terminated( in boolean()
261 cut(terminated( in hash()
/third_party/node/test/common/
H A Dchild_process.js73 failures.push(`- process terminated with status ${child.status}, expected ${status}`);
76 failures.push(`- process terminated with signal ${child.signal}, expected ${signal}`);
/third_party/rust/crates/nom/benchmarks/benches/
H A Dini_str.rs11 sequence::{delimited, pair, terminated, tuple},
26 terminated( in category()
H A Dini.rs13 sequence::{delimited, pair, separated_pair, terminated, tuple},
40 many0(terminated(key_value, opt(multispace))), in categories()
/third_party/rust/crates/nom/fuzz/fuzz_targets/
H A Dfuzz_arithmetic.rs14 sequence::{delimited, pair, terminated},
52 terminated(tag("("), incr), in parens()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUnicodeRegex.java400 boolean terminated = trimline.endsWith(";");
401 if (terminated) {
420 // we are terminated if i is not at the end, or the line ends with a ;
421 if (terminated) {
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUnicodeRegex.java395 boolean terminated = trimline.endsWith(";");
396 if (terminated) {
415 // we are terminated if i is not at the end, or the line ends with a ;
416 if (terminated) {
/third_party/libuv/test/
H A Drunner-unix.c135 p->terminated = 0; in process_start()
211 if (p->terminated) continue; in dowait()
217 p->terminated = 1; in dowait()
234 * msec, or never if timeout == -1. Return 0 if all processes are terminated,
H A Drunner-unix.h33 int terminated; member
/third_party/zlib/contrib/pascal/
H A Dzlibpas.pas58 name: PChar; (* pointer to zero-terminated file name or Z_NULL *)
60 comment: PChar; (* pointer to zero-terminated comment or Z_NULL *)
/third_party/libevdev/test/
H A Dtest-libevdev-events.c663 unsigned long terminated[NLONGS(num_slots)]; in START_TEST() local
679 /* Test the sync process to make sure we get touches terminated when in START_TEST()
684 * 3.1) change the tracking ID on some (indicating terminated and in START_TEST()
743 memset(terminated, 0, sizeof(terminated)); in START_TEST()
763 if (!bit_is_set(terminated, slot)) { in START_TEST()
765 set_bit(terminated, slot); in START_TEST()
771 ck_assert(!bit_is_set(terminated, slot)); in START_TEST()
773 set_bit(terminated, slot); in START_TEST()
794 ck_assert(bit_is_set(terminated, in START_TEST()
[all...]
/third_party/rust/crates/rustix/src/backend/linux_raw/param/
H A Dmustang_auxv.rs47 // assume it's a valid pointer to a NUL-terminated string.
/third_party/rust/crates/rust-cexpr/src/
H A Dliteral.rs48 use nom::sequence::{delimited, pair, preceded, terminated, tuple};
210 terminated(opt(c_width_prefix), char('\'')), in c_char()
257 terminated( in c_int()
301 terminated( in c_float()
309 terminated( in c_float()
317 terminated( in c_float()
326 terminated( in c_float()
335 terminated(recognize(many1(complete(decimal))), float_width), in c_float()
/third_party/ffmpeg/ffbuild/
H A Dcommon.mak35 # NASM requires -I path terminated with /
/third_party/rust/crates/nom/src/sequence/
H A Dmod.rs87 /// use nom::sequence::terminated;
90 /// let mut parser = terminated(tag("abc"), tag("efg"));
97 pub fn terminated<I, O1, O2, E: ParseError<I>, F, G>( in terminated() functions
H A Dtests.rs186 terminated(tag("abcd"), tag("efgh"))(i) in terminated_test()
/third_party/mbedtls/programs/ssl/
H A Dssl_server2.c3733 int terminated = 0; in main() local
3776 terminated = 1; in main()
3812 terminated = 1; in main()
3818 if (terminated) { in main()

Completed in 15 milliseconds

12