Home
last modified time | relevance | path

Searched refs:all_errors (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/cxx/gen/src/
Dcfg.rs75 let mut all_errors = Vec::new(); in try_eval() localVariable
80 Err(errors) => all_errors.extend(errors), in try_eval()
83 if all_errors.is_empty() { in try_eval()
86 Err(all_errors) in try_eval()
90 let mut all_errors = Vec::new(); in try_eval() localVariable
95 Err(errors) => all_errors.extend(errors), in try_eval()
98 if all_errors.is_empty() { in try_eval()
101 Err(all_errors) in try_eval()
/third_party/rust/crates/cxx/syntax/
Dreport.rs24 let mut all_errors = match iter.next() { in propagate() localVariable
29 all_errors.combine(err); in propagate()
31 Err(all_errors) in propagate()
/third_party/python/Lib/
Dftplib.py66 all_errors = (Error, OSError, EOFError) variable
809 all_errors = (Error, OSError, EOFError, ssl.SSLError) variable
/third_party/python/Lib/urllib/
Drequest.py1581 except ftplib.all_errors as exp:
2379 _ftperrors = ftplib.all_errors
2428 except ftplib.all_errors:
/third_party/python/Doc/library/
Dftplib.rst159 .. data:: all_errors
/third_party/python/Lib/test/
Dtest_ftplib.py528 except ftplib.all_errors: