Searched refs:subset (Results 1 - 25 of 67) sorted by relevance

123

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DCharacter_SubsetTest.java44 Character.Subset subset = new Character.Subset(name) {
46 assertSame(name, subset.toString());
/external/skia/src/gpu/
H A DSkGrTexturePixelRef.cpp98 bool SkGrTexturePixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) { argument
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) { argument
158 if (NULL != subset) {
159 left = subset->fLeft;
160 width = subset
[all...]
/external/skia/tests/
H A DBitmapCopyTest.cpp312 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,
435 SkBitmap src, subset; local
[all...]
H A DToUnicode.cpp31 const SkPDFGlyphSet* subset,
37 SkPDFGlyphSet subset; local
74 subset.set(glyphsInSubset.begin(), glyphsInSubset.count());
75 append_cmap_sections(glyphToUnicode, &subset, &buffer);
/external/skia/src/pdf/
H A DSkPDFFontImpl.h34 bool populate(const SkPDFGlyphSet* subset);
46 const SkPDFGlyphSet* subset);
48 bool populate(const SkPDFGlyphSet* subset);
50 const SkTDArray<uint32_t>* subset);
H A DSkPDFFont.cpp467 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) {
466 append_cmap_sections(const SkTDArray<SkUnichar>& glyphToUnicode, const SkPDFGlyphSet* subset, SkDynamicMemoryWStream* cmap) argument
[all...]
/external/skia/samplecode/
H A DSampleWritePixels.cpp53 SkBitmap subset; local
54 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
59 canvas->writePixels(subset, 0, 0);
H A DSampleDrawBitmap.cpp48 SkBitmap subset; local
49 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
54 canvas->drawBitmap(subset, 0, 0);
/external/skia/src/core/
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, argument
14 if (NULL != subset) {
17 return this->extractSubset(&tmp, *subset) &&
H A DSkPixelRef.cpp148 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) { argument
149 return this->onReadPixels(dst, subset);
152 bool SkPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) { argument
H A DSkDevice.cpp201 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/
H A DTreeMultisetTest.java158 SortedSet<String> subset = elementSet.subSet("b", "f");
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");
184 ASSERT.that(subset).hasContentsInOrder("b", "c", "d", "e");
186 assertTrue(subset.removeAll(Arrays.asList("a", "c")));
188 ASSERT.that(subset)
[all...]
/external/skia/include/gpu/
H A DSkGrTexturePixelRef.h53 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset);
76 virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset);
/external/e2fsprogs/util/
H A Dgen-tarball.in27 subset)
29 list=subset
H A DMakefile.in40 sh gen-tarball subset
/external/openfst/src/include/fst/
H A Ddeterminize.h115 float delta; // Quantization delta for subset weights
317 Subset *subset = new Subset; local
318 subset->push_front(element);
319 return FindState(subset);
323 Subset *subset = subsets_[s]; local
325 for (typename Subset::iterator siter = subset->begin();
326 siter != subset->end();
337 // Finds the state corresponding to a subset. Only creates a new state
338 // if the subset is not found in the subset has
348 FindState(Subset *subset) argument
360 CreateState(Subset *subset) argument
370 ComputeDistance(const Subset *subset) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DGLUtils.cpp625 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();
624 deepCopyBitmapSubset(const SkBitmap& sourceBitmap, SkBitmap& subset, int leftOffset, int topOffset) argument
H A DGLUtils.h89 SkBitmap& subset, int left, int top);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Ddeterminize.h105 float delta; // Quantization delta for subset weights
246 Subset *subset = new Subset; local
247 subset->push_front(element);
248 return FindState(subset);
252 Subset *subset = subsets_[s]; local
254 for (typename Subset::iterator siter = subset->begin();
255 siter != subset->end();
264 // Finds the state corresponding to a subset. Only creates a new state
265 // if the subset is not found in the subset has
275 FindState(Subset *subset) argument
[all...]
/external/icu4c/data/misc/
H A Dmiscfiles.mk19 # * To REPLACE the default list and only build a subset of files:
/external/icu4c/data/sprep/
H A Dsprepfiles.mk19 # * To REPLACE the default list and only build a subset of files:
/external/skia/gm/
H A Dbitmapscroll.cpp111 void draw9(SkCanvas* canvas, int x, int y, SkIRect* subset, argument
128 subset, scrollX * xMult, scrollY * yMult);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DParseHelper.h91 TIntermTyped* constructStruct(TIntermNode*, TType*, int, TSourceLoc, bool subset);
92 TIntermTyped* constructBuiltIn(const TType*, TOperator, TIntermNode*, TSourceLoc, bool subset);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs228 List<IToken> subset = new List<IToken>(count);
235 subset.Add(token);
238 return subset;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs261 List<IToken> subset = new List<IToken>(count);
268 subset.Add(token);
271 return subset;

Completed in 682 milliseconds

123