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

1 2 3 4

  /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/skia/src/gpu/
SkGrTexturePixelRef.cpp 98 bool SkGrTexturePixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
101 if (NULL != subset) {
102 left = subset->fLeft;
103 width = subset->width();
104 top = subset->fTop;
105 height = subset->height();
155 bool SkGrRenderTargetPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
158 if (NULL != subset) {
159 left = subset->fLeft;
160 width = subset->width()
    [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 467 const SkPDFGlyphSet* subset,
481 bool inSubset = i < count && (subset == NULL || subset->has(i));
521 const SkPDFGlyphSet* subset) {
524 append_cmap_sections(glyphToUnicode, subset, &cmap);
539 const SkTDArray<uint32_t>& subset,
561 subset.begin(),
562 subset.count(),
657 SkPDFGlyphSet* subset = getGlyphSetForFont(font);
658 if (subset) {
    [all...]
  /external/skia/tests/
BitmapCopyTest.cpp 312 SkBitmap subset; local
316 if (bitmap.extractSubset(&subset, r)) {
317 REPORTER_ASSERT(reporter, subset.width() == 1);
318 REPORTER_ASSERT(reporter, subset.height() == 1);
320 subset.isVolatile() == true);
324 subset.copyTo(&copy, subset.config()));
329 SkAutoLockPixels alp0(subset);
332 bool hasCT = subset.getColorTable() != NULL;
337 if (bitmap.extractSubset(&subset, r))
435 SkBitmap src, subset; local
    [all...]
ToUnicode.cpp 31 const SkPDFGlyphSet* subset,
37 SkPDFGlyphSet subset; local
74 subset.set(glyphsInSubset.begin(), glyphsInSubset.count());
75 append_cmap_sections(glyphToUnicode, &subset, &buffer);
  /external/skia/include/gpu/
SkGrTexturePixelRef.h 53 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset);
76 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset);
  /external/skia/samplecode/
SampleWritePixels.cpp 53 SkBitmap subset; local
54 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
59 canvas->writePixels(subset, 0, 0);
SampleDrawBitmap.cpp 48 SkBitmap subset; local
49 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
54 canvas->drawBitmap(subset, 0, 0);
  /external/skia/src/core/
SkBitmap_scroll.cpp 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
14 if (NULL != subset) {
17 return this->extractSubset(&tmp, *subset) &&
SkPixelRef.cpp 148 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
149 return this->onReadPixels(dst, subset);
152 bool SkPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
SkDevice.cpp 201 SkBitmap subset; local
202 if (!src.extractSubset(&subset, srcRect)) {
205 if (SkBitmap::kARGB_8888_Config != subset.config()) {
207 subset.copyTo(&subset, SkBitmap::kARGB_8888_Config);
211 SkCopyBitmapToConfig8888(bmpPixels, bitmap.rowBytes(), config8888, subset);
304 SkBitmap tmp; // storage if we need a subset of bitmap
  /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/e2fsprogs/util/
gen-tarball.in 27 subset)
29 list=subset
Makefile.in 40 sh gen-tarball subset
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
determinize.h 105 float delta; // Quantization delta for subset weights
221 typedef slist<Element> Subset;
222 typedef map<Label, Subset*> LabelMap;
246 Subset *subset = new Subset; local
247 subset->push_front(element);
248 return FindState(subset);
252 Subset *subset = subsets_[s] local
    [all...]
  /external/openfst/src/include/fst/
determinize.h 115 float delta; // Quantization delta for subset weights
256 typedef slist<Element> Subset;
257 typedef map<Label, Subset*> LabelMap;
317 Subset *subset = new Subset; local
318 subset->push_front(element);
319 return FindState(subset);
323 Subset *subset = subsets_[s] local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbum.java 81 ArrayList<Path> subset = new ArrayList<Path>(paths.subList(start, end)); local
89 dataManager.mapMediaItems(subset, consumer, 0);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GLUtils.cpp 625 SkBitmap& subset, int leftOffset, int topOffset)
628 subset.lockPixels();
630 char* dstPixels = (char*) subset.getPixels();
631 if (!dstPixels || !srcPixels || !subset.lockPixelsAreWritable()) {
633 subset.lockPixelsAreWritable());
634 subset.unlockPixels();
639 int destRowSize = subset.rowBytes();
640 for (int i = 0; i < subset.height(); i++) {
646 subset.unlockPixels();
GLUtils.h 89 SkBitmap& subset, int left, int top);
  /external/icu4c/data/misc/
miscfiles.mk 19 # * To REPLACE the default list and only build a subset of files:
  /external/icu4c/data/sprep/
sprepfiles.mk 19 # * To REPLACE the default list and only build a subset of files:
  /external/skia/gm/
bitmapscroll.cpp 111 void draw9(SkCanvas* canvas, int x, int y, SkIRect* subset,
128 subset, scrollX * xMult, scrollY * yMult);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.h 91 TIntermTyped* constructStruct(TIntermNode*, TType*, int, TSourceLoc, bool subset);
92 TIntermTyped* constructBuiltIn(const TType*, TOperator, TIntermNode*, TSourceLoc, bool subset);
  /external/skia/include/core/
SkPixelRef.h 138 bool readPixels(SkBitmap* dst, const SkIRect* subset = NULL);

Completed in 969 milliseconds

1 2 3 4