/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | pool.py | 127 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 D | multiline.rs | 4 sequence::terminated, 17 terminated(alphanumeric, end_of_line)(input) in read_line()
|
H A D | ini.rs | 8 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 D | custom_errors.rs | 9 use nom::sequence::terminated; 37 //terminated!(input, test1, fix_error!(CustomError, digit)) in test2() 38 terminated(test1, digit)(input) in test2()
|
H A D | ini_str.rs | 6 sequence::{delimited, pair, terminated, tuple}, 25 terminated( in category()
|
/third_party/rust/crates/nom/examples/ |
H A D | iterator.rs | 7 use nom::sequence::{separated_pair, terminated}; 67 terminated( in main()
|
H A D | json.rs | 11 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 D | s_expression.rs | 14 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 D | json_iterator.rs | 11 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 D | child_process.js | 73 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 D | ini_str.rs | 11 sequence::{delimited, pair, terminated, tuple}, 26 terminated( in category()
|
H A D | ini.rs | 13 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 D | fuzz_arithmetic.rs | 14 sequence::{delimited, pair, terminated}, 52 terminated(tag("("), incr), in parens()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | UnicodeRegex.java | 400 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 D | UnicodeRegex.java | 395 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 D | runner-unix.c | 135 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 D | runner-unix.h | 33 int terminated; member
|
/third_party/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 58 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 D | test-libevdev-events.c | 663 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 D | mustang_auxv.rs | 47 // assume it's a valid pointer to a NUL-terminated string.
|
/third_party/rust/crates/rust-cexpr/src/ |
H A D | literal.rs | 48 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 D | common.mak | 35 # NASM requires -I path terminated with /
|
/third_party/rust/crates/nom/src/sequence/ |
H A D | mod.rs | 87 /// 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 D | tests.rs | 186 terminated(tag("abcd"), tag("efgh"))(i) in terminated_test()
|
/third_party/mbedtls/programs/ssl/ |
H A D | ssl_server2.c | 3733 int terminated = 0; in main() local 3776 terminated = 1; in main() 3812 terminated = 1; in main() 3818 if (terminated) { in main()
|