| /llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.lazy.split/ |
| H A D | general.pass.cpp | 71 constexpr bool test_function_call(T&& input, Separator&& separator, std::array<U, M> expected) { in test_function_call() argument 72 std::ranges::lazy_split_view v(input, separator); in test_function_call() 77 constexpr bool test_with_piping(T&& input, Separator&& separator, std::array<U, M> expected) { in test_with_piping() argument 79 for (auto e : input | std::ranges::views::lazy_split(separator)) { in test_with_piping() 162 constexpr void test_one(T&& input, Separator&& separator, std::array<U, M> expected) { in test_one() argument 163 assert(test_function_call(input, separator, expected)); in test_one() 164 assert(test_with_piping(input, separator, expected)); in test_one() 169 assert(test_function_call(CopyableView(input), ForwardTinyView(separator), expected)); in test_one() 170 assert(test_with_piping(CopyableView(input), ForwardTinyView(separator), expected)); in test_one() 172 assert(test_function_call(InputView(input), ForwardTinyView(separator), expected)); in test_one() [all …]
|
| /llvm-project-15.0.7/flang/lib/Evaluate/ |
| H A D | formatting.cpp | 138 char separator{'('}; in AsFortran() local 142 separator = ','; in AsFortran() 145 if (separator == '(') { in AsFortran() 653 char separator{'('}; in AsFortran() local 656 separator = ','; in AsFortran() 671 char separator{'('}; in AsFortran() local 674 separator = ','; in AsFortran() 676 if (separator == ',') { in AsFortran() 679 separator = '['; in AsFortran() 682 separator = ','; in AsFortran() [all …]
|
| /llvm-project-15.0.7/llvm/test/YAMLParser/ |
| H A D | spec-05-11.test | 5 Generic line break (glyphed)
Line separator
Paragraph separator
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/ |
| H A D | dir-separator-posix.s | 2 # separator does not match the separator of the compile unit. 8 # RUN: %lldb %t -s %S/Inputs/dir-separator-posix.lldbinit -o exit | FileCheck %s
|
| H A D | dir-separator-windows.s | 2 # separator does not match the separator of the compile unit. 8 # RUN: %lldb %t -s %S/Inputs/dir-separator-windows.lldbinit -o exit | FileCheck %s
|
| /llvm-project-15.0.7/mlir/unittests/TableGen/ |
| H A D | enums.td | 37 let separator = " | "; 52 let separator = "|"; 58 let separator = ", ";
|
| /llvm-project-15.0.7/lldb/source/Expression/ |
| H A D | DiagnosticManager.cpp | 47 std::string DiagnosticManager::GetString(char separator) { in GetString() argument 53 ret.push_back(separator); in GetString()
|
| /llvm-project-15.0.7/mlir/include/mlir/TableGen/ |
| H A D | Pattern.h | 324 const char *separator) const; 333 const char *separator) const; 423 const char *separator = ", ") const; 430 const char *separator = ", ") const;
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | UUID.cpp | 48 std::string UUID::GetAsString(llvm::StringRef separator) const { in GetAsString() 54 os << separator; in GetAsString()
|
| /llvm-project-15.0.7/llvm/tools/split-file/ |
| H A D | split-file.cpp | 73 StringRef lastPart, separator; in handle() local 82 separator = line.substr(0, markerLen); in handle() 96 "'" + separator + partName + "' occurs more than once"); in handle()
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/lib/libscanbuild/ |
| H A D | clang.py | 181 separator = cmd.index("-triple") 182 return cmd[separator + 1]
|
| /llvm-project-15.0.7/llvm/test/MC/AsmParser/ |
| H A D | altmacro_string.s | 47 # the comma considered as a character and not as a separator. 51 # Fun3 sees the comma as a separator.
|
| /llvm-project-15.0.7/mlir/lib/TableGen/ |
| H A D | Pattern.cpp | 287 StringRef name, int index, const char *fmt, const char *separator) const { in getValueAndRangeUse() 342 auto repl = llvm::join(values, separator); in getValueAndRangeUse() 373 StringRef name, int index, const char *fmt, const char *separator) const { in getAllRangeUse() 399 auto repl = llvm::join(values, separator); in getAllRangeUse() 544 const char *separator) const { in getValueAndRangeUse() 554 return it->second.getValueAndRangeUse(name, index, fmt, separator); in getValueAndRangeUse() 558 const char *separator) const { in getAllRangeUse() 568 return it->second.getAllRangeUse(name, index, fmt, separator); in getAllRangeUse()
|
| /llvm-project-15.0.7/mlir/test/Transforms/ |
| H A D | normalize-memrefs-ops-dynamic.mlir | 32 // CHECK-NOT: separator of consecutive DAGs 37 // CHECK-NOT: separator of consecutive DAGs 80 // CHECK-NOT: separator of consecutive DAGs 85 // CHECK-NOT: separator of consecutive DAGs 120 // CHECK-NOT: separator of consecutive DAGs 151 // CHECK-NOT: separator of consecutive DAGs 182 // CHECK-NOT: separator of consecutive DAGs 213 // CHECK-NOT: separator of consecutive DAGs 244 // CHECK-NOT: separator of consecutive DAGs
|
| /llvm-project-15.0.7/llvm/test/Assembler/ |
| H A D | invalid-datalayout6.ll | 3 ; CHECK: Trailing separator in datalayout string
|
| H A D | invalid-datalayout13.ll | 3 ; CHECK: Expected token before separator in datalayout string
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/X86/ |
| H A D | source-interleave-prefix.test | 7 ;; since '\' may or may not be a separator. 10 ;; For the test below it is possible to accept both '/' and '\' as a separator. 33 ;; Using only a prefix separator is the same as not using the `--prefix` option. 53 ;; account each separator individually. Hence, to fix '/extra/Inputs'
|
| /llvm-project-15.0.7/llvm/utils/lit/lit/builtin_commands/ |
| H A D | diff.py | 92 ignoreSpace = lambda line, separator: \ argument 93 separator.join(line.split()) + "\n" 94 …ignoreAllSpaceOrSpaceChange = functools.partial(ignoreSpace, separator='' if flags.ignore_all_spac…
|
| /llvm-project-15.0.7/mlir/tools/mlir-tblgen/ |
| H A D | EnumsGen.cpp | 187 StringRef separator = enumDef.getValueAsString("separator"); in emitSymToStrFnForBitEnum() local 249 os << formatv(" return ::llvm::join(strs, \"{0}\");\n", separator); in emitSymToStrFnForBitEnum() 279 StringRef separator = enumDef.getValueAsString("separator"); in emitStrToSymFnForBitEnum() local 280 StringRef separatorTrimmed = separator.trim(); in emitStrToSymFnForBitEnum()
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | EnumAttr.td | 274 // Spaces in the separator string are used for printing, but will be optional 276 string separator = "|"; 277 assert !or(!ge(!find(separator, "|"), 0), !ge(!find(separator, ","), 0)), 278 "separator must contain '|' or ',' for parameter parsing"; 280 // Parsing function that corresponds to the enum separator. Only 282 string parseSeparatorFn = !if(!ge(!find(separator, "|"), 0),
|
| /llvm-project-15.0.7/llvm/test/MC/MSP430/ |
| H A D | msp430-separator.s | 6 ; Check that the '{' is recognized as a line separator and
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/COFF/ |
| H A D | section-name-encoding.s | 46 ## table size v v "p0" y pad NULL separator 58 ## sevendigitx offset v v "p0" w pad NULL separator
|
| /llvm-project-15.0.7/llvm/test/MC/AArch64/ |
| H A D | arm64-separator.s | 3 ; ARM64 uses a multi-character statement separator, "%%". Check that we lex
|
| /llvm-project-15.0.7/compiler-rt/lib/interception/ |
| H A D | interception_win.cpp | 972 char* separator = _strchr(function_name, '.'); in InternalGetProcAddress() local 973 if (!separator) in InternalGetProcAddress() 975 *separator = '\0'; in InternalGetProcAddress() 980 return InternalGetProcAddress(redirected_module, separator + 1); in InternalGetProcAddress()
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | configuration.py | 97 separator = '-' * 70 variable
|