/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
Character_SubsetTest.java | 25 * @tests java.lang.Character.Subset#Character.Subset(java.lang.String) 31 new Character.Subset(null) { 39 * @tests 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/src/gpu/ |
SkGrPixelRef.cpp | 51 const SkIRect* subset) { 63 if (subset != NULL) { 64 SkASSERT(SkIRect::MakeWH(texture->width(), texture->height()).contains(*subset)); 65 // Create a new texture that is the size of subset. 66 desc.fWidth = subset->width(); 67 desc.fHeight = subset->height(); 68 pointStorage.set(subset->x(), subset->y()); 146 SkPixelRef* SkGrPixelRef::deepCopy(SkBitmap::Config dstConfig, const SkIRect* subset) { 157 return copyToTexturePixelRef(fSurface->asTexture(), dstConfig, subset); [all...] |
/external/skia/src/gpu/ |
SkGrPixelRef.cpp | 51 const SkIRect* subset) { 63 if (subset != NULL) { 64 SkASSERT(SkIRect::MakeWH(texture->width(), texture->height()).contains(*subset)); 65 // Create a new texture that is the size of subset. 66 desc.fWidth = subset->width(); 67 desc.fHeight = subset->height(); 68 pointStorage.set(subset->x(), subset->y()); 146 SkPixelRef* SkGrPixelRef::deepCopy(SkBitmap::Config dstConfig, const SkIRect* subset) { 157 return copyToTexturePixelRef(fSurface->asTexture(), dstConfig, subset); [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/include/gpu/ |
SkGrPixelRef.h | 57 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset) SK_OVERRIDE; 58 virtual SkPixelRef* deepCopy(SkBitmap::Config dstConfig, const SkIRect* subset) SK_OVERRIDE;
|
/external/skia/include/gpu/ |
SkGrPixelRef.h | 57 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset) SK_OVERRIDE; 58 virtual SkPixelRef* deepCopy(SkBitmap::Config dstConfig, 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);
|
SkPDFFont.cpp | 476 const SkPDFGlyphSet* subset, 483 const SkPDFGlyphSet* subset, 506 (subset == NULL || subset->has(i + glyphOffset)); 546 const SkPDFGlyphSet* subset, 556 append_cmap_sections(glyphToUnicode, subset, &cmap, multiByteGlyphs, 573 const SkTDArray<uint32_t>& subset, 594 subset.begin(), 595 subset.count(), 613 sk_ignore_unused_variable(subset); [all...] |
/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);
|
SkPDFFont.cpp | 476 const SkPDFGlyphSet* subset, 483 const SkPDFGlyphSet* subset, 506 (subset == NULL || subset->has(i + glyphOffset)); 546 const SkPDFGlyphSet* subset, 556 append_cmap_sections(glyphToUnicode, subset, &cmap, multiByteGlyphs, 573 const SkTDArray<uint32_t>& subset, 594 subset.begin(), 595 subset.count(), 613 sk_ignore_unused_variable(subset); [all...] |
/external/skia/tests/ |
BitmapCopyTest.cpp | 288 SkBitmap subset; local 292 if (bitmap.extractSubset(&subset, r)) { 293 REPORTER_ASSERT(reporter, subset.width() == 1); 294 REPORTER_ASSERT(reporter, subset.height() == 1); 296 subset.alphaType() == bitmap.alphaType()); 298 subset.isVolatile() == true); 302 subset.copyTo(©, subset.config())); 307 SkAutoLockPixels alp0(subset); 310 bool hasCT = subset.getColorTable() != NULL 393 SkBitmap src, subset; local [all...] |
ToUnicode.cpp | 28 const SkPDFGlyphSet* subset, 37 SkPDFGlyphSet subset; local 76 subset.set(glyphsInSubset.begin(), glyphsInSubset.count()); 77 append_cmap_sections(glyphToUnicode, &subset, &buffer, true, 0, 0xFFFF); 99 append_cmap_sections(glyphToUnicode, &subset, &buffer, true, 8, 0x00FF); 117 append_cmap_sections(glyphToUnicode, &subset, &buffer, true, 0x00D, 0x00FE);
|
GpuBitmapCopyTest.cpp | 137 // subset, so that comparing the pixels of the subset will be meaningful. 144 // Extract a subset. If this succeeds we will test copying the subset. 145 SkBitmap subset; local 146 const bool extracted = src.extractSubset(&subset, subsetRect); 172 // Test copying the subset bitmap, using both copyTo and deepCopyTo. 175 success = subset.copyTo(&subsetCopy, gPairs[j].fConfig); 178 TestIndividualCopy(reporter, gPairs[j].fConfig, success, subset, subsetCopy, 183 success = subset.deepCopyTo(&subsetCopy, gPairs[j].fConfig) [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/skia/tools/ |
CopyTilesRenderer.cpp | 54 SkIRect subset; local 57 subset.set(tileX, tileY, tileX + this->getTileWidth(), 60 baseBitmap.extractSubset(&dst, subset); 70 dst.pixelRef()->readPixels(©, &subset);
|
/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/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/guava/guava-tests/test/com/google/common/collect/ |
TreeMultisetTest.java | 144 ASSERT.that(elementSet.subSet("a", "c")).hasContentsInOrder("a", "b"); 158 SortedSet<String> subset = elementSet.subSet("b", "f"); local 159 ASSERT.that(subset).hasContentsInOrder("b", "c", "d", "e"); 161 assertTrue(subset.remove("c")); 163 ASSERT.that(subset).hasContentsInOrder("b", "d", "e"); 166 assertFalse(subset.remove("a")); 168 ASSERT.that(subset).hasContentsInOrder("b", "d", "e"); 183 SortedSet<String> subset = elementSet.subSet("b", "f") local 203 SortedSet<String> subset = elementSet.subSet("b", "f"); local 223 SortedSet<String> subset = elementSet.subSet("b", "f"); local [all...] |
/external/ceres-solver/internal/ceres/ |
parameter_block_test.cc | 57 SubsetParameterization subset(3, indices); 58 parameter_block.SetParameterization(&subset); 61 parameter_block.SetParameterization(&subset);
|
/external/chromium_org/third_party/skia/src/effects/ |
SkTileImageFilter.cpp | 39 SkBitmap subset; local 44 } else if (!source.extractSubset(&subset, srcIRect)) { 56 SkAutoTUnref<SkShader> shader(SkShader::CreateBitmapShader(subset,
|
/external/skia/src/effects/ |
SkTileImageFilter.cpp | 39 SkBitmap subset; local 44 } else if (!source.extractSubset(&subset, srcIRect)) { 56 SkAutoTUnref<SkShader> shader(SkShader::CreateBitmapShader(subset,
|
/external/chromium_org/cc/test/ |
skia_common.h | 32 const SkIRect* subset) OVERRIDE; 49 const SkIRect* subset) OVERRIDE;
|
skia_common.cc | 28 const SkIRect* subset) { 56 const SkIRect* subset) {
|
/external/e2fsprogs/util/ |
gen-tarball.in | 27 subset) 29 list=subset
|