Home
last modified time | relevance | path

Searched refs:buildProperties (Results 1 – 25 of 92) sorted by relevance

1234

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.build/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/
H A DAssembleTests.java39 buildProperties.put("topLevelElementId", "sdk"); in testCustomAssembly()
42 buildProperties.put("configs", "win32, win32, x86_64"); in testCustomAssembly()
44 Utils.storeBuildProperties(buildFolder, buildProperties); in testCustomAssembly()
70 buildProperties.put("topLevelElementId", "sdk"); in testBug179612_default()
98 buildProperties.put("topLevelElementId", "sdk"); in testBug179612_custom()
159 buildProperties.put("topLevelElementId", "sdk"); in testBug211605()
164 buildProperties.put("groupConfigurations", "true"); in testBug211605()
189 buildProperties.put("topLevelElementId", "F"); in testBug255824()
190 buildProperties.put("archivePrefix", "eclipse"); in testBug255824()
191 buildProperties.put("collectingFolder", "e4"); in testBug255824()
[all …]
H A DSourceTests.java286 generateScripts(buildFolder, buildProperties); in testBug228537()
309 Properties buildProperties = new Properties(); in testIndividualSourceBundles() local
310 buildProperties.put("src.includes", "about.html"); in testIndividualSourceBundles()
393 Properties buildProperties = new Properties(); in testBug230870() local
394 buildProperties.put("src.includes", "about.html"); in testBug230870()
400 buildProperties = new Properties(); in testBug230870()
401 buildProperties.put("src.includes", "about.html"); in testBug230870()
595 Properties buildProperties = new Properties(); in testBug272543() local
596 buildProperties.put("src.includes", "about.html"); in testBug272543()
669 Properties buildProperties = new Properties(); in testbug302941() local
[all …]
H A DUtils.java92 Properties buildProperties = properties != null ? properties : new Properties(); in generatePluginBuildProperties() local
95 if (!buildProperties.containsKey("source..")) in generatePluginBuildProperties()
96 buildProperties.put("source..", "src/"); in generatePluginBuildProperties()
97 if (!buildProperties.containsKey("output..")) in generatePluginBuildProperties()
98 buildProperties.put("output..", "bin/"); in generatePluginBuildProperties()
99 if (!buildProperties.containsKey("bin.includes")) in generatePluginBuildProperties()
100 buildProperties.put("bin.includes", "META-INF/, ."); in generatePluginBuildProperties()
102 storeBuildProperties(folder, buildProperties); in generatePluginBuildProperties()
144 storeProperties(buildFolder.getFile("build.properties"), buildProperties); in storeBuildProperties()
147 static public void storeProperties(IFile propertiesFile, Properties buildProperties) in storeProperties() argument
[all …]
H A DScriptGenerationTests.java221 buildProperties.delete(true, null); in testBug221855()
1016 buildProperties.put("baseLocation", " ");
1018 generateScripts(buildFolder, buildProperties);
1024 generateScripts(buildFolder, buildProperties);
1034 generateScripts(buildFolder, buildProperties);
1063 buildProperties.put("baseLocation", " ");
1067 generateScripts(buildFolder, buildProperties);
1112 buildProperties.put("baseLocation", " ");
1116 generateScripts(buildFolder, buildProperties);
1619 generateScripts(buildFolder, buildProperties);
[all …]
H A DProductTests.java616 Properties buildProperties = BuildConfiguration.getBuilderProperties(buildFolder); in testBug269540() local
617 buildProperties.put("product", product.getLocation().toOSString()); in testBug269540()
618 buildProperties.put("filteredDependencies", "true"); in testBug269540()
619 buildProperties.put("pluginPath", executable.getAbsolutePath()); in testBug269540()
620 buildProperties.put("configs", "win32, win32, x86_64"); in testBug269540()
623 Utils.storeBuildProperties(buildFolder, buildProperties); in testBug269540()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.build/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/
H A DFeatureGenerator.java108 private Properties buildProperties; field in FeatureGenerator
184 if (buildProperties == null) in shouldNestInclusions()
185 buildProperties = new Properties(); in shouldNestInclusions()
237 buildProperties = new Properties(); in generateNestedRequirements()
242 buildProperties = null; in generateNestedRequirements()
475 …if (buildProperties != null && buildProperties.containsKey("generate.feature@" + name)) //$NON-NLS… in createFeature()
498 if (buildProperties == null) { in createBuildProperties()
499 buildProperties = new Properties(); in createBuildProperties()
511 buildProperties = new Properties(); in setBuildProperties()
516 buildProperties.load(input); in setBuildProperties()
[all …]
H A DProductGenerator.java53 private Properties buildProperties; field in ProductGenerator
74 if (buildProperties != null) { in generate()
75 …fileList = buildProperties.getProperty(ROOT_PREFIX + config.toString("."), ""); //$NON-NLS-1$ //$N… in generate()
77 buildProperties.put(ROOT_PREFIX + config.toString("."), fileList); //$NON-NLS-1$ in generate()
117 if (buildProperties == null) in generateEclipseProduct()
118 buildProperties = new Properties(); in generateEclipseProduct()
120 String fileList = buildProperties.getProperty(ROOT, ""); //$NON-NLS-1$ in generateEclipseProduct()
122 buildProperties.put(ROOT, fileList); in generateEclipseProduct()
126 …Utils.writeProperties(buildProperties, new File(root, IPDEBuildConstants.PROPERTIES_FILE), ""); //… in generateEclipseProduct()
693 public void setBuildProperties(Properties buildProperties) { in setBuildProperties() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/
H A DToolset.cs45 IDictionary<string, string> buildProperties, ProjectCollection projectCollection, in Toolset() argument
47 …: this (toolsVersion, toolsPath, buildProperties, projectCollection, null, msbuildOverrideTasksPat… in Toolset()
52 Toolset (string toolsVersion, string toolsPath, IDictionary<string, string> buildProperties, in Toolset() argument
59 buildProperties == null ? in Toolset()
61buildProperties.Select (p => new ProjectPropertyInstance (p.Key, true, p.Value)).ToDictionary (e =… in Toolset()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.build/org.eclipse.pde.build/src_ant/org/eclipse/pde/internal/build/publisher/
H A DAbstractPublisherTask.java90 private Properties buildProperties = null; field in AbstractPublisherTask
96 if (buildProperties != null) in getBuildProperties()
97 return buildProperties; in getBuildProperties()
118 buildProperties = new Properties(); in getBuildProperties()
122 buildProperties.put(key, getProject().replaceProperties(value)); in getBuildProperties()
129 buildProperties.put(key, getProject().replaceProperties(value)); in getBuildProperties()
133 return buildProperties; in getBuildProperties()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/wizards/
H A DBundleProjectConfigurator.java68 Properties buildProperties = new Properties(); in configure() local
71 buildProperties.load(stream); in configure()
79 for (String entry : buildProperties.stringPropertyNames()) { in configure()
91 for (Entry<?, ?> entry : buildProperties.entrySet()) { in configure()
143 Properties buildProperties = new Properties(); in getFoldersToIgnore() local
148 buildProperties.load(stream); in getFoldersToIgnore()
149 for (Entry<?, ?> entry : buildProperties.entrySet()) { in getFoldersToIgnore()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Engine/
H A DToolset.cs41 public Toolset(string toolsVersion, string toolsPath, BuildPropertyGroup buildProperties) in Toolset() argument
50 if (buildProperties != null) in Toolset()
52 this.properties.ImportProperties(buildProperties); in Toolset()
/dports/www/bolt/bolt-2.2.24/vendor/symfony/finder/Symfony/Component/Finder/Iterator/
H A DFilePathsIterator.php92 $this->buildProperties();
98 $this->buildProperties();
117 private function buildProperties() function in Symfony\\Component\\Finder\\Iterator\\FilePathsIterator
/dports/devel/pear-Symfony_Component_Finder/Finder-2.4.4/Symfony/Component/Finder/Iterator/
H A DFilePathsIterator.php92 $this->buildProperties();
98 $this->buildProperties();
117 private function buildProperties() function in Symfony\\Component\\Finder\\Iterator\\FilePathsIterator
/dports/devel/msbuild/msbuild-0.06/src/Build/Definition/
H A DToolset.cs238 …t(string toolsVersion, string toolsPath, IDictionary<string, string> buildProperties, ProjectColle… in Toolset() argument
239 …: this(toolsVersion, toolsPath, buildProperties, projectCollection, null, msbuildOverrideTasksPath) in Toolset()
255 …t(string toolsVersion, string toolsPath, IDictionary<string, string> buildProperties, ProjectColle… in Toolset() argument
259 if (null != buildProperties) in Toolset()
261 foreach (KeyValuePair<string, string> keyValuePair in buildProperties) in Toolset()
311 PropertyDictionary<ProjectPropertyInstance> buildProperties, in Toolset() argument
322 _properties = buildProperties != null in Toolset()
323 ? new PropertyDictionary<ProjectPropertyInstance>(buildProperties) in Toolset()
356 …rsion, string toolsPath, PropertyDictionary<ProjectPropertyInstance> buildProperties, ProjectColle… in Toolset() argument
357 …: this(toolsVersion, toolsPath, buildProperties, projectCollection.EnvironmentProperties, projectC… in Toolset()
H A DToolsetReader.cs181 var buildProperties = in ReadAllToolsets()
189 buildProperties, in ReadAllToolsets()
217 var buildProperties = in ReadAllToolsets()
225 buildProperties, in ReadAllToolsets()
539 PropertyDictionary<ProjectPropertyInstance> buildProperties = in CreateStandardProperties()
541 AppendStandardProperties(buildProperties, globalProperties, version, root, toolsPath); in CreateStandardProperties()
542 return buildProperties; in CreateStandardProperties()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/correction/
H A DDeletePluginBaseResolution.java49 …IResource buildProperties = marker.getResource().getParent().findMember(IPDEBuildConstants.PROPERT… in run() local
50 if (buildProperties == null) in run()
53 …IMarker removePluginEntryMarker = buildProperties.createMarker(String.valueOf(AbstractPDEMarkerRes… in run()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.build/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/
H A DPublishingTests.java261 buildProperties.put("topLevelElementId", "F"); in testPublishFeature_versionReplacement()
262 buildProperties.put("p2.gathering", "true"); in testPublishFeature_versionReplacement()
1647 Properties buildProperties = new Properties(); in testBug272907() local
1648 buildProperties.put("source.src.jar", "src/"); in testBug272907()
1649 buildProperties.put("source..", "src2/"); in testBug272907()
1656 buildProperties = new Properties(); in testBug272907()
1674 buildProperties.put("topLevelElementId", "f"); in testBug272907()
1675 buildProperties.put("p2.gathering", "true"); in testBug272907()
1877 buildProperties.put("configs", configString); in testBug262464_customConfig()
1879 buildProperties.put("p2.gathering", "true"); in testBug262464_customConfig()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/
H A DToolset.cs34 public Toolset (string toolsVersion, string toolsPath, BuildPropertyGroup buildProperties) in Toolset() argument
38 BuildProperties = buildProperties; in Toolset()
/dports/graphics/proj/proj-7.2.1/src/iso19111/
H A Dio.cpp2843 auto props = buildProperties(node); in buildGeodeticCRS()
3934 auto props = buildProperties(node); in buildProjectedCRS()
4150 auto &props = buildProperties(node); in buildVerticalReferenceFrame()
4362 auto &props = buildProperties(node); in buildVerticalCRS()
4687 ? buildProperties(datumNode) in buildEngineeringCRSFromLocalCS()
5591 auto props = buildProperties(j); in buildGeodeticCRS()
5662 auto props = buildProperties(j); in buildVerticalCRS()
5717 auto convProps = buildProperties(j); in buildConversion()
6017 buildProperties(memberJ), in buildDatumEnsemble()
6026 buildProperties(j), datums, in buildDatumEnsemble()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzlib/
H A Dlevelupdater.cpp191 void LevelUpdater::buildProperties(const TFilePath &fp) { in buildProperties() function in LevelUpdater
223 buildProperties(fp); // Throws only if not even the default properties in open()
284 buildProperties(fp); // May throw if not even the default properties could be in open()
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/tombuildsstuff/giovanni/storage/2018-03-28/datalakestore/filesystems/
H A Dhelpers.go8 func buildProperties(input map[string]string) string { func
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/tombuildsstuff/giovanni/storage/2018-11-09/datalakestore/filesystems/
H A Dhelpers.go8 func buildProperties(input map[string]string) string { func
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/datalakestore/filesystems/
H A Dhelpers.go8 func buildProperties(input map[string]string) string { func
/dports/www/ilias6/ILIAS-6.14/Modules/CmiXapi/classes/
H A Dclass.ilCmiXapiDataSet.php220 $this->buildProperties($a_entity, $a_omit_header)
310 private function buildProperties($a_entity, $a_omit_header = false) function in ilCmiXapiDataSet
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/include/toonz/
H A Dlevelupdater.h187 void buildProperties(const TFilePath &fp);

1234