| /src/external/apache2/llvm/dist/clang/tools/diagtool/ |
| diagtool_main.cpp | 19 if (DiagTool *tool = diagTools->getTool(argv[1])) 20 return tool->run(argc - 2, &argv[2], llvm::outs());
|
| DiagTool.cpp | 35 void DiagTools::registerTool(DiagTool *tool) { 36 (*getTools(tools))[tool->getName()] = tool;
|
| DiagTool.h | 44 void registerTool(DiagTool *tool);
|
| /src/external/apache2/llvm/dist/clang/tools/diag-build/ |
| diag-build.sh | 3 # diag-build: a tool showing enabled warnings in a project. 69 tool=$1 72 if [[ -z "$tool" ]]; then 75 elif [[ "$tool" == "xcodebuild" ]]; then 78 elif [[ "$tool" == "make" ]]; then 82 echo "Warning: unknown build system '$tool'" 1>&2 97 eval $tool $dry_run $set_compiler $@ 2>/dev/null | 109 if [[ "$tool" != "xcodebuild" ]]; then
|
| /src/external/gpl3/binutils/dist/ |
| src-release.sh | 59 # Get the version number of a given tool 62 tool=$1 63 if grep 'AC_INIT.*BFD_VERSION' $tool/configure.ac >/dev/null 2>&1; then 65 elif test -f $tool/common/create-version.sh; then 66 $tool/common/create-version.sh $tool 'dummy-host' 'dummy-target' VER.tmp 69 elif test $tool = "gdb"; then 70 ./gdbsupport/create-version.sh $tool 'dummy-host' 'dummy-target' VER.tmp 73 elif test -f $tool/version.in; then 74 head -n 1 $tool/version.i [all...] |
| /src/external/gpl3/binutils.old/dist/ |
| src-release.sh | 59 # Get the version number of a given tool 62 tool=$1 63 if grep 'AC_INIT.*BFD_VERSION' $tool/configure.ac >/dev/null 2>&1; then 65 elif test -f $tool/common/create-version.sh; then 66 $tool/common/create-version.sh $tool 'dummy-host' 'dummy-target' VER.tmp 69 elif test $tool = "gdb"; then 70 ./gdbsupport/create-version.sh $tool 'dummy-host' 'dummy-target' VER.tmp 73 elif test -f $tool/version.in; then 74 head -n 1 $tool/version.i [all...] |
| /src/external/gpl3/gcc.old/dist/contrib/ |
| dg-extract-results.py | 44 # The variations run for this tool, mapped by --target_board name. 155 + ''' [-t tool] [-l variant-list] [-L] log-or-sum-file ... 157 tool The tool (e.g. g++, libffi) for which to create a 162 variants in the files for <tool>. 212 # Return the ToolRun for tool NAME. 239 def parse_run (self, filename, file, tool, variation, num_variations): 258 end = '\t\t=== ' + tool.name + ' Summary ===\n' 260 end = ('\t\t=== ' + tool.name + ' Summary for ' 375 tool = self.get_tool ('acats' [all...] |
| compare_tests | 2 # This script automatically test the given tool with the tool's test cases, 37 tool=gxx 40 tmp1=$TMPDIR/$tool-testing.$$a 41 tmp2=$TMPDIR/$tool-testing.$$b 42 now_s=$TMPDIR/$tool-testing.$$d 43 before_s=$TMPDIR/$tool-testing.$$e 44 lst1=$TMPDIR/$tool-lst1.$$ 45 lst2=$TMPDIR/$tool-lst2.$$ 46 lst3=$TMPDIR/$tool-lst3.$ [all...] |
| test_installed | 123 test x"${GCC_UNDER_TEST}" = x"no" || runtest --tool gcc ${1+"$@"} 124 test x"${GXX_UNDER_TEST}" = x"no" || runtest --tool g++ ${1+"$@"} 125 test x"${GFORTRAN_UNDER_TEST}" = x"no" || runtest --tool gfortran ${1+"$@"} 126 test x"${OBJC_UNDER_TEST}" = x"no" || runtest --tool objc ${1+"$@"}
|
| dg-extract-results.sh | 3 # For a specified tool and optional list of test variants, extract 42 Usage: $PROGNAME [-t tool] [-l variant-list] [-L] sum-file ... 44 tool The tool (e.g. g++, libffi) for which to create a 46 specified sum files must be for the same tool. 49 variants in the files for <tool>. 67 TOOL="" 73 t) test -z "$TOOL" || (msg "${PROGNAME}: only one tool can be specified"; exit 1); 74 TOOL="${OPTARG}"; [all...] |
| test_recheck | 91 echo "(cd $dir && runtest $amflags --tool $base $flags)" 93 eval runtest --tool $base $flags || st=$?
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| slapcommon.c | 64 usage( int tool, const char *progname ) 71 switch( tool ) { 121 parse_slapopt( int tool, int *mode ) 206 switch ( tool ) { 219 Debug( LDAP_DEBUG_ANY, "schema-check meaningless for tool.\n" ); 224 switch ( tool ) { 237 Debug( LDAP_DEBUG_ANY, "value-check meaningless for tool.\n" ); 243 switch ( tool ) { 259 Debug( LDAP_DEBUG_ANY, "ldif-wrap meaningless for tool.\n" ); 274 * tool tool cod [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/bugpoint/ |
| OptimizerDriver.cpp | 166 std::string tool = OptCmd; local 170 tool = *Path; 174 if (tool.empty()) { 178 if (!sys::fs::exists(tool)) { 179 errs() << "Specified `opt' binary does not exist: " << tool << "\n"; 190 Prog = tool; 202 Args.push_back(tool); 204 Args.push_back(tool);
|
| /src/external/bsd/openldap/dist/tests/data/regressions/its6794/ |
| slapd-glue.conf | 26 tool-threads 4
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_symbolizer_libcdep.cpp | 96 for (auto &tool : tools_) { 98 if (tool.SymbolizePC(addr, res)) { 117 for (auto &tool : tools_) { 119 if (tool.SymbolizeData(addr, info)) { 133 for (auto &tool : tools_) { 135 if (tool.SymbolizeFrame(addr, info)) { 158 for (auto &tool : tools_) { 160 tool.Flush(); 166 for (auto &tool : tools_) { 168 if (const char *demangled = tool.Demangle(name) [all...] |
| sanitizer_symbolizer_posix_libcdep.cpp | 433 "binary or other known tool.\n", path); 466 } else if (SymbolizerTool *tool = InternalSymbolizer::get(allocator)) { 468 list->push_back(tool); 471 if (SymbolizerTool *tool = LibbacktraceSymbolizer::get(allocator)) { 473 list->push_back(tool); 477 if (SymbolizerTool *tool = ChooseExternalSymbolizer(allocator)) { 478 list->push_back(tool);
|
| sanitizer_symbolizer.cpp | 130 for (auto &tool : tools_) { 131 tool.LateInitialize();
|
| /src/external/apache2/llvm/dist/llvm/utils/crosstool/ARM/ |
| build-install-linux.sh | 123 for tool in ${CROSS_TARGET_AS} ${CROSS_TARGET_LD}; do 124 if [[ ! -e $tool ]]; then 125 echo "${tool} not found; exiting."
|
| /src/external/gpl3/gcc.old/dist/libphobos/testsuite/ |
| Makefile.am | 28 RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir 108 tool=libphobos; \
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_symbolizer_libcdep.cc | 86 for (auto &tool : tools_) { 88 if (tool.SymbolizePC(addr, res)) { 107 for (auto &tool : tools_) { 109 if (tool.SymbolizeData(addr, info)) { 132 for (auto &tool : tools_) { 134 tool.Flush(); 140 for (auto &tool : tools_) { 142 if (const char *demangled = tool.Demangle(name))
|
| sanitizer_symbolizer_posix_libcdep.cc | 472 "binary or other known tool.\n", path); 505 } else if (SymbolizerTool *tool = InternalSymbolizer::get(allocator)) { 507 list->push_back(tool); 510 if (SymbolizerTool *tool = LibbacktraceSymbolizer::get(allocator)) { 512 list->push_back(tool); 516 if (SymbolizerTool *tool = ChooseExternalSymbolizer(allocator)) { 517 list->push_back(tool);
|
| /src/external/gpl2/gettext/dist/ |
| autogen.sh | 7 # - the GNULIB_TOOL environment variable pointing to the gnulib-tool script 44 # Now it should contain a gnulib-tool. 45 if test -f gnulib/gnulib-tool; then 46 GNULIB_TOOL=`pwd`/gnulib/gnulib-tool 48 echo "** warning: gnulib-tool not found" 1>&2 51 # Skip the gnulib-tool step if gnulib-tool was not found.
|
| /src/external/bsd/openldap/dist/build/ |
| shtool | 3 ## GNU shtool -- The GNU Portable Shell Tool 135 echo ' [-a|--archive-dir <dir>] [-z|--compress [<tool>:]<level>]' 178 # implicit tool command selection 179 tool="$name" 182 # explicit tool command selection 183 tool="$1" 195 case $tool in 275 echo "$0:Error: unknown option \`$tool'" 2>&1 280 echo "$0:Error: unknown command \`$tool'" 2>&1 295 # determine name of tool [all...] |
| /src/sys/external/bsd/acpica/dist/compiler/ |
| readme.txt | 86 2) Integration as a custom tool for Visual Studio 89 This procedure adds the iASL compiler as a custom tool that can be used 99 name for this tool. 102 the other fields for this new custom tool. 117 These steps will add the compiler to the tools menu as a custom tool.
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/llvm/ |
| config.py | 338 for tool in tools: 339 match = tool.resolve(self, search_dirs) 411 tool = None 413 tool = self.config.environment.get(search_env) 415 if not tool: 417 tool = lit.util.which(name, self.config.llvm_tools_dir) 419 if not tool and use_installed: 421 tool = lit.util.which(name, self.config.environment['PATH']) 423 if required and not tool: 430 if tool [all...] |