OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 The Android Open Source Project | 2 * Copyright 2010 The Android Open Source Project |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkData.h" | 8 #include "SkData.h" |
9 #include "SkPDFFont.h" | 9 #include "SkPDFFont.h" |
10 #include "SkPDFTypes.h" | 10 #include "SkPDFTypes.h" |
11 #include "SkStream.h" | 11 #include "SkStream.h" |
12 #include "Test.h" | 12 #include "Test.h" |
13 | 13 |
14 static bool stream_equals(const SkDynamicMemoryWStream& stream, size_t offset, | 14 static bool stream_equals(const SkDynamicMemoryWStream& stream, size_t offset, |
15 const char* buffer, size_t len) { | 15 const char* buffer, size_t len) { |
16 SkAutoDataUnref data(stream.copyToData()); | 16 sk_sp<SkData> data(stream.copyToData()); |
17 if (offset + len > data->size()) { | 17 if (offset + len > data->size()) { |
18 return false; | 18 return false; |
19 } | 19 } |
20 if (len != strlen(buffer)) { | 20 if (len != strlen(buffer)) { |
21 return false; | 21 return false; |
22 } | 22 } |
23 return memcmp(data->bytes() + offset, buffer, len) == 0; | 23 return memcmp(data->bytes() + offset, buffer, len) == 0; |
24 } | 24 } |
25 | 25 |
26 void append_cmap_sections(const SkTDArray<SkUnichar>& glyphToUnicode, | 26 void append_cmap_sections(const SkTDArray<SkUnichar>& glyphToUnicode, |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 <004F> <006C>\n\ | 171 <004F> <006C>\n\ |
172 <0051> <006E>\n\ | 172 <0051> <006E>\n\ |
173 endbfchar\n\ | 173 endbfchar\n\ |
174 1 beginbfrange\n\ | 174 1 beginbfrange\n\ |
175 <0056> <0057> <0073>\n\ | 175 <0056> <0057> <0073>\n\ |
176 endbfrange\n"; | 176 endbfrange\n"; |
177 | 177 |
178 REPORTER_ASSERT(reporter, stream_equals(buffer2, 0, expectedResult2, | 178 REPORTER_ASSERT(reporter, stream_equals(buffer2, 0, expectedResult2, |
179 buffer2.getOffset())); | 179 buffer2.getOffset())); |
180 } | 180 } |
OLD | NEW |