Lines Matching defs:pattern
56 // empty pattern
67 // empty view and empty pattern
78 // pattern found at the beginning
82 int pattern[] = {1, 2};
83 std::ranges::split_view sv{range, pattern};
91 // pattern found in the middle
95 int pattern[] = {2, 3};
96 std::ranges::split_view sv{range, pattern};
104 // pattern found at the end
108 int pattern[] = {2, 3};
109 std::ranges::split_view sv{range, pattern};
117 // pattern not found
121 int pattern[] = {1, 3};
122 std::ranges::split_view sv{range, pattern};