Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 25 of 237) sorted by relevance

12345678910

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_symbolizer_test.cpp21 const char *rest; in TEST() local
23 rest = ExtractToken("a;b;c", ";", &token); in TEST()
25 EXPECT_STREQ("b;c", rest); in TEST()
28 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token); in TEST()
30 EXPECT_STREQ("bbb.ccc", rest); in TEST()
36 const char *rest = ExtractInt("123,456;789", ";,", &token); in TEST() local
38 EXPECT_STREQ("456;789", rest); in TEST()
43 const char *rest = ExtractUptr("123,456;789", ";,", &token); in TEST() local
45 EXPECT_STREQ("456;789", rest); in TEST()
50 const char *rest = in TEST() local
[all …]
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cpp118 const char *rest = trim; in ParseCommandOutput() local
120 rest = ExtractTokenUpToDelimiter(rest, " (in ", &symbol_name); in ParseCommandOutput()
121 if (rest[0] == '\0') { in ParseCommandOutput()
131 rest = ExtractTokenUpToDelimiter(rest, ") ", out_module); in ParseCommandOutput()
133 if (rest[0] == '(') { in ParseCommandOutput()
135 rest++; in ParseCommandOutput()
136 rest = ExtractTokenUpToDelimiter(rest, ":", out_file); in ParseCommandOutput()
138 rest = ExtractTokenUpToDelimiter(rest, ")", &extracted_line_number); in ParseCommandOutput()
142 } else if (rest[0] == '+') { in ParseCommandOutput()
143 rest += 2; in ParseCommandOutput()
[all …]
/llvm-project-15.0.7/mlir/utils/spirv/
H A Dgen_spirv_dialect.py821 rest = split[1].split(end, 1)
822 assert len(rest) == 2, \
825 return rest[0].rstrip(end), rest[1]
845 rest = split[1]
849 if rest[index:].startswith(end):
860 assert index < len(rest), \
863 return rest[:index], rest[index + len(end):]
891 category_args = rest.split('[', 1)[0]
901 args, rest = get_string_between(rest, ' let arguments = (ins', ');\n')
904 results, rest = get_string_between(rest, ' let results = (outs', ');\n')
[all …]
/llvm-project-15.0.7/pstl/test/support/
H A Dutils.h823 op(std::forward<Rest>(rest)...);
831 operator()(bool, Op op, Rest&&... rest)
833 op(std::forward<Rest>(rest)...);
951 Rest&&... rest)
1031 std::forward<Rest>(rest)...);
1038 Rest&&... rest)
1054 std::forward<Rest>(rest)...);
1068 std::forward<Rest>(rest)...);
1088 operator()(Rest&&... rest)
1105 operator()(Rest&&... rest)
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Ddiscrim-union.cpp27 either_impl<Ts...> rest; member
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {} in either_impl()
39 return decltype(rest)::index(t) + 1; in index()
44 rest.destroy(elem - 1); in destroy()
50 …template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{}))… in get()
51 return rest.get(select<N-1>{});
/llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp5-generic-lambda-1y.cpp20 auto NumParams = [](auto Self, auto h, auto ... rest) -> unsigned { in __anonad8db0ae0202() argument
21 return 1 + Self(Self, rest...); in __anonad8db0ae0202()
38 auto NumParams = [](auto Self, auto h, auto ... rest) { in __anonad8db0ae0402() argument
39 return 1 + Self(Self, rest...); in __anonad8db0ae0402()
H A Dp23.cpp8 void print(T first, Ts... rest) { in print() argument
10 print(rest...); in print()
/llvm-project-15.0.7/llvm/lib/Support/
H A Dregengine.inc337 const char *rest; /* start of rest of string */
390 /* could the rest match the rest? */
404 assert(dp == rest);
406 assert(sp == rest);
407 sp = rest;
415 /* could the rest match the rest? */
446 sp = rest;
454 /* could the rest match the rest? */
459 stp = rest - 1;
466 if (slow(m, sp, rest, ssub, esub) == rest)
[all …]
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dlisp.td6 // CHECK-NEXT: list<string> rest = [];
12 // CHECK-NEXT: list<string> rest = ["Dick", "Harry"];
25 list<string> rest = r;
H A Dcond-list.td7 list<int> rest = !cond(!empty(!tail(vals)): vals[0],
14 // CHECK-NEXT: list<int> rest = [1, 2, 3];
20 // CHECK-NEXT: list<int> rest = [4, 5, 6];
H A Dif.td135 // CHECK-NEXT: list<int> rest = [1, 2, 3];
142 // CHECK-NEXT: list<int> rest = [4, 5, 6];
149 list<int> rest = !if(!empty(!tail(vals)), vals[0], vals[1]);
/llvm-project-15.0.7/clang/utils/analyzer/
H A DSATest.py138 if len(args.rest) > 0:
139 if args.rest[0] != "--":
141 args.rest = args.rest[1:]
148 sys.exit(docker_run(args, ' '.join(args.rest)))
H A Dentrypoint.py11 settings, rest = parse_arguments()
19 sys.exit(test(rest))
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dstring_util.h29 inline std::ostream& StrCatImp(std::ostream& out, First&& f, Rest&&... rest) { in StrCatImp() argument
31 return StrCatImp(out, std::forward<Rest>(rest)...); in StrCatImp()
/llvm-project-15.0.7/flang/runtime/
H A Dedit-input.cpp474 int rest{exponent - 1000 * dig}; in EditCommonRealInput() local
475 dig = rest / 100; in EditCommonRealInput()
477 rest -= 100 * dig; in EditCommonRealInput()
478 dig = rest / 10; in EditCommonRealInput()
480 buffer[got++] = '0' + (rest - 10 * dig); in EditCommonRealInput()
484 int rest{exponent - 100 * dig}; in EditCommonRealInput() local
485 dig = rest / 10; in EditCommonRealInput()
487 buffer[got++] = '0' + (rest - 10 * dig); in EditCommonRealInput()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/google/
H A Dreadability-avoid-underscore-in-googletest-name.rst28 ignored when checking test names, but the rest of the rest of the test name is
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcompatibility.py24 unc_path, rest = os.path.splitunc(path)
25 unc_start, rest = os.path.splitunc(start)
/llvm-project-15.0.7/lldb/source/Utility/
H A DUUID.cpp103 llvm::StringRef rest = UUID::DecodeUUIDBytesFromString(p, bytes); in SetFromStringRef() local
107 if (!rest.empty() || bytes.empty()) in SetFromStringRef()
/llvm-project-15.0.7/lld/COFF/
H A DDriverUtils.cpp558 StringRef rest; in parseExport() local
559 std::tie(e.name, rest) = arg.split(","); in parseExport()
581 while (!rest.empty()) { in parseExport()
583 std::tie(tok, rest) = rest.split(","); in parseExport()
899 SmallVector<const char *, 16> rest; in parseDirectives() local
920 rest.push_back(HasNul ? tok.data() : saver().save(tok).data()); in parseDirectives()
928 result.args = optTable.ParseArgs(rest, missingIndex, missingCount); in parseDirectives()
/llvm-project-15.0.7/libcxx/benchmarks/
H A DCartesianBenchmarks.h63 Tuples... rest) { in makeBenchmarkImpl()
64 (internal::makeBenchmarkImpl<B>(A, std::tuple<U..., T>(), rest...), ...); in makeBenchmarkImpl()
/llvm-project-15.0.7/libcxx/src/support/solaris/
H A DREADME3 2-clause BSD license instead of the MIT/UUIC license that the rest of libc++ is
/llvm-project-15.0.7/flang/lib/Parser/
H A Dpreprocessor.cpp658 const TokenSequence &line, std::size_t *rest) { in GetDirectiveName() argument
662 *rest = tokens; in GetDirectiveName()
667 *rest = tokens; in GetDirectiveName()
670 *rest = line.SkipBlanks(j + 1); in GetDirectiveName()
684 std::size_t rest{0}; in SkipDisabledConditionalCode() local
685 std::string dn{GetDirectiveName(line, &rest)}; in SkipDisabledConditionalCode()
699 line, rest, line.SizeInTokens() - rest, prescanner)) { in SkipDisabledConditionalCode()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/hicpp/
H A DLICENSE.TXT4 All clang-tidy files are licensed under the same terms as the rest of the LLVM
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dbasic-block-sections-clusters-eh.ll5 ; The rest will be placed in a section along with the entry basic block.
12 ; The rest will be placed in a section along with the entry basic block.
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp527 llvm::StringRef lhs, rest; in GetRule() local
528 std::tie(lhs, rest) = getToken(unwind_rules); in GetRule()
533 llvm::StringRef::size_type pos = rest.find(": "); in GetRule()
537 return std::make_pair(lhs, rest); in GetRule()
541 pos = rest.rfind(' ', pos); in GetRule()
545 llvm::StringRef rhs = rest.take_front(pos); in GetRule()
546 unwind_rules = rest.drop_front(pos); in GetRule()

12345678910