Home
last modified time | relevance | path

Searched refs:builders (Results 1 - 22 of 22) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DRepeatedFieldBuilderV3.java50 * Logically, one can think of a tree of builders as converting the entire tree to messages when
77 // List of builders. May be null, in which case, no nested builders were
79 private List<SingleFieldBuilderV3<MType, BType, IType>> builders; field in RepeatedFieldBuilderV3
81 // Here are the invariants for messages and builders:
84 // 2. If builders is non-null, messages and builders MUST always
87 // either a Message in messages or a builder in builders.
105 // A view of this builder that exposes a List interface of builders. This is
112 // implemented by messages and builders
[all...]
H A DRepeatedFieldBuilder.java50 * Logically, one can think of a tree of builders as converting the entire tree to messages when
77 // List of builders. May be null, in which case, no nested builders were
79 private List<SingleFieldBuilder<MType, BType, IType>> builders; field in RepeatedFieldBuilder
81 // Here are the invariants for messages and builders:
84 // 2. If builders is non-null, messages and builders MUST always
87 // either a Message in messages or a builder in builders.
105 // A view of this builder that exposes a List interface of builders. This is
112 // implemented by messages and builders
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
H A DLookupList.java62 private List<LookupTable.Builder> builders; field in LookupList.Builder
81 builders = new ArrayList<LookupTable.Builder>(count); in initFromData()
86 builders.add(lookup); in initFromData()
92 if (builders == null) { in prepareToEdit()
104 for (int i = 0; i < builders.size(); ++i) { in serializeFromBuilders()
105 LookupTable.Builder builder = builders.get(i); in serializeFromBuilders()
121 if (builders == null) { in subSerialize()
138 for (int i = 0; i < builders.size(); ++i) { in computeSerializedSizeFromBuilders()
139 int s = builders.get(i).subDataSizeToSerialize(); in computeSerializedSizeFromBuilders()
157 if (builders in subDataSizeToSerialize()
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
H A DOffsetRecordTable.java94 private List<VisibleSubTable.Builder<S>> builders; field in OffsetRecordTable.Builder
127 if (builders == null) { in Builder()
137 if (builders == null) { in subTableCount()
140 return builders.size(); in subTableCount()
145 return builders.get(tag); in builderForTag()
151 builders.add(builder); in addBuilder()
158 builders.add(builder); in addBuilder()
164 builders.remove(tag); in removeBuilderForTag()
176 if (builders != null) { in subDataSizeToSerialize()
204 if (builders ! in subSerialize()
[all...]
H A DTagOffsetsTable.java88 private TreeMap<Integer, VisibleSubTable.Builder<S>> builders; field in TagOffsetsTable.Builder
100 builders = other.builders; in Builder()
116 if (builders != null) { in subDataSizeToSerialize()
132 if (builders != null) { in subSerialize()
145 builders = null; in subDataSet()
167 if (builders == null) { in prepareToEdit()
174 builders = new TreeMap<Integer, VisibleSubTable.Builder<S>>(); in initFromData()
199 builders.put(tag, builder); in initFromData()
207 builders in initFromData()
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
H A Dfont_factory.cc132 FontBuilderArray builders; in LoadCollection() local
133 LoadCollectionForBuilding(wfd, &builders); in LoadCollection()
134 output->reserve(builders.size()); in LoadCollection()
135 for (FontBuilderArray::iterator builder = builders.begin(), in LoadCollection()
136 builders_end = builders.end(); in LoadCollection()
163 FontBuilderArray* builders) { in LoadCollectionForBuilding()
165 assert(builders); in LoadCollectionForBuilding()
169 LoadCollectionForBuilding(wfd, builders); in LoadCollectionForBuilding()
173 FontBuilderArray* builders) { in LoadCollectionForBuilding()
184 builders in LoadCollectionForBuilding()
162 LoadCollectionForBuilding(InputStream* is, FontBuilderArray* builders) LoadCollectionForBuilding() argument
172 LoadCollectionForBuilding(WritableFontData* wfd, FontBuilderArray* builders) LoadCollectionForBuilding() argument
[all...]
H A Dfont_factory.h61 // Load the font(s) from the input stream into font builders. The current
63 // font builders are returned if the stream contains valid font data. Some
69 // Load the font(s) from the byte array into font builders. The current
71 // font builders are returned if the stream contains valid font data. Some
120 void LoadCollectionForBuilding(InputStream* is, FontBuilderArray* builders);
122 FontBuilderArray* builders);
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
H A DFontFactory.java137 * Load the font(s) from the input stream into font builders. The current
139 * font builders are returned if the stream contains valid font data. Some
145 * @return one or more font builders
162 Font.Builder[] builders = loadCollectionForBuilding(is); in loadCollection()
163 Font[] fonts = new Font[builders.length]; in loadCollection()
165 fonts[i] = builders[i].build(); in loadCollection()
226 * Load the font(s) from the byte array into font builders. The current
228 * font builders are returned if the stream contains valid font data. Some
234 * @return one or more font builders
250 Font.Builder[] builders in loadCollection()
[all...]
/third_party/python/Lib/test/
H A Dtest_xmlrpc_net.py15 # Get the list of builders from the XMLRPC buildbot interface at
19 builders = server.getAllBuilders()
26 self.assertIsInstance(builders, collections.abc.Sequence)
27 self.assertTrue([x for x in builders if "3.x" in x], builders)
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
H A Dutils.cc40 FontBuilderArray builders; in LoadFontBuilder() local
41 LoadFontBuilders(font_path, font_factory, &builders); in LoadFontBuilder()
42 return builders[0].Detach(); in LoadFontBuilder()
54 FontBuilderArray* builders) { in LoadFontBuilders()
57 factory->LoadFontsForBuilding(&input_stream, builders); in LoadFontBuilders()
52 LoadFontBuilders(const char* font_path, FontFactory* factory, FontBuilderArray* builders) LoadFontBuilders() argument
H A Dutils.h31 sfntly::FontBuilderArray* builders);
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DRepeatedFieldBuilderV3Test.java147 // Use list of builders. in testLists()
148 List<TestAllTypes.Builder> builders = builder.getBuilderList(); in testLists()
149 assertEquals(0, builders.get(0).getOptionalInt32()); in testLists()
150 assertEquals(1, builders.get(1).getOptionalInt32()); in testLists()
151 builders.get(0).setOptionalInt32(10); in testLists()
152 builders.get(1).setOptionalInt32(11); in testLists()
159 // Add an item to the builders and verify it's updated in both in testLists()
161 assertEquals(3, builders.size()); in testLists()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dcmap_editing_test.cc36 FontBuilderArray builders; in TEST() local
39 BuilderForFontFile(SAMPLE_TTF_FILE, font_factory, &builders); in TEST()
40 ASSERT_FALSE(builders.empty()); in TEST()
41 FontBuilderPtr font_builder = builders[0]; in TEST()
H A Dtest_font_utils.cc28 FontBuilderArray* builders) { in BuilderForFontFile()
32 factory->LoadFontsForBuilding(&is, builders); in BuilderForFontFile()
33 EXPECT_GT(builders->size(), static_cast<size_t>(0)); in BuilderForFontFile()
27 BuilderForFontFile(const char* font_path, FontFactory* factory, FontBuilderArray* builders) BuilderForFontFile() argument
H A Dtest_font_utils.h27 FontBuilderArray* builders);
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.cc211 IndexSubTableBuilderList* builders = IndexSubTableBuilders(); in SubDataSizeToSerialize() local
212 if (builders->empty()) { in SubDataSizeToSerialize()
217 for (IndexSubTableBuilderList::iterator b = builders->begin(), in SubDataSizeToSerialize()
218 e = builders->end(); b != e; b++) { in SubDataSizeToSerialize()
/third_party/node/deps/v8/tools/mb/
H A Dmb.py59 This eases splitting builders and testers on release branches and
63 builders = [builder]
65 builders.append(builder[:-len(' - builder')])
67 builders.append(builder[:-len(' builder')])
69 for builder in builders:
125 help='optional phase name (used when builders '
306 for builder_group, builders in self.builder_groups.items():
308 for builder in builders:
434 # Build a list of all of the configs referenced by builders.
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Djunit-4.10.jar ... junit/experimental/theories/suppliers/ org/junit/internal/ org/junit/internal/builders/ org/junit/internal/matchers/ org/junit/internal/requests/ org/junit ...
/third_party/alsa-utils/axfer/
H A Dcontainer.c227 const struct container_builder *builders[] = { in container_builder_init() local
262 builder = builders[format]; in container_builder_init()
/third_party/python/Doc/tools/extensions/
H A Dsuspicious.py49 from sphinx.builders import Builder
H A Dpyspecific.py24 from sphinx.builders import Builder
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/
H A Dname_table.cc311 NameEntryBuilderMap builders; in NameBuilder() local

Completed in 13 milliseconds