Home
last modified time | relevance | path

Searched full:suffixes (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/llvm-project/llvm/cmake/modules/
H A DGetLibraryName.cmake5 set(suffixes ${CMAKE_FIND_LIBRARY_SUFFIXES}) variable
7 list(FILTER suffixes EXCLUDE REGEX "^\\s*$")
12 if(suffixes)
13 string(REPLACE ";" "|" suffixes "${suffixes}")
14 string(REGEX REPLACE "(${suffixes})$" "" path ${path})
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Duppercase-literal-suffix.rst7 By default, only the suffixes that begin with ``l`` (``l``, ``ll``, ``lu``,
16 All valid combinations of suffixes are supported.
33 Optionally, a list of the destination suffixes can be provided. When the
36 diagnostic is issued. This allows for fine-grained control of what suffixes to
56 about literal suffixes inside macros.
/llvm-project/clang/test/Driver/
H A Dlto.cu27 // llvm-bc and llvm-ll outputs need to match regular suffixes
30 // RUN: FileCheck -check-prefix=CHECK-COMPILELINK-SUFFIXES < %t %s
32 // CHECK-COMPILELINK-SUFFIXES: "-o" "[[CPP:.*lto-host.*\.cui]]" "-x" "cuda" "{{.*}}lto.cu"
33 // CHECK-COMPILELINK-SUFFIXES: "-o" "[[BC:.*lto-host.*\.bc]]" {{.*}}[[CPP]]"
34 // CHECK-COMPILELINK-SUFFIXES: "-o" "[[OBJ:.*lto-host.*\.o]]" {{.*}}[[BC]]"
35 // CHECK-COMPILELINK-SUFFIXES: "{{.*}}a.{{(out|exe)}}" {{.*}}[[OBJ]]"
38 // RUN: FileCheck -check-prefix=CHECK-COMPILE-SUFFIXES < %t %s
40 // CHECK-COMPILE-SUFFIXES: "-o" "{{.*}}lto.s" "-x" "cuda" "{{.*}}lto.cu"
H A Dlto.c17 // llvm-bc and llvm-ll outputs need to match regular suffixes
20 // RUN: FileCheck -check-prefix=CHECK-COMPILELINK-SUFFIXES < %t %s
22 // CHECK-COMPILELINK-SUFFIXES: "-o" "{{.*}}lto.i" "-x" "c" "{{.*}}lto.c"
23 // CHECK-COMPILELINK-SUFFIXES: "-o" "{{.*}}lto.bc" {{.*}}"{{.*}}lto.i"
24 // CHECK-COMPILELINK-SUFFIXES: "-o" "{{.*}}lto.o" {{.*}}"{{.*}}lto.bc"
25 // CHECK-COMPILELINK-SUFFIXES: "{{.*}}a.{{(out|exe)}}" {{.*}}"{{.*}}lto.o"
28 // RUN: FileCheck -check-prefix=CHECK-COMPILE-SUFFIXES < %t %s
30 // CHECK-COMPILE-SUFFIXES: "-o" "{{.*}}lto.s" "-x" "c" "{{.*}}lto.c"
/llvm-project/llvm/utils/lit/lit/
H A DTestingConfig.py108 suffixes=set(),
166 suffixes,
183 self.suffixes = set(suffixes)
225 self.suffixes = set(self.suffixes)
162 __init__( self, parent, name, suffixes, test_format, environment, substitutions, unsupported, test_exec_root, test_source_root, excludes, available_features, pipefail, limit_to_features=[], is_early=False, parallelism_group=None, standalone_tests=False, ) global() argument
H A Dutil.py185 def listdir_files(dirname, suffixes=None, exclude_filenames=None): argument
193 If 'suffixes' is not None, then only filenames ending with one of its
201 If specified, the containers for 'suffixes' and 'exclude_filenames' must
206 suffixes: (optional) a sequence of strings (set, list, etc.).
215 if suffixes is None:
216 suffixes = {""}
222 or not any(filename.endswith(sfx) for sfx in suffixes)
243 # Get suffixes to search.
H A DLitConfig.py59 self.suffixes = ["cfg.py", "cfg"]
60 self.config_names = ["%s.%s" % (self.config_prefix, x) for x in self.suffixes]
62 "%s.site.%s" % (self.config_prefix, x) for x in self.suffixes
65 "%s.local.%s" % (self.config_prefix, x) for x in self.suffixes
/llvm-project/llvm/test/tools/yaml2obj/ELF/
H A Dduplicate-symbol-names.yaml2 ## containing symbols with duplicate names (but different name suffixes).
20 ## symbols with equal names and suffixes.
36 ## symbols without suffixes in the names and their
54 ## reference symbols with name suffixes.
H A Dduplicate-section-names.yaml2 ## containing sections with duplicate names (but different name suffixes).
38 ## sections with equal names and suffixes.
58 ## symbols without suffixes in the names and their
76 ## relative to sections with duplicate names (but different name suffixes).
120 ## reference sections and symbols with name suffixes.
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Dmacro-usage-command-line-macros.cpp1 // RUN: %check_clang_tidy -check-suffixes=NORMAL %s cppcoreguidelines-macro-usage %t -- -- -D_ZZZ_I…
2 // RUN: %check_clang_tidy -check-suffixes=NORMAL %s cppcoreguidelines-macro-usage %t -- -config='{C…
3 // RUN: %check_clang_tidy -check-suffixes=NORMAL,CL %s cppcoreguidelines-macro-usage %t -- -config=…
/llvm-project/lldb/scripts/
H A Dmsvc_extract_private_symbols.py73 suffixes = [".lib", ".a", ".obj", ".o"]
74 if not any([lib.endswith(s) for s in suffixes]):
75 for suffix in suffixes:
82 if not any([lib.endswith(s) for s in suffixes]):
/llvm-project/clang-tools-extra/clang-tidy/readability/
H A DUppercaseLiteralSuffixCheck.cpp27 // What should be skipped before looking for the Suffixes? (Nothing here.)
30 // ('i', 'j'). In MS compatibility mode, suffixes like i32 are supported.
31 static constexpr llvm::StringLiteral Suffixes = member
36 constexpr llvm::StringLiteral IntegerLiteralCheck::Suffixes; member in clang::tidy::readability::__anond0d1c6720111::IntegerLiteralCheck
51 static constexpr llvm::StringLiteral Suffixes = member
56 constexpr llvm::StringLiteral FloatingLiteralCheck::Suffixes; member in clang::tidy::readability::__anond0d1c6720111::FloatingLiteralCheck
157 Skip = LiteralSourceText.find_first_of(LiteralType::Suffixes, /*From=*/Skip); in shouldReplaceLiteralSuffix()
/llvm-project/clang-tools-extra/clang-tidy/utils/
H A DFileExtensionsUtils.cpp37 SmallVector<StringRef, 5> Suffixes; in parseFileExtensions() local
40 AllFileExtensions.split(Suffixes, Delimiter); in parseFileExtensions()
46 for (StringRef Suffix : Suffixes) { in parseFileExtensions()
/llvm-project/llvm/test/tools/llvm-ml/
H A Dlit.local.cfg5 config.suffixes.add(".asm")
6 config.suffixes.add(".blah")
/llvm-project/clang/test/Format/
H A Dlit.local.cfg4 # Suffixes supported by clang-format.
5 config.suffixes = [
/llvm-project/llvm/test/MC/ARM/
H A Dinst-arm-suffixes.s12 @ CHECK-ERROR: width suffixes are invalid in ARM mode
14 @ CHECK-ERROR: width suffixes are invalid in ARM mode
/llvm-project/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp1.cpp3 void operator "" p31(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
5 long double operator "" pi(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dimplicit-widening-of-multiplication-result-array-subscript-expression.cpp1 // RUN: %check_clang_tidy -check-suffixes=ALL,C -std=c99 %s bugprone-implicit-widening-of-multiplic…
2 // RUN: %check_clang_tidy -check-suffixes=ALL,CXX %s bugprone-implicit-widening-of-multiplication-r…
4 // RUN: %check_clang_tidy -check-suffixes=ALL,C -std=c99 %s bugprone-implicit-widening-of-multiplic…
8 // RUN: %check_clang_tidy -check-suffixes=ALL,C %s bugprone-implicit-widening-of-multiplication-res…
/llvm-project/clang/test/Parser/
H A Dcxx0x-literal-operators.cpp6 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
8 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
/llvm-project/llvm/test/CodeGen/WinEH/
H A Dlit.local.cfg1 # FIXME: For now, override suffixes to exclude any .s tests, because some of the
7 config.suffixes = [".ll", ".test", ".txt"]
/llvm-project/libc/test/src/stdbit/
H A DCMakeLists.txt19 set(suffixes c s i l ll) variable
21 foreach(suffix IN LISTS suffixes)
/llvm-project/llvm/include/llvm/Support/
H A DSuffixTree.h10 // Suffix trees represent the suffixes of their input strings in their leaves.
117 /// respective suffixes.
125 /// suffix tree with implicit suffixes. At the end of the final step, the
129 /// \param SuffixesToAdd The number of suffixes that must be added
132 /// \returns The number of suffixes that have not been added at the end of
/llvm-project/libc/src/stdbit/
H A DCMakeLists.txt2 set(suffixes c s i l ll) variable
4 foreach(suffix IN LISTS suffixes)
/llvm-project/bolt/test/Unit/
H A Dlit.cfg.py13 # suffixes: A list of file extensions to treat as test files.
14 config.suffixes = []
/llvm-project/compiler-rt/test/dfsan/
H A Dlit.cfg.py24 # Default test suffixes.
25 config.suffixes = [".c", ".cpp"]

12345678910>>...19