/llvm-project/lldb/packages/Python/lldbsuite/test/ |
H A D | dotest.py | 40 from . import configuration 74 if configuration.verbose > 0: 196 if not configuration.skip_tests: 197 configuration.skip_tests = [] 198 configuration.skip_tests.append(line) 200 if not configuration.xfail_tests: 201 configuration.xfail_tests = [] 202 configuration.xfail_tests.append(line) 246 configuration.compiler = os.path.abspath(args.compiler) 247 if not is_exe(configuration [all...] |
H A D | test_result.py | 18 from . import configuration 70 configuration.test_result = self 72 counterWidth = len(str(configuration.suite.countTestCases())) 182 if configuration.shouldSkipBecauseOfCategories(self.getCategoriesForTest(test)): 184 if self.checkExclusion(configuration.skip_tests, test.id()): 195 configuration.xfail_tests, test.id() 196 ) or self.checkCategoryExclusion(configuration.xfail_categories, test): 220 configuration.sdir_has_content = True 234 configuration.sdir_has_content = True 246 configuration.xfail_tests, test.id() [all …]
|
H A D | lldbplatformutil.py | 16 from . import configuration 59 return configuration.lldb_platform_name == "remote-android" 64 assert configuration.lldb_platform_url is not None 66 parsed_url = urlparse(configuration.lldb_platform_url) 151 if configuration.apple_sdk: 152 platform = configuration.apple_sdk 300 if configuration.dwarf_version: 301 return str(configuration.dwarf_version)
|
H A D | lldbtest.py | 50 from . import configuration 549 lldb_test_src = configuration.test_src_root 580 full_dir = os.path.join(configuration.test_src_root, cls.mydir) 688 if not lldb.remote_platform or not configuration.lldb_platform_working_dir: 695 remote_test_dir = configuration.lldb_platform_working_dir 723 return os.path.join(configuration.test_src_root, self.mydir) 731 configuration.test_build_dir, self.mydir, self.getBuildDirBasename() 771 configuration.lldb_module_cache_dir 777 for setting, value in configuration.settings: 915 if sys.platform.startswith("darwin") and configuration [all...] |
/llvm-project/lldb/packages/Python/lldbsuite/test/builders/ |
H A D | builder.py | 11 from lldbsuite.test import configuration 19 return configuration.arch if configuration.arch else "" 23 compiler = configuration.compiler if configuration.compiler else "clang" 50 and configuration.test_build_dir 56 build_dir = os.path.join(configuration.test_build_dir, test_subdir, test_name) 57 src_dir = os.path.join(configuration.test_src_root, test_subdir) 63 configuration.make_path, 108 if not cc and configuration [all...] |
H A D | darwin.py | 6 from lldbsuite.test import configuration 28 if configuration.lldb_platform_name: 29 return get_os_env_from_platform(configuration.lldb_platform_name) 30 if configuration.apple_sdk: 31 return get_os_from_sdk(configuration.apple_sdk) 79 if configuration.dsymutil: 80 args["DSYMUTIL"] = configuration.dsymutil 82 if configuration.apple_sdk and "internal" in configuration.apple_sdk: 83 sdk_root = lldbutil.get_xcode_sdk_root(configuration.apple_sdk)
|
/llvm-project/clang/docs/ |
H A D | ClangFormatStyleOptions.rst | 32 directly specify style configuration in the ``-style=`` command line option or 33 use ``-style=file`` and put style configuration in the ``.clang-format`` or 54 The configuration file can consist of several sections each having different 56 configuration is targeted at. See the description of the **Language** option 68 An example of a configuration file for multiple languages: 95 An easy way to get a valid ``.clang-format`` file containing all configuration 102 When specifying configuration in the ``-style=`` option, the same configuration 103 is applied for all input files. The format of the configuration is: 145 the configuration (withou [all...] |
H A D | Multilib.rst | 36 configuration file. 47 EXPERIMENTAL Multilib via configuration file 50 Some Clang toolchains support loading multilib configuration from a 51 ``multilib.yaml`` configuration file. 53 A ``multilib.yaml`` configuration file specifies which multilib variants are 60 Clang goes through the following steps to use multilib from a configuration 195 Multilib via configuration file shall be considered an experimental feature 343 It is likely that the configuration format will need to evolve in future to 351 New versions of Clang should be able to use configuration written for earlier 354 to detect if the configuration i [all...] |
/llvm-project/libcxx/cmake/caches/ |
H A D | README.md | 1 # libc++ / libc++abi configuration caches 8 configuration not listed here is not explicitly supported. If you use or ship 9 libc++ under a configuration not listed here, you should work with the libc++ 10 maintainers to make it into a supported configuration and add it here. 12 Similarly, adding any new configuration that's not already covered must be
|
/llvm-project/lldb/packages/Python/lldbsuite/test/tools/intelpt/ |
H A D | intelpt_testcase.py | 35 if "intel-pt" not in configuration.enabled_plugins: 85 configuration = lldb.SBStructuredData() 86 configuration.SetFromJSON(json.dumps(obj)) 87 return configuration 101 configuration = self.createConfiguration( 104 self.assertSBError(trace.Start(thread, configuration), error) 128 configuration = self.createConfiguration( 134 self.assertSBError(trace.Start(configuration), error=error)
|
/llvm-project/libcxx/docs/DesignDocs/ |
H A D | CapturingConfigInfo.rst | 2 Capturing configuration information in the headers 11 libc++ supports building the library with a number of different configuration options. 13 in the headers, libc++ has a mechanism to capture configuration options in the 27 configuration without having to duplicate all the libc++ headers. 34 to capture the various configuration options you selected. The ``__config`` header 36 get the correct configuration. 38 The ``__config_site`` header is hence the only place where persistent configuration 40 the library. As we evolve the library, we can lift configuration options into that
|
/llvm-project/libunwind/test/configs/ |
H A D | cmake-bridge.cfg.in | 6 # This file performs the bridge between the CMake configuration and the Lit 7 # configuration files by setting up the LitConfig object and various Lit 10 # Individual configuration files can take advantage of this bridge by 18 # Basic configuration of the test suite 31 # Add substitutions for bootstrapping the test suite configuration
|
/llvm-project/libcxx/test/configs/ |
H A D | cmake-bridge.cfg.in | 6 # This file performs the bridge between the CMake configuration and the Lit 7 # configuration files by setting up the LitConfig object and various Lit 10 # Individual configuration files can take advantage of this bridge by 18 # Basic configuration of the test suite 25 # Add substitutions for bootstrapping the test suite configuration
|
/llvm-project/lldb/source/API/ |
H A D | SBTrace.cpp | 95 SBError SBTrace::Start(const SBStructuredData &configuration) { in Start() 96 LLDB_INSTRUMENT_VA(this, configuration); in Start() 101 m_opaque_sp->Start(configuration.m_impl_up->GetObjectSP())) in Start() 107 const SBStructuredData &configuration) { in Start() 108 LLDB_INSTRUMENT_VA(this, thread, configuration); in Start() 116 configuration.m_impl_up->GetObjectSP())) in Start() 93 Start(const SBStructuredData & configuration) Start() argument 105 Start(const SBThread & thread,const SBStructuredData & configuration) Start() argument
|
/llvm-project/llvm/utils/vscode/llvm/ |
H A D | vsc-extension-quickstart.md | 8 * `language-configuration.json` - this is the language configuration, defining the tokens that are … 12 * Make sure the language configuration settings in `language-configuration.json` are accurate. 15 * Verify that syntax highlighting works and that the language configuration settings are working.
|
/llvm-project/libcxxabi/test/configs/ |
H A D | cmake-bridge.cfg.in | 6 # This file performs the bridge between the CMake configuration and the Lit 7 # configuration files by setting up the LitConfig object and various Lit 10 # Individual configuration files can take advantage of this bridge by 19 # Basic configuration of the test suite
|
/llvm-project/libcxx/lib/abi/ |
H A D | CMakeLists.txt | 5 # to a specific ABI configuration. 8 # the list of symbols exported by libc++ for that configuration, however we could 69 …message(STATUS "ABI list file not generated for configuration ${abi_list_identifier}, `check-cxx-a… 77 COMMENT "Generating the ABI list file for configuration ${abi_list_identifier}")
|
/llvm-project/llvm/ |
H A D | .gitignore | 31 # Visual Studio built-in CMake configuration 33 # CLion project configuration 36 # Qt Creator project configuration
|
/llvm-project/libcxx/modules/ |
H A D | README.md | 14 be loaded in the current libc++ configuration. For example "include <locale>" 16 macros to export the declarations available in the current configuration. This 17 configuration is available if the user includes the `__config' header.
|
/llvm-project/clang/test/Modules/ |
H A D | config_macros.m | 60 @import config; // expected-warning{{#undef of configuration macro 'WANT_FOO' has no effect on the … 63 @import config; // expected-warning{{definition of configuration macro 'WANT_FOO' has no effect on … 70 @import config; // expected-warning{{definition of configuration macro 'WANT_BAR' has no effect on … 76 …// expected-warning{{definition of configuration macro 'SOME_VALUE' has no effect on the import of…
|
/llvm-project/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/ |
H A D | lit.cfg | 3 # Verify that the site configuration was loaded. 5 lit_config.fatal("No site specific configuration")
|
/llvm-project/lldb/examples/test/ |
H A D | .lldbtest-config | 5 split_stderr = True # This will split the stderr into configuration-specific file 6 split_stdout = True # This will split the stdout into configuration-specific file
|
/llvm-project/mlir/include/mlir/Dialect/AMX/ |
H A D | AMX.td | 17 // of Intel AMX, such as configuration setup, tile sizes, instructions, 20 // Note that since configuration changes (implicit at dialect level) are 53 Note that since configuration changes (implicit at dialect level) are 157 "tilezero" instruction with the corresponding tile configuration. 185 corresponding tile configuration. 215 corresponding tile configuration. 250 "tdpbf16ps" instruction with the corresponding tile configuration. 290 instructions with the corresponding tile configuration.
|
/llvm-project/llvm/utils/lit/lit/ExampleTests.ObjDir/ |
H A D | lit.site.cfg | 3 # Site specific configuration file. 6 # certain configuration variables which cannot be autodetected, so that 'lit'
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBTrace.h | 90 SBError Start(const SBStructuredData &configuration); 110 SBError Start(const SBThread &thread, const SBStructuredData &configuration);
|