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

12 3 4 5 6 7 8 91011>>

  /external/sfntly/cpp/src/sfntly/table/bitmap/
small_glyph_metrics.cc 51 * SmallGlyphMetrics::Builder class
53 SmallGlyphMetrics::Builder::Builder(WritableFontData* data)
54 : GlyphMetrics::Builder(data) {
57 SmallGlyphMetrics::Builder::Builder(ReadableFontData* data)
58 : GlyphMetrics::Builder(data) {
61 SmallGlyphMetrics::Builder::~Builder() {
64 int32_t SmallGlyphMetrics::Builder::Height()
    [all...]
big_glyph_metrics.cc 63 * BigGlyphMetrics::Builder class
65 BigGlyphMetrics::Builder::Builder(WritableFontData* data)
66 : GlyphMetrics::Builder(data) {
69 BigGlyphMetrics::Builder::Builder(ReadableFontData* data)
70 : GlyphMetrics::Builder(data) {
73 BigGlyphMetrics::Builder::~Builder() {
76 int32_t BigGlyphMetrics::Builder::Height()
    [all...]
ebsc_table.cc 65 * EbscTable::Builder class
67 EbscTable::Builder::~Builder() {
70 CALLER_ATTACH EbscTable::Builder* EbscTable::Builder::CreateBuilder(
72 EbscTableBuilderPtr builder = new EbscTable::Builder(header, data); local
73 return builder.Detach();
76 EbscTable::Builder::Builder(Header* header, WritableFontData* data
    [all...]
index_sub_table_format2.h 28 class Builder : public IndexSubTable::Builder,
29 public RefCounted<Builder> {
32 : public RefIterator<BitmapGlyphInfo, Builder, IndexSubTable::Builder> {
34 explicit BitmapGlyphInfoIterator(Builder* container);
44 virtual ~Builder();
58 BigGlyphMetrics::Builder* BigMetrics();
60 static CALLER_ATTACH Builder* CreateBuilder();
61 static CALLER_ATTACH Builder* CreateBuilder(ReadableFontData* data
    [all...]
index_sub_table_format1.cc 71 * IndexSubTableFormat1::Builder class
73 IndexSubTableFormat1::Builder::~Builder() {
76 int32_t IndexSubTableFormat1::Builder::NumGlyphs() {
80 int32_t IndexSubTableFormat1::Builder::GlyphLength(int32_t glyph_id) {
89 int32_t IndexSubTableFormat1::Builder::GlyphStartOffset(int32_t glyph_id) {
97 CALLER_ATTACH IndexSubTableFormat1::Builder::BitmapGlyphInfoIterator*
98 IndexSubTableFormat1::Builder::GetIterator() {
99 Ptr<IndexSubTableFormat1::Builder::BitmapGlyphInfoIterator> it =
100 new IndexSubTableFormat1::Builder::BitmapGlyphInfoIterator(this)
    [all...]
index_sub_table_format2.cc 69 * IndexSubTableFormat2::Builder class
71 IndexSubTableFormat2::Builder::~Builder() {
74 int32_t IndexSubTableFormat2::Builder::NumGlyphs() {
78 int32_t IndexSubTableFormat2::Builder::GlyphStartOffset(int32_t glyph_id) {
86 int32_t IndexSubTableFormat2::Builder::GlyphLength(int32_t glyph_id) {
94 CALLER_ATTACH IndexSubTableFormat2::Builder::BitmapGlyphInfoIterator*
95 IndexSubTableFormat2::Builder::GetIterator() {
96 Ptr<IndexSubTableFormat2::Builder::BitmapGlyphInfoIterator> it =
97 new IndexSubTableFormat2::Builder::BitmapGlyphInfoIterator(this)
    [all...]
index_sub_table_format3.cc 72 * IndexSubTableFormat3::Builder class
74 IndexSubTableFormat3::Builder::~Builder() {
77 int32_t IndexSubTableFormat3::Builder::NumGlyphs() {
81 int32_t IndexSubTableFormat3::Builder::GlyphStartOffset(int32_t glyph_id) {
89 int32_t IndexSubTableFormat3::Builder::GlyphLength(int32_t glyph_id) {
98 CALLER_ATTACH IndexSubTableFormat3::Builder::BitmapGlyphInfoIterator*
99 IndexSubTableFormat3::Builder::GetIterator() {
100 Ptr<IndexSubTableFormat3::Builder::BitmapGlyphInfoIterator> it =
101 new IndexSubTableFormat3::Builder::BitmapGlyphInfoIterator(this)
    [all...]
index_sub_table_format1.h 28 class Builder : public IndexSubTable::Builder,
29 public RefCounted<Builder> {
32 : public RefIterator<BitmapGlyphInfo, Builder, IndexSubTable::Builder> {
34 explicit BitmapGlyphInfoIterator(Builder* container);
44 virtual ~Builder();
60 static CALLER_ATTACH Builder* CreateBuilder();
61 static CALLER_ATTACH Builder* CreateBuilder(ReadableFontData* data,
65 static CALLER_ATTACH Builder* CreateBuilder(WritableFontData* data
    [all...]
index_sub_table_format3.h 27 class Builder : public IndexSubTable::Builder,
28 public RefCounted<Builder> {
31 : public RefIterator<BitmapGlyphInfo, Builder, IndexSubTable::Builder> {
33 explicit BitmapGlyphInfoIterator(Builder* container);
43 virtual ~Builder();
57 static CALLER_ATTACH Builder* CreateBuilder();
58 static CALLER_ATTACH Builder* CreateBuilder(ReadableFontData* data,
62 static CALLER_ATTACH Builder* CreateBuilder(WritableFontData* data
    [all...]
index_sub_table.cc 59 IndexSubTableBuilderPtr builder; local
60 builder.Attach(IndexSubTable::Builder::CreateBuilder(
62 return down_cast<IndexSubTable*>(builder->Build());
97 * IndexSubTable::Builder class
99 IndexSubTable::Builder::~Builder() {
102 void IndexSubTable::Builder::Revert() {
107 CALLER_ATTACH BitmapGlyphInfo* IndexSubTable::Builder::GlyphInfo(
118 int32_t IndexSubTable::Builder::GlyphOffset(int32_t glyph_id)
    [all...]
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 52 IRBuilder<> Builder(BB);
53 AllocaInst *Var1 = Builder.CreateAlloca(Builder.getInt8Ty());
54 AllocaInst *Var2 = Builder.CreateAlloca(Builder.getInt32Ty());
55 AllocaInst *Var3 = Builder.CreateAlloca(Builder.getInt8Ty(),
56 Builder.getInt32(123));
58 CallInst *Start1 = Builder.CreateLifetimeStart(Var1);
59 CallInst *Start2 = Builder.CreateLifetimeStart(Var2)
    [all...]
  /external/sfntly/cpp/src/sfntly/table/
subtable.h 30 class Builder : public FontDataTable::Builder {
32 virtual ~Builder();
37 Builder(int32_t data_size);
38 Builder(WritableFontData* data, ReadableFontData* master_data);
39 Builder(ReadableFontData* data, ReadableFontData* master_data);
40 explicit Builder(WritableFontData* data);
41 explicit Builder(ReadableFontData* data);
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/repeat/
ParentComponent.java 29 SubcomponentWithRepeatedModule.Builder newChildComponentBuilder();
33 @Component.Builder
34 interface Builder {
35 Builder repeatedModule(RepeatedModule repeatedModule);
SubcomponentWithoutRepeatedModule.java 22 SubcomponentWithRepeatedModule.Builder newGrandchildBuilder();
SubcomponentWithRepeatedModule.java 31 @Subcomponent.Builder
32 interface Builder {
33 Builder repeatedModule(RepeatedModule repeatedModule);
  /developers/build/prebuilts/gradle/WearNotifications/Application/src/main/java/com/example/android/wearable/wear/wearnotifications/
GlobalNotificationBuilder.java 21 * We use a Singleton for a global copy of the NotificationCompat.Builder to update active
27 * to get *ALL* the information and pass it to the builder. We get all the information from a Mock
31 * you to store a reference to the original builder. The benefit is you only need the new/updated
37 * to update, retain the Builder as option 2 outlines.
39 * IMPORTANT NOTE 2: If the global Notification Builder is lost because the process is killed, you
40 * should have a way to recreate the Notification Builder from a persistent state. (We do this as
45 private static NotificationCompat.Builder sGlobalNotificationCompatBuilder = null;
48 * Empty constructor - We don't initialize builder because we rely on a null state to let us
53 public static void setNotificationCompatBuilderInstance (NotificationCompat.Builder builder) {
    [all...]
  /developers/build/prebuilts/gradle/WearNotifications/Wearable/src/main/java/com/example/android/wearable/wear/wearnotifications/
GlobalNotificationBuilder.java 21 * We use a Singleton for a global copy of the NotificationCompat.Builder to update active
27 * to get *ALL* the information and pass it to the builder. We get all the information from a Mock
31 * you to store a reference to the original builder. The benefit is you only need the new/updated
37 * to update, retain the Builder as option 2 outlines.
39 * IMPORTANT NOTE 2: If the global Notification Builder is lost because the process is killed, you
40 * should have a way to recreate the Notification Builder from a persistent state. (We do this as
45 private static NotificationCompat.Builder sGlobalNotificationCompatBuilder = null;
48 * Empty constructor - We don't initialize builder because we rely on a null state to let us
53 public static void setNotificationCompatBuilderInstance (NotificationCompat.Builder builder) {
    [all...]
  /developers/samples/android/wearable/wear/WearNotifications/Application/src/main/java/com/example/android/wearable/wear/wearnotifications/
GlobalNotificationBuilder.java 21 * We use a Singleton for a global copy of the NotificationCompat.Builder to update active
27 * to get *ALL* the information and pass it to the builder. We get all the information from a Mock
31 * you to store a reference to the original builder. The benefit is you only need the new/updated
37 * to update, retain the Builder as option 2 outlines.
39 * IMPORTANT NOTE 2: If the global Notification Builder is lost because the process is killed, you
40 * should have a way to recreate the Notification Builder from a persistent state. (We do this as
45 private static NotificationCompat.Builder sGlobalNotificationCompatBuilder = null;
48 * Empty constructor - We don't initialize builder because we rely on a null state to let us
53 public static void setNotificationCompatBuilderInstance (NotificationCompat.Builder builder) {
    [all...]
  /developers/samples/android/wearable/wear/WearNotifications/Wearable/src/main/java/com/example/android/wearable/wear/wearnotifications/
GlobalNotificationBuilder.java 21 * We use a Singleton for a global copy of the NotificationCompat.Builder to update active
27 * to get *ALL* the information and pass it to the builder. We get all the information from a Mock
31 * you to store a reference to the original builder. The benefit is you only need the new/updated
37 * to update, retain the Builder as option 2 outlines.
39 * IMPORTANT NOTE 2: If the global Notification Builder is lost because the process is killed, you
40 * should have a way to recreate the Notification Builder from a persistent state. (We do this as
45 private static NotificationCompat.Builder sGlobalNotificationCompatBuilder = null;
48 * Empty constructor - We don't initialize builder because we rely on a null state to let us
53 public static void setNotificationCompatBuilderInstance (NotificationCompat.Builder builder) {
    [all...]
  /development/samples/browseable/WearNotifications/Application/src/com.example.android.wearable.wear.wearnotifications/
GlobalNotificationBuilder.java 21 * We use a Singleton for a global copy of the NotificationCompat.Builder to update active
27 * to get *ALL* the information and pass it to the builder. We get all the information from a Mock
31 * you to store a reference to the original builder. The benefit is you only need the new/updated
37 * to update, retain the Builder as option 2 outlines.
39 * IMPORTANT NOTE 2: If the global Notification Builder is lost because the process is killed, you
40 * should have a way to recreate the Notification Builder from a persistent state. (We do this as
45 private static NotificationCompat.Builder sGlobalNotificationCompatBuilder = null;
48 * Empty constructor - We don't initialize builder because we rely on a null state to let us
53 public static void setNotificationCompatBuilderInstance (NotificationCompat.Builder builder) {
    [all...]
  /development/samples/browseable/WearNotifications/Wearable/src/com.example.android.wearable.wear.wearnotifications/
GlobalNotificationBuilder.java 21 * We use a Singleton for a global copy of the NotificationCompat.Builder to update active
27 * to get *ALL* the information and pass it to the builder. We get all the information from a Mock
31 * you to store a reference to the original builder. The benefit is you only need the new/updated
37 * to update, retain the Builder as option 2 outlines.
39 * IMPORTANT NOTE 2: If the global Notification Builder is lost because the process is killed, you
40 * should have a way to recreate the Notification Builder from a persistent state. (We do this as
45 private static NotificationCompat.Builder sGlobalNotificationCompatBuilder = null;
48 * Empty constructor - We don't initialize builder because we rely on a null state to let us
53 public static void setNotificationCompatBuilderInstance (NotificationCompat.Builder builder) {
    [all...]
  /external/clang/test/Analysis/
region-store.cpp 24 int radar13445834(Derived *Builder, Loc l) {
25 Builder->setLoc(l);
26 return Builder->accessBase();
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/builder/
TestComponentWithBuilder.java 16 package producerstest.builder;
30 @ProductionComponent.Builder
31 interface Builder {
32 Builder depComponent(DepComponent depComponent);
33 Builder strModule(StringModule strModule);
34 Builder executor(Executor executor);
  /frameworks/rs/rsov/compiler/spirit/
builder.cpp 17 #include "builder.h"
24 Module *Builder::MakeModule() {
31 Builder::MakeEntryPointDefinition(ExecutionModel execModel,
36 DebugInfoSection *Builder::MakeDebugInfoSection() {
41 Builder::MakeFunctionDefinition(Instruction *retType, FunctionControl ctrl,
48 Block *Builder::MakeBlock() { return new Block(this); }
  /packages/apps/Dialer/java/com/android/dialer/multimedia/
MultimediaData.java 30 public static final MultimediaData EMPTY = builder().build();
33 public static Builder builder() { method in class:MultimediaData
34 return new AutoValue_MultimediaData.Builder().setImportant(false);
80 @AutoValue.Builder
81 public abstract static class Builder {
83 public abstract Builder setText(@NonNull String subject);
85 public abstract Builder setLocation(@NonNull Location location);
87 public Builder setImage(@NonNull Uri image, @NonNull String imageContentType) {
93 abstract Builder setImageUri(@NonNull Uri image)
    [all...]

Completed in 410 milliseconds

12 3 4 5 6 7 8 91011>>