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

1 2 3

  /libcore/luni/src/test/java/libcore/java/lang/
OldCharacterSubsetTest.java 25 Character.Subset subset1 = new Character.Subset("name") { };
27 assertFalse(subset1.equals(new Character.Subset("name") {}));
28 assertFalse(subset1.equals(new Character.Subset("name1") {}));
33 Character.Subset subset1 = new Character.Subset("name") {};
34 Character.Subset subset2 = new Character.Subset("name") {};
35 Character.Subset subset3 = new Character.Subset("name1") {}
    [all...]
  /external/sfntly/cpp/src/sample/subsetter/
subset_util.h 27 void Subset(const char* input_file_path, const char* output_file_path);
main.cc 37 subset_util.Subset(argv[1], argv[2]);
subset_util.cc 42 void SubsetUtil::Subset(const char *input_file_path,
81 font_builder.Attach(subsetter->Subset());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
Character_SubsetTest.java 25 * java.lang.Character.Subset#Character.Subset(java.lang.String)
31 new Character.Subset(null) {
39 * java.lang.Character.Subset#toString()
44 Character.Subset subset = new Character.Subset(name) { local
46 assertSame(name, subset.toString());
  /external/sfntly/cpp/src/sfntly/tools/subsetter/
glyph_table_subsetter.h 30 virtual bool Subset(Subsetter* subsetter,
table_subsetter.h 31 virtual bool Subset(Subsetter* subsetter, Font* font,
subsetter.h 55 virtual CALLER_ATTACH Font::Builder* Subset();
subsetter.cc 54 CALLER_ATTACH Font::Builder* Subsetter::Subset() {
74 bool handled = (*table_subsetter)->Subset(this, font_, font_builder);
glyph_table_subsetter.cc 35 bool GlyphTableSubsetter::Subset(Subsetter* subsetter,
50 throw RuntimeException("Font to subset is not valid.");
63 throw RuntimeException("Builder for subset is not valid.");
  /external/sfntly/cpp/src/sample/subtly/
subsetter.h 33 virtual CALLER_ATTACH sfntly::Font* Subset();
debug_main.cc 51 new_font.Attach(subsetter->Subset());
53 fprintf(stdout, "Cannot create subset.\n");
subsetter.cc 45 CALLER_ATTACH Font* Subsetter::Subset() {
54 "Couldn't create font info. No subset will be generated.\n");
subsetter_main.cc 69 new_font.Attach(subsetter->Subset());
71 fprintf(stdout, "Cannot create subset.\n");
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.h 68 CALLER_ATTACH Font* Subset(const IntegerSet& glyph_ids,
subsetter_impl.cc 296 // Initialize builder, returns false if glyph_id subset is not covered.
553 // (which can have >20K glyphs for CJK). It's safe to assume that the subset
602 // Bitmap tables do not cover the glyphs in our subset.
670 // We are not able to subset the font.
682 new_font.Attach(Subset(glyph_id_processed, glyph_table, loca_table));
744 Font* SubsetterImpl::Subset(const IntegerSet& glyph_ids, GlyphTable* glyf,
747 // as 0. These tags represents the TTF tables that we will embed in subset
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
IndicInputMethod.java 17 import java.lang.Character.Subset;
44 public void setCharacterSubsets(Subset[] subsets) {
  /external/skia/tests/
SpecialSurfaceTest.cpp 21 static const SkIRect& Subset(const SkSpecialSurface* surf) {
22 return surf->subset();
37 const SkIRect surfSubset = TestingSpecialSurfaceAccess::Subset(surf.get());
51 const SkIRect imgSubset = img->subset();
71 const SkIRect subset = SkIRect::MakeXYWH(kPad, kPad, kSmallerSize, kSmallerSize); local
73 sk_sp<SkSpecialSurface> surf(SkSpecialSurface::MakeFromBitmap(subset, bm));
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 587 /// exception specification is a subset (or equivalent) of the first function
592 const FunctionProtoType *Subset, SourceLocation SubLoc) {
608 Subset = ResolveExceptionSpec(SubLoc, Subset);
609 if (!Subset)
616 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
631 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
633 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType();
639 // It does not. If the subset contains everything, we've failed.
647 FunctionProtoType::NoexceptResult SubNR = Subset->getNoexceptSpec(Context)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 111 class Character$Subset;
  /art/runtime/base/
bit_vector_test.cc 170 TEST(BitVector, Subset) {
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
TransliteratorInputMethod.java 305 public void setCharacterSubsets(Character.Subset[] subsets) {
  /libcore/ojluni/src/main/java/java/lang/
Character.java 607 public static class Subset {
612 * Constructs a new {@code Subset} instance.
614 * @param name The name of this subset
617 protected Subset(String name) {
625 * Compares two {@code Subset} objects for equality.
647 * Returns the name of this subset.
665 public static final class UnicodeBlock extends Subset {
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1.go 8 // See also ``A Layman's Guide to a Subset of ASN.1, BER, and DER,''
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1.go 8 // See also ``A Layman's Guide to a Subset of ASN.1, BER, and DER,''

Completed in 800 milliseconds

1 2 3