/third_party/libabigail/src/ |
H A D | abg-ini.cc | 1114 for (bool is_ok = read_next_char(c); in skip_line() 1115 is_ok; in skip_line() 1116 is_ok = read_next_char(c)) in skip_line() 1734 bool is_ok = read_sections(in, sections); in read_sections() 1737 return is_ok; in read_sections() 1911 bool is_ok = write_sections(sections, f); in write_sections() 1915 return is_ok; in write_sections()
|
/third_party/libabigail/tests/ |
H A D | test-read-dwarf.cc | 649 if (!(is_ok = run_abidw())) in perform() 652 if (!(is_ok = run_diff())) in perform()
|
H A D | test-read-common.h | 49 bool is_ok; member
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | value_enum.rs | 420 assert!(ArgChoice::from_str("foo", true).is_ok()); in skip_variant() 421 assert!(ArgChoice::from_str("bar", true).is_ok()); in skip_variant() 451 assert!(ArgChoice::from_str("foo", true).is_ok()); in skip_non_unit_variant() 452 assert!(ArgChoice::from_str("bar", true).is_ok()); in skip_non_unit_variant()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cIncompleteTextureAccessTests.cpp | 97 bool is_ok = true; in iterate() local 118 is_ok = false; in iterate() 126 is_ok = false; in iterate() 135 if (is_ok) in iterate()
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | posix_compatible.rs | 13 assert!(res.is_ok(), "{}", res.unwrap_err()); in flag_overrides_itself() 27 assert!(res.is_ok(), "{}", res.unwrap_err()); in option_overrides_itself() 222 assert!(result.is_ok(), "{}", result.unwrap_err()); in conflict_overridden_2() 268 assert!(result.is_ok(), "{:?}", result.unwrap_err()); in pos_required_overridden_by_flag()
|
H A D | borrowed.rs | 16 assert!(result.is_ok(), "{}", result.unwrap_err()); in borrowed_args()
|
H A D | unicode.rs | 16 assert!(m.is_ok(), "{}", m.unwrap_err()); in possible_values_ignore_case()
|
H A D | flags.rs | 48 assert!(r.is_ok(), "{:?}", r.unwrap_err().kind()); in lots_o_flags_sep() 67 assert!(r.is_ok(), "{:?}", r.unwrap_err().kind()); in lots_o_flags_combined()
|
H A D | subcommands.rs | 253 assert!(res.is_ok(), "{:?}", res.unwrap_err().kind()); in issue_1031_args_with_same_name() 268 assert!(res.is_ok(), "{:?}", res.unwrap_err().kind()); in issue_1031_args_with_same_name_no_more_vals() 302 assert!(res.is_ok(), "{:?}", res.unwrap_err().kind()); in issue_1161_multiple_hyphen_hyphen()
|
/third_party/rust/crates/clap/clap_lex/src/ |
H A D | lib.rs | 307 .map(|s| s.parse::<f64>().is_ok()) in is_number() 437 self.invalid_suffix.is_none() && self.utf8_prefix.as_str().parse::<f64>().is_ok() in display()
|
/third_party/rust/crates/once_cell/src/ |
H A D | imp_std.rs | 414 assert!(t1.join().is_ok()); in wait_for_force_to_finish() 415 assert!(t2.join().is_ok()); in wait_for_force_to_finish()
|
/third_party/rust/crates/env_logger/tests/ |
H A D | init-twice-retains-filter.rs | 9 if env::var("YOU_ARE_TESTING_NOW").is_ok() { in main()
|
H A D | log-in-log.rs | 21 if env::var("YOU_ARE_TESTING_NOW").is_ok() { in main()
|
H A D | log_tls_dtors.rs | 47 if env::var("YOU_ARE_TESTING_NOW").is_ok() { in main()
|
/third_party/rust/crates/os_str_bytes/src/windows/wtf8/ |
H A D | string.rs | 26 .take_while(Result::is_ok)
|
/third_party/rust/crates/syn/src/ |
H A D | data.rs | 186 if discriminant.is_ok() { in parse() 188 } else if scan_lenient_discriminant(input).is_ok() { in parse() 261 } else if input.parse::<BinOp>().is_ok() || (consume![..] | consume![=]) {
|
/third_party/rust/crates/clap/examples/ |
H A D | find.rs | 37 if matches.try_get_many::<clap::Id>(id.as_str()).is_ok() { in from_matches()
|
/third_party/rust/crates/io-lifetimes/tests/ |
H A D | ffi.rs | 78 assert!(handle.is_ok()); in test_file_found()
|
/third_party/rust/crates/nom/examples/ |
H A D | json.rs | 329 assert!(root::<(&str, ErrorKind)>("null").is_ok());
|
/third_party/jerryscript/jerry-ext/arg/ |
H A D | arg-transform-functions.c | 460 bool is_ok = jerry_get_object_native_pointer (js_arg, ptr_p, expected_info_p); in jerryx_arg_transform_native_pointer() local 462 if (!is_ok) in jerryx_arg_transform_native_pointer()
|
/third_party/node/src/crypto/ |
H A D | crypto_random.cc | 63 return CSPRNG(params.buffer, params.size).is_ok(); in DeriveBits() 157 CHECK(CSPRNG(nullptr, 0).is_ok()); in DeriveBits()
|
/third_party/rust/crates/env_logger/src/ |
H A D | lib.rs | 798 if r.is_ok() { in try_init() 959 .is_ok(); in log()
|
/third_party/rust/crates/nix/test/sys/ |
H A D | test_ptrace.rs | 121 while ptrace::cont(child, Some(Signal::SIGKILL)).is_ok() { in test_ptrace_cont() 169 while ptrace::cont(child, Some(Signal::SIGKILL)).is_ok() { in test_ptrace_interrupt()
|
/third_party/rust/crates/clap/tests/ |
H A D | macros.rs | 285 assert!(r.is_ok(), "{}", r.unwrap_err()); in optional_value() 291 assert!(r.is_ok(), "{}", r.unwrap_err()); in optional_value() 297 assert!(r.is_ok(), "{}", r.unwrap_err()); in optional_value()
|