• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:include +full:- +full:cat

2 // Use of this source code is governed by a BSD-style license that can be
5 #include "components/zucchini/reloc_win32.h"
7 #include <stdint.h>
9 #include <algorithm>
10 #include <memory>
11 #include <string>
12 #include <utility>
13 #include <vector>
15 #include "base/numerics/safe_conversions.h"
16 #include "base/test/gtest_util.h"
17 #include "components/zucchini/address_translator.h"
18 #include "components/zucchini/algorithm.h"
19 #include "components/zucchini/image_utils.h"
20 #include "components/zucchini/test_utils.h"
21 #include "testing/gtest/include/gtest/gtest.h"
143 EXPECT_TRUE(Initialize(image_raw, {kBlock0, kBlockEnd - kBlock0})); in TEST_F()
148 EXPECT_EQ(Cat(Cat(exp0, exp1), exp2), EmitAll(kBlock0, kBlockEnd)); in TEST_F()
149 EXPECT_EQ(Cat(Cat(exp0, exp1), exp2), EmitAll(0, image_size)); in TEST_F()
170 EXPECT_EQ(Cat(Cat(exp0, exp1), exp2), EmitAll(kBlock0 - 5U, kBlockEnd)); in TEST_F()
171 EXPECT_EQ(Cat(Cat(exp0, exp1), exp2), EmitAll(kBlock0 + 6U, kBlockEnd)); in TEST_F()
172 EXPECT_EQ(Cat(Cat(exp0, exp1), Sub(exp2, 0, 5)), in TEST_F()
174 EXPECT_EQ(Cat(Sub(exp0, 2, 4), Sub(exp1, 0, 1)), in TEST_F()
176 EXPECT_EQ(Cat(Sub(exp0, 2, 4), Sub(exp1, 0, 1)), in TEST_F()
178 EXPECT_EQ(Cat(Sub(exp0, 2, 4), Sub(exp1, 0, 1)), in TEST_F()
181 EXPECT_EQ(Cat(Sub(exp1, 1, 2), exp2), EmitAll(kBlock1 + 10U, kBlockEnd + 5)); in TEST_F()
214 offset_t offset_bound = image_size - kVAWidthX86 + 1; in TEST_F()
222 for (absl::optional<Reference> ref = reader->GetNext(); ref.has_value(); in TEST_F()
223 ref = reader->GetNext()) { in TEST_F()
236 writer->PutNext({0x608, 0x1F83}); in TEST_F()
243 writer->PutNext({0x61C, 0x2950}); in TEST_F()