HomeSort by relevance Sort by last modified time
    Searched refs:subset (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/fonttools/Tools/
pyftsubset 4 from fontTools import subset namespace
6 subset.main(sys.argv[1:])
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
Character_SubsetTest.java 25 * java.lang.Character.Subset#Character.Subset(java.lang.String)
31 new Character.Subset(null) {
39 * java.lang.Character.Subset#toString()
44 Character.Subset subset = new Character.Subset(name) { local
46 assertSame(name, subset.toString());
  /external/chromium_org/third_party/skia/gm/
extractbitmap.cpp 54 // Do some subset drawing. This will test that an SkGPipe properly
57 SkBitmap subset; variable
58 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
59 canvas->drawBitmap(subset, 0, 0);
61 bitmap.extractSubset(&subset, SkIRect::MakeWH(x, y));
62 canvas->drawBitmap(subset, SkIntToScalar(x), SkIntToScalar(y));
63 // Draw a subset which has the same height and pixelref offset but a
65 bitmap.extractSubset(&subset, SkIRect::MakeWH(x, bitmap.height()));
68 canvas->drawBitmap(subset, 0, 0);
71 bitmap.extractSubset(&subset, SkIRect::MakeWH(bitmap.height(), y))
    [all...]
  /external/skia/gm/
extractbitmap.cpp 54 // Do some subset drawing. This will test that an SkGPipe properly
57 SkBitmap subset; variable
58 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
59 canvas->drawBitmap(subset, 0, 0);
61 bitmap.extractSubset(&subset, SkIRect::MakeWH(x, y));
62 canvas->drawBitmap(subset, SkIntToScalar(x), SkIntToScalar(y));
63 // Draw a subset which has the same height and pixelref offset but a
65 bitmap.extractSubset(&subset, SkIRect::MakeWH(x, bitmap.height()));
68 canvas->drawBitmap(subset, 0, 0);
71 bitmap.extractSubset(&subset, SkIRect::MakeWH(bitmap.height(), y))
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 55 const SkIRect* subset) {
67 if (subset != NULL) {
68 SkASSERT(SkIRect::MakeWH(texture->width(), texture->height()).contains(*subset));
69 // Create a new texture that is the size of subset.
70 desc.fWidth = subset->width();
71 desc.fHeight = subset->height();
72 pointStorage.set(subset->x(), subset->y());
148 SkPixelRef* SkGrPixelRef::deepCopy(SkColorType dstCT, const SkIRect* subset) {
159 return copyToTexturePixelRef(fSurface->asTexture(), dstCT, subset);
    [all...]
  /external/skia/src/gpu/
SkGrPixelRef.cpp 55 const SkIRect* subset) {
67 if (subset != NULL) {
68 SkASSERT(SkIRect::MakeWH(texture->width(), texture->height()).contains(*subset));
69 // Create a new texture that is the size of subset.
70 desc.fWidth = subset->width();
71 desc.fHeight = subset->height();
72 pointStorage.set(subset->x(), subset->y());
148 SkPixelRef* SkGrPixelRef::deepCopy(SkColorType dstCT, const SkIRect* subset) {
159 return copyToTexturePixelRef(fSurface->asTexture(), dstCT, subset);
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
SkGrPixelRef.h 58 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset) SK_OVERRIDE;
59 virtual SkPixelRef* deepCopy(SkColorType, const SkIRect* subset) SK_OVERRIDE;
  /external/skia/include/gpu/
SkGrPixelRef.h 58 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset) SK_OVERRIDE;
59 virtual SkPixelRef* deepCopy(SkColorType, const SkIRect* subset) SK_OVERRIDE;
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFontImpl.h 34 bool populate(const SkPDFGlyphSet* subset);
46 const SkPDFGlyphSet* subset);
48 bool populate(const SkPDFGlyphSet* subset);
50 const SkTDArray<uint32_t>* subset);
  /external/skia/src/pdf/
SkPDFFontImpl.h 34 bool populate(const SkPDFGlyphSet* subset);
46 const SkPDFGlyphSet* subset);
48 bool populate(const SkPDFGlyphSet* subset);
50 const SkTDArray<uint32_t>* subset);
  /external/chromium_org/third_party/skia/src/image/
SkImage.cpp 54 bool SkImage::readPixels(SkBitmap* bitmap, const SkIRect* subset) const {
70 if (subset && !bounds.intersect(*subset)) {
105 bool SkImage_Base::onReadPixels(SkBitmap* bitmap, const SkIRect& subset) const {
115 const SkImageInfo info = SkImageInfo::MakeN32Premul(subset.width(), subset.height());
124 srcR.set(subset);
SkImage_Base.h 22 virtual bool onReadPixels(SkBitmap*, const SkIRect& subset) const;
  /external/skia/src/image/
SkImage.cpp 54 bool SkImage::readPixels(SkBitmap* bitmap, const SkIRect* subset) const {
70 if (subset && !bounds.intersect(*subset)) {
105 bool SkImage_Base::onReadPixels(SkBitmap* bitmap, const SkIRect& subset) const {
115 const SkImageInfo info = SkImageInfo::MakeN32Premul(subset.width(), subset.height());
124 srcR.set(subset);
SkImage_Base.h 22 virtual bool onReadPixels(SkBitmap*, const SkIRect& subset) const;
  /external/harfbuzz_ng/test/shaping/
record-test.sh 19 if ! test -s "$dir/font.ttf.subset"; then
20 echo "Subsetter didn't produce nonempty subset font in $dir/font.ttf.subset" >&2
24 # Verify that subset font produces same glyphs!
25 glyphs_subset=`echo "$text" | $hb_shape "$dir/font.ttf.subset"`
28 echo "Subset font produced different glyphs!" >&2
32 echo "$text" | $hb_view "$dir/font.ttf.subset" --output-format=png --output-file="$dir/subset.png"
33 if ! cmp "$dir/orig.png" "$dir/subset.png"; then
41 rm -f "$dir/subset.png
    [all...]
  /external/chromium_org/third_party/skia/tests/
BitmapCopyTest.cpp 222 SkBitmap subset; local
224 // Extract a subset which has the same width as the original. This
229 if (kUnknown_SkColorType != bitmap.colorType() && bitmap.extractSubset(&subset, r)) {
230 REPORTER_ASSERT(reporter, subset.width() == W);
231 REPORTER_ASSERT(reporter, subset.height() == 2);
232 REPORTER_ASSERT(reporter, subset.alphaType() == bitmap.alphaType());
233 REPORTER_ASSERT(reporter, subset.isVolatile() == true);
235 // Test copying an extracted subset.
238 bool success = subset.copyTo(&copy, gPairs[j].fColorType);
246 // When performing a copy of an extracted subset, the gen id shoul
384 SkBitmap src, subset; local
    [all...]
  /external/skia/tests/
BitmapCopyTest.cpp 222 SkBitmap subset; local
224 // Extract a subset which has the same width as the original. This
229 if (kUnknown_SkColorType != bitmap.colorType() && bitmap.extractSubset(&subset, r)) {
230 REPORTER_ASSERT(reporter, subset.width() == W);
231 REPORTER_ASSERT(reporter, subset.height() == 2);
232 REPORTER_ASSERT(reporter, subset.alphaType() == bitmap.alphaType());
233 REPORTER_ASSERT(reporter, subset.isVolatile() == true);
235 // Test copying an extracted subset.
238 bool success = subset.copyTo(&copy, gPairs[j].fColorType);
246 // When performing a copy of an extracted subset, the gen id shoul
384 SkBitmap src, subset; local
    [all...]
  /external/chromium_org/third_party/mesa/src/doxygen/
Makefile 4 all: full subset
25 SUBSET = \
29 subset: $(SUBSET:.doxy=.tag)
30 $(foreach FILE,$(SUBSET),doxygen $(FILE);)
33 -rm -rf $(FULL:.doxy=) $(SUBSET:.doxy=)
  /external/mesa3d/doxygen/
Makefile 4 all: full subset
25 SUBSET = \
29 subset: $(SUBSET:.doxy=.tag)
30 $(foreach FILE,$(SUBSET),doxygen $(FILE);)
33 -rm -rf $(FULL:.doxy=) $(SUBSET:.doxy=)
  /external/chromium_org/third_party/skia/tools/
CopyTilesRenderer.cpp 61 SkIRect subset; local
64 subset.set(tileX, tileY, tileX + this->getTileWidth(),
67 baseBitmap.extractSubset(&dst, subset);
81 dst.pixelRef()->readPixels(&copy, &subset);
  /external/skia/tools/
CopyTilesRenderer.cpp 61 SkIRect subset; local
64 subset.set(tileX, tileY, tileX + this->getTileWidth(),
67 baseBitmap.extractSubset(&dst, subset);
81 dst.pixelRef()->readPixels(&copy, &subset);
  /external/chromium_org/third_party/skia/samplecode/
SampleWritePixels.cpp 52 SkBitmap subset; local
53 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
58 canvas->writePixels(subset, 0, 0);
  /external/chromium_org/third_party/skia/src/core/
SkBitmap_scroll.cpp 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
18 if (NULL != subset) {
21 return this->extractSubset(&tmp, *subset) &&
  /external/skia/samplecode/
SampleWritePixels.cpp 52 SkBitmap subset; local
53 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
58 canvas->writePixels(subset, 0, 0);
  /external/skia/src/core/
SkBitmap_scroll.cpp 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
18 if (NULL != subset) {
21 return this->extractSubset(&tmp, *subset) &&

Completed in 1305 milliseconds

1 2 3 4 5 6 7 8