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

1 2 3

  /external/skia/src/gpu/
SkGrTexturePixelRef.cpp 34 bool SkGrTexturePixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
37 if (NULL != subset) {
38 left = subset->fLeft;
39 width = subset->width();
40 top = subset->fTop;
41 height = subset->height();
78 bool SkGrRenderTargetPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
81 if (NULL != subset) {
82 left = subset->fLeft;
83 width = subset->width()
    [all...]
  /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/include/gpu/
SkGrTexturePixelRef.h 43 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset);
69 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset);
  /external/skia/src/core/
SkBitmap_scroll.cpp 4 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
7 if (NULL != subset) {
10 return this->extractSubset(&tmp, *subset) &&
SkPixelRef.cpp 87 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
88 return this->onReadPixels(dst, subset);
91 bool SkPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
SkDevice.cpp 123 SkBitmap subset; local
124 if (!src.extractSubset(&subset, bounds)) {
129 if (!subset.copyTo(&tmp, SkBitmap::kARGB_8888_Config)) {
170 SkBitmap tmp; // storage if we need a subset of bitmap
  /external/skia/tests/
BitmapCopyTest.cpp 304 SkBitmap subset; local
307 if (src.extractSubset(&subset, r)) {
308 REPORTER_ASSERT(reporter, subset.width() == 1);
309 REPORTER_ASSERT(reporter, subset.height() == 1);
313 subset.copyTo(&copy, subset.config()));
318 SkAutoLockPixels alp0(subset);
321 bool hasCT = subset.getColorTable() != NULL;
405 // the bitmap is an extracted subset.
419 SkBitmap src, subset; local
    [all...]
  /external/e2fsprogs/util/
gen-tarball.in 27 subset)
29 list=subset
Makefile.in 40 sh gen-tarball subset
  /external/webkit/Source/WebKit/android/
RenderSkinCombo.cpp 91 // arrow and not the border. We do this by drawing the relevant subset
142 SkIRect subset; local
143 subset.set(width - arrowWidth[res], 0, width, height);
144 bitmaps[kNormal][FullAsset].extractSubset(&bitmaps[kNormal][NoBorder], subset);
145 bitmaps[kDisabled][FullAsset].extractSubset(&bitmaps[kDisabled][NoBorder], 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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbum.java 80 ArrayList<Path> subset = new ArrayList<Path>(paths.subList(start, end)); local
87 dataManager.mapMediaItems(subset, consumer, 0);
  /external/skia/include/core/
SkPixelRef.h 117 bool readPixels(SkBitmap* dst, const SkIRect* subset = NULL);
SkBitmap.h 223 (this may happen if the bitmap is an extracted subset of another), then
374 /** Scroll (a subset of) the contents of this bitmap by dx/dy. If there are
378 @param subset The subset of the bitmap to scroll/move. To scroll the
393 bool scrollRect(const SkIRect* subset, int dx, int dy,
454 pixel memory, and just point into a subset of it. However, if the config
456 the dst bitmap. If the subset rectangle, intersected with the bitmap's
459 @param dst The bitmap that will be set to a subset of this bitmap
460 @param subset The rectangle of pixels in this bitmap that dst will
462 @return true if the subset copy was successfully made
    [all...]
  /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/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/antlr/src/org/antlr/runtime/
BufferedTokenStream.java 152 List subset = new ArrayList(); local
157 subset.add(t);
159 return subset;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowPage.java 213 MediaSet subset = mediaSet.getSubMediaSet(i); local
214 int count = subset.getTotalMediaItemCount();
216 return findMediaItem(subset, index);
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_view.cc 156 SkIRect subset; local
157 subset.set(0, 0, ps.width(), ps.height());
  /external/skia/src/pdf/
SkPDFShader.cpp 580 SkIRect subset = SkIRect::MakeXYWH(0, 0, 1, height); local
583 SkAssertResult(image->extractSubset(&left, subset));
600 subset.offset(width - 1, 0);
601 SkAssertResult(image->extractSubset(&right, subset));
618 SkIRect subset = SkIRect::MakeXYWH(0, 0, width, 1); local
621 SkAssertResult(image->extractSubset(&top, subset));
638 subset.offset(0, height - 1);
639 SkAssertResult(image->extractSubset(&bottom, subset));
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageSkia.cpp 156 // Draws the given bitmap to the given canvas. The subset of the source bitmap
159 // the whole image, not the subset). See shouldResampleBitmap for more.
168 // First get the subset we need. This is efficient and does not copy pixels.
169 SkBitmap subset; local
170 bitmap.extractSubset(&subset, srcIRect);
174 // Whether we're doing a subset or using the full source image.
242 SkBitmap resampled = skia::ImageOperations::Resize(subset,
284 // Note: for serialization, we will want to subset the bitmap first so
  /external/libxml2/include/libxml/
xmlregexp.h 179 xmlExpNodePtr subset,
  /device/moto/wingray/
BoardConfig.mk 34 # Use a smaller subset of system fonts to keep image size lower
  /external/opencv/ml/src/
mltree.cpp 868 split->subset[i] = 0;
1439 const int* subset = node->split->subset; local
2454 const int* subset = split->subset; local
    [all...]

Completed in 1316 milliseconds

1 2 3