Home
last modified time | relevance | path

Searched refs:IgnoreErrors (Results 1 – 20 of 20) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/bin/
H A Dscan-build52 IgnoreErrors => 0, # Ignore build errors.
1040 my $IgnoreErrors = shift;
1045 if ($IgnoreErrors) {
1119 my $IgnoreErrors = shift;
1127 return RunXcodebuild($Args, $IgnoreErrors, $CCAnalyzer, $CXXAnalyzer, $EnvVars);
1162 if ($IgnoreErrors) {
1656 $Options{IgnoreErrors} = 1;
2007 my $ExitStatus = RunBuildCommand(\@ARGV, $Options{IgnoreErrors}, $Options{KeepCC},
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dastcodegen.d100 alias IgnoreErrors = dmd.dsymbol.IgnoreErrors; member
H A Ddscope.d476 if (!(flags & (SearchImportsOnly | IgnoreErrors)) && in searchScopes()
552 Dsymbol s = sc.search(Loc.initial, id, &scopesym, IgnoreErrors); in search_correct()
578 if (auto s = search(Loc.initial, ident, &scopesym, IgnoreErrors)) in search_correct()
H A Dnspace.d135 if (!(flags & IgnoreErrors))
H A Ddsymbol.d210 IgnoreErrors = 0x02, // don't give error messages
903 return s.search(Loc.initial, id, IgnoreErrors); in search_correct()
909 if (auto s = search(Loc.initial, ident, IgnoreErrors)) in search_correct()
1453 … int sflags = flags & (IgnoreErrors | IgnoreAmbiguous); // remember these in recursive searches
1547 if (!(flags & IgnoreErrors))
H A Ddclass.d485 if (ident != Id.stringof && !(flags & IgnoreErrors) && semanticRun < PASS.semanticdone)
674 Dsymbol s = search(Loc.initial, fd.ident, IgnoreAmbiguous | IgnoreErrors); in isFuncHidden()
H A Ddstruct.d259 if(ident != Id.stringof && !(flags & IgnoreErrors) && semanticRun < PASS.semanticdone)
H A Ddsymbol.h146 IgnoreErrors = 0x02, // don't give error messages enumerator
H A Ddoc.d3703 auto symbol = _scope.search(loc, id, null, IgnoreErrors); in lookupSymbol()
3707 symbol = id !is null ? symbol.search(loc, id, IgnoreErrors) : null; in lookupSymbol()
H A Ddtoh.d3259 if (auto mem = sym.search(Loc.initial, name, ASTCodegen.IgnoreErrors))
H A Dtypesem.d2114 auto s = sc2.search(mtype.loc, mtype.id, &scopesym, IgnoreErrors | TagNameSpace); in typeSemantic()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddscope.c389 if (!(flags & (SearchImportsOnly | IgnoreErrors)) && in searchScopes()
477 if (s && !(flags & IgnoreErrors)) in search()
619 Dsymbol *s = sc->search(Loc(), id, &scopesym, IgnoreErrors); in scope_search_fp()
H A Ddsymbol.c527 return (void *)s->search(Loc(), id, IgnoreErrors); in symbol_search_fp()
1106 …int sflags = flags & (IgnoreErrors | IgnoreAmbiguous | IgnoreSymbolVisibility); // remember these … in search()
1184 if (!(flags & IgnoreErrors)) in search()
1204 if (!(flags & IgnoreErrors) && s->prot().kind == PROTprivate && in search()
H A Ddsymbol.h136 IgnoreErrors = 0x02, // don't give error messages enumerator
H A Ddclass.c1153 Dsymbol *s = search(Loc(), fd->ident, IgnoreAmbiguous | IgnoreErrors); in isFuncHidden()
H A Dmtype.c8436 if (s && !(flags & IgnoreErrors)) in searchSymClass()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc1231 bool IgnoreErrors) {
1238 if (!st && !IgnoreErrors)
1242 EC = remove_directories_impl(Item, IgnoreErrors);
1243 if (EC && !IgnoreErrors)
1248 if (EC && !IgnoreErrors)
1252 if (EC && !IgnoreErrors)
1258 std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
1259 auto EC = remove_directories_impl(path, IgnoreErrors);
1260 if (EC && !IgnoreErrors)
1263 if (EC && !IgnoreErrors)
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DCommandLine.cpp1353 bool IgnoreErrors = Errs; in ParseCommandLineOptions() local
1401 if (!IgnoreErrors) in ParseCommandLineOptions()
1412 if (!IgnoreErrors) in ParseCommandLineOptions()
1663 if (!IgnoreErrors) in ParseCommandLineOptions()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DPath.inc1325 std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
1329 if (EC && !IgnoreErrors)
1346 if (result != 0 && !IgnoreErrors)
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DFileSystem.h382 std::error_code remove_directories(const Twine &path, bool IgnoreErrors = true);