Searched defs:builders (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dbuilders.js31 builders.masters = {};
35 builders.masters[master.name] = new builders.BuilderMaster(master.name, master.url, master.tests, master.groups);
40 if (builders.testTypeUploadsToFlakinessDashboardServer(testType))
44 builders.groups = Object.keys(groups);
45 builders.groups.sort();
46 builders.testTypes = Object.keys(testTypes);
47 builders.testTypes.sort();
50 var builders = builders || {};
[all...]
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
H A Dbuilders.js26 var builders = builders || {};
44 return buildBotURL(platform) + '/json/builders/' + encodeURIComponent(builderName) + '/builds/' + encodeURIComponent(buildNumber);
83 builders.clearBuildInfoCache = function()
90 net.get(buildBotURL(platform) + '/json/builders', function(builderStatus) {
115 builders.buildersFailingNonLayoutTests = function(callback)
130 builders.perfBuilders = function(callback)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dbuilders_unittest.py29 import builders namespace
41 self.assertEqual(expected, builders.builder_path_from_name(name))
H A Dfactory.py35 from webkitpy.layout_tests.port import builders namespace
125 return fnmatch.filter(builders.all_port_names(), platform)
128 port_name = builders.port_name_for_builder_name(builder_name)
H A D__init__.py31 import builders # Why is this in port? namespace
/external/junit/src/org/junit/internal/builders/
H A DIgnoredBuilder.java4 package org.junit.internal.builders;
H A DJUnit4Builder.java4 package org.junit.internal.builders;
H A DNullBuilder.java4 package org.junit.internal.builders;
H A DIgnoredClassRunner.java4 package org.junit.internal.builders;
H A DJUnit3Builder.java4 package org.junit.internal.builders;
H A DSuiteMethodBuilder.java4 package org.junit.internal.builders;
H A DAllDefaultPossibilitiesBuilder.java4 package org.junit.internal.builders;
21 List<RunnerBuilder> builders= Arrays.asList(
28 for (RunnerBuilder each : builders) {
H A DAnnotatedBuilder.java4 package org.junit.internal.builders;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dgardenomatic.py25 from webkitpy.layout_tests.port import builders namespace
48 builder = builders.builder_name_for_port_name(options.platform)
H A Drebaseline.py43 from webkitpy.layout_tests.port import builders namespace
90 override_dir = builders.rebaseline_override_dir(builder_name)
302 # The release builders cycle much faster than the debug ones and cover all the platforms.
305 for builder_name in builders.all_builder_names():
321 # This routine returns the subset of builders that will cover all of the baseline search paths
479 builder_name = builders.builder_name_for_port_name(port_name)
508 help_text = "Rebaseline tests with results from the build bots. Shows the list of failing tests on the builders if no test names are provided."
514 # FIXME: should we support the platform options in addition to (or instead of) --builders?
517 optparse.make_option("--builders", default=None, action="append", help="Comma-separated-list of builders t
[all...]
/external/sfntly/cpp/src/sample/subtly/
H A Dutils.cc40 FontBuilderArray builders; local
41 LoadFontBuilders(font_path, font_factory, &builders);
42 return builders[0].Detach();
54 FontBuilderArray* builders) {
57 factory->LoadFontsForBuilding(&input_stream, builders);
52 LoadFontBuilders(const char* font_path, FontFactory* factory, FontBuilderArray* builders) argument
/external/sfntly/cpp/src/test/
H A Dcmap_editing_test.cc36 FontBuilderArray builders; local
39 BuilderForFontFile(SAMPLE_TTF_FILE, font_factory, &builders);
40 ASSERT_FALSE(builders.empty());
41 FontBuilderPtr font_builder = builders[0];
H A Dtest_font_utils.cc28 FontBuilderArray* builders) {
32 factory->LoadFontsForBuilding(&is, builders);
33 EXPECT_GT(builders->size(), static_cast<size_t>(0));
27 BuilderForFontFile(const char* font_path, FontFactory* factory, FontBuilderArray* builders) argument
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dbot_test_expectations.py38 from webkitpy.layout_tests.port import builders namespace
76 # multiple builders in one json file, so the builder_name
113 builder_name = builders.deps_builder_name_for_port_name(port_name)
115 builder_name = builders.builder_name_for_port_name(port_name)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Dgardeningserver.py36 from webkitpy.layout_tests.port import builders namespace
H A Dgardeningserver_unittest.py35 from webkitpy.layout_tests.port import builders namespace
/external/sfntly/cpp/src/sfntly/
H A Dfont_factory.cc136 FontBuilderArray builders; local
137 LoadCollectionForBuilding(wfd, &builders);
138 output->reserve(builders.size());
139 for (FontBuilderArray::iterator builder = builders.begin(),
140 builders_end = builders.end();
167 FontBuilderArray* builders) {
169 assert(builders);
173 LoadCollectionForBuilding(wfd, builders);
177 FontBuilderArray* builders) {
184 builders
166 LoadCollectionForBuilding(InputStream* is, FontBuilderArray* builders) argument
176 LoadCollectionForBuilding(WritableFontData* wfd, FontBuilderArray* builders) argument
[all...]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DRepeatedFieldBuilder.java52 * Logically, one can think of a tree of builders as converting the entire tree
82 // List of builders. May be null, in which case, no nested builders were
84 private List<SingleFieldBuilder<MType, BType, IType>> builders; field in class:RepeatedFieldBuilder
86 // Here are the invariants for messages and builders:
89 // 2. If builders is non-null, messages and builders MUST always
92 // either a Message in messages or a builder in builders.
110 // A view of this builder that exposes a List interface of builders. This is
117 // implemented by messages and builders
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/
H A Dbuildbot.py59 # In addition to per-build results, the build.chromium.org builders also
89 return "%s/builders/%s" % (self._buildbot.buildbot_url, self.url_encoded_name())
242 status_link_regexp = r"builders/(?P<builder_name>.*)/builds/(?P<build_number>\d+)"
289 json_url = "%s/json/builders/%s/builds/%s?filter=1" % (self.buildbot_url, urllib.quote(builder.name()), build_number)
332 def builders(self): member in class:BuildBot
360 builder_page_url = "%s/builders/%s?numbuilds=100" % (self.buildbot_url, urllib2.quote(builder.name()))
386 # Once we found X, check if remaining builders succeeded in the neighborhood of X.
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.cc211 IndexSubTableBuilderList* builders = IndexSubTableBuilders(); local
212 if (builders->empty()) {
217 for (IndexSubTableBuilderList::iterator b = builders->begin(),
218 e = builders->end(); b != e; b++) {

Completed in 1944 milliseconds

12