HomeSort by relevance Sort by last modified time
    Searched refs:subset (Results 26 - 50 of 150) sorted by null

12 3 4 5 6

  /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 113 // Represents an element in a subset
151 typedef slist< DeterminizeElement<Arc> > Subset;
152 typedef map<Label, Subset*> LabelMap;
170 // typedef slist<Element> Subset;
178 // // Lookup state ID by subset (not depending of the element order).
180 // // ownership of the subset argument (so that it doesn't have to
182 // StateId FindState(Subset *subset);
184 // // Lookup subset by ID.
185 // const Subset *FindSubset(StateId id) const
530 Subset *subset = new Subset; local
536 const Subset *subset = state_table_->FindSubset(s); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FETile.cpp 63 SkBitmap subset; local
64 if (!source.extractSubset(&subset, srcRect))
74 SkAutoTUnref<SkShader> shader(SkShader::CreateBitmapShader(subset, SkShader::kRepeat_TileMode, SkShader::kRepeat_TileMode));
  /external/chromium_org/third_party/skia/src/core/
SkPixelRef.cpp 191 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
192 return this->onReadPixels(dst, subset);
195 bool SkPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
SkDevice.cpp 246 SkBitmap subset; local
247 if (!src.extractSubset(&subset, srcRect)) {
250 if (SkBitmap::kARGB_8888_Config != subset.config()) {
252 subset.copyTo(&subset, SkBitmap::kARGB_8888_Config);
256 SkCopyBitmapToConfig8888(bmpPixels, bitmap.rowBytes(), config8888, subset);
411 // the bitmap, we extract a subset.
  /external/skia/src/core/
SkPixelRef.cpp 191 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
192 return this->onReadPixels(dst, subset);
195 bool SkPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
SkDevice.cpp 246 SkBitmap subset; local
247 if (!src.extractSubset(&subset, srcRect)) {
250 if (SkBitmap::kARGB_8888_Config != subset.config()) {
252 subset.copyTo(&subset, SkBitmap::kARGB_8888_Config);
256 SkCopyBitmapToConfig8888(bmpPixels, bitmap.rowBytes(), config8888, subset);
407 // the bitmap, we extract a subset.
  /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/chromium_org/chrome/renderer/resources/extensions/
unload_event.js 9 // Implement a primitive subset of the Event interface as needed, since if this
  /external/chromium_org/third_party/icu/source/data/misc/
miscfiles.mk 19 # * To REPLACE the default list and only build a subset of files:
  /external/chromium_org/third_party/icu/source/data/sprep/
sprepfiles.mk 19 # * To REPLACE the default list and only build a subset of files:
spreplocal.mk 9 # * To REPLACE the default list and only build a subset of files:
  /external/e2fsprogs/util/
Makefile.in 40 sh gen-tarball subset
  /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/chromium_org/third_party/WebKit/Source/core/inspector/
generate-inspector-protocol-version 378 def is_subset(subset, superset, message):
379 for i in range(len(subset)):
380 if subset[i] not in superset:
381 sys.stderr.write("%s error: %s\n" % (message, subset[i]))
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 228 List<IToken> subset = new List<IToken>(count);
235 subset.Add(token);
238 return subset;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 261 List<IToken> subset = new List<IToken>(count);
268 subset.Add(token);
271 return subset;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 152 List subset = new ArrayList(); local
157 subset.add(t);
159 return subset;
  /external/skia/tools/
render_pdfs_main.cpp 88 SkBitmap subset; local
92 SkAssertResult(bitmap.extractSubset(&subset, rect));
93 bitmapToUse = &subset;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowPage.java 228 MediaSet subset = mediaSet.getSubMediaSet(i); local
229 int count = subset.getTotalMediaItemCount();
231 return findMediaItem(subset, index);
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFont.h 126 /** Subset the font based on usage set. Returns a SkPDFFont instance with
127 * subset.
128 * @param usage Glyph subset requested.
161 // Generate ToUnicode table according to glyph usage subset.
162 // If subset is NULL, all available glyph ids will be used.
163 void populateToUnicodeTable(const SkPDFGlyphSet* subset);
187 // this will be a subset if the font has more than 255 glyphs.
  /external/guava/guava-tests/test/com/google/common/collect/
ContiguousSetTest.java 148 ASSERT.that(set.subSet(1, 4)).hasContentsInOrder(1, 2, 3);
149 ASSERT.that(set.subSet(2, 4)).hasContentsInOrder(2, 3);
150 ASSERT.that(set.subSet(3, 4)).hasContentsInOrder(3);
151 ASSERT.that(set.subSet(3, 3)).isEmpty();
152 ASSERT.that(set.subSet(2, 3)).hasContentsInOrder(2);
153 ASSERT.that(set.subSet(1, 3)).hasContentsInOrder(1, 2);
154 ASSERT.that(set.subSet(1, 2)).hasContentsInOrder(1);
155 ASSERT.that(set.subSet(2, 2)).isEmpty();
156 ASSERT.that(set.subSet(Integer.MIN_VALUE, Integer.MAX_VALUE)).hasContentsInOrder(1, 2, 3);
157 ASSERT.that(set.subSet(1, true, 3, true)).hasContentsInOrder(1, 2, 3)
    [all...]
  /external/skia/src/pdf/
SkPDFFont.h 126 /** Subset the font based on usage set. Returns a SkPDFFont instance with
127 * subset.
128 * @param usage Glyph subset requested.
161 // Generate ToUnicode table according to glyph usage subset.
162 // If subset is NULL, all available glyph ids will be used.
163 void populateToUnicodeTable(const SkPDFGlyphSet* subset);
187 // this will be a subset if the font has more than 255 glyphs.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 233 """Load the internal subset if there might be one."""
237 subset = extractor.getSubset()
238 self.document.doctype.internalSubset = subset
583 # Takes a string for the doctype, subset string, and namespace attrs string.
636 subset = doctype.internalSubset or self._getDeclarations()
643 subset = ""
645 document = _FRAGMENT_BUILDER_TEMPLATE % (ident, subset, nsattrs)
657 """Re-create the internal subset from the DocumentType node.
870 subset = None variable in class:InternalSubsetExtractor
    [all...]

Completed in 2155 milliseconds

12 3 4 5 6