Home
last modified time | relevance | path

Searched refs:possibleValues (Results 1 – 25 of 152) sorted by relevance

1234567

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/
H A DConfigurableOption.java32 private String[] possibleValues; field in ConfigurableOption
62 possibleValues = new String[0]; in ConfigurableOption()
87 possibleValues = NoDiscreteValue; in ConfigurableOption()
89 possibleValues = new String[numberOfValues]; in ConfigurableOption()
97 possibleValues = new String[0]; in ConfigurableOption()
99 possibleValues = new String[0]; in ConfigurableOption()
101 possibleValues = new String[0]; in ConfigurableOption()
179 return possibleValues; in getPossibleValues()
199 if (possibleValues == NoDiscreteValue){ in toString()
207 if (possibleValues != NoDiscreteValue){ in toString()
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/
H A DConfigurableOption.java43 private String[] possibleValues; field in ConfigurableOption
73 possibleValues = new String[0]; in ConfigurableOption()
100 possibleValues = NoDiscreteValue; in ConfigurableOption()
102 possibleValues = new String[numberOfValues]; in ConfigurableOption()
110 possibleValues = new String[0]; in ConfigurableOption()
112 possibleValues = new String[0]; in ConfigurableOption()
114 possibleValues = new String[0]; in ConfigurableOption()
206 return possibleValues; in getPossibleValues()
230 if (possibleValues == NoDiscreteValue) { in toString()
238 if (possibleValues != NoDiscreteValue) { in toString()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL/src/SDL/
H A DOgreSDLGLSupport.cpp39 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
40 optFullScreen.possibleValues.push_back("No"); in addConfig()
51 optVideoMode.possibleValues.push_back(szBuf); in addConfig()
61 optFSAA.possibleValues.push_back("0"); in addConfig()
62 optFSAA.possibleValues.push_back("2"); in addConfig()
63 optFSAA.possibleValues.push_back("4"); in addConfig()
64 optFSAA.possibleValues.push_back("6"); in addConfig()
69 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
70 optRTTMode.possibleValues.push_back("PBuffer"); in addConfig()
71 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL3Plus/src/SDL/
H A DOgreSDLGLSupport.cpp39 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
40 optFullScreen.possibleValues.push_back("No"); in addConfig()
51 optVideoMode.possibleValues.push_back(szBuf); in addConfig()
61 optFSAA.possibleValues.push_back("0"); in addConfig()
62 optFSAA.possibleValues.push_back("2"); in addConfig()
63 optFSAA.possibleValues.push_back("4"); in addConfig()
64 optFSAA.possibleValues.push_back("6"); in addConfig()
69 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
70 optRTTMode.possibleValues.push_back("PBuffer"); in addConfig()
71 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL3Plus/src/win32/
H A DOgreWin32GLSupport.cpp86 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
87 optFullScreen.possibleValues.push_back("No"); in addConfig()
118 optVSync.possibleValues.push_back("No"); in addConfig()
119 optVSync.possibleValues.push_back("Yes"); in addConfig()
132 optFSAA.possibleValues.push_back("0"); in addConfig()
136 optFSAA.possibleValues.push_back(val); in addConfig()
146 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
148 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
155 optSRGB.possibleValues.push_back("Yes"); in addConfig()
156 optSRGB.possibleValues.push_back("No"); in addConfig()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL/src/Win32/
H A DOgreWin32GLSupport.cpp90 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
91 optFullScreen.possibleValues.push_back("No"); in addConfig()
122 optVSync.possibleValues.push_back("No"); in addConfig()
123 optVSync.possibleValues.push_back("Yes"); in addConfig()
136 optFSAA.possibleValues.push_back("0"); in addConfig()
140 optFSAA.possibleValues.push_back(val); in addConfig()
150 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
152 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
159 optSRGB.possibleValues.push_back("Yes"); in addConfig()
160 optSRGB.possibleValues.push_back("No"); in addConfig()
[all …]
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/modules/java-modules/common/src/main/java/org/syslog_ng/options/
H A DEnumOptionDecorator.java30 private Set<String> possibleValues; field in EnumOptionDecorator
32 public EnumOptionDecorator(Option decoratedOption, Set<String> possibleValues) { in EnumOptionDecorator() argument
34 this.possibleValues = possibleValues; in EnumOptionDecorator()
39 for (String value: possibleValues) { in getPossibleValuesAsString()
52 if (!possibleValues.contains(value)) { in validate()
/dports/www/matomo/piwik/libs/HTML/QuickForm2/Element/
H A DSelect.php111 protected $possibleValues; variable in HTML_QuickForm2_Element_Select_OptionContainer
120 public function __construct(&$values, &$possibleValues) argument
123 $this->possibleValues =& $possibleValues;
153 $this->possibleValues[(string)$value] = true;
169 $this->values, $this->possibleValues,
268 public function __construct(&$values, &$possibleValues, $label, $attributes = null) argument
270 parent::__construct($values, $possibleValues);
311 protected $possibleValues = array(); variable in HTML_QuickForm2_Element_Select
426 && (0 == count($this->optionContainer) || 0 == count($this->possibleValues)))
497 $this->possibleValues = array();
[all …]
/dports/graphics/ogre3d/ogre-1.11.6/RenderSystems/GLSupport/src/
H A DOgreGLRenderSystemCommon.cpp68 removeDuplicates(optVideoMode.possibleValues); // also sorts in initConfigOptions()
69 optVideoMode.currentValue = optVideoMode.possibleValues[0]; in initConfigOptions()
79 if (!optFSAA.possibleValues.empty()) in initConfigOptions()
81 removeDuplicates(optFSAA.possibleValues); in initConfigOptions()
82 optFSAA.currentValue = optFSAA.possibleValues[0]; in initConfigOptions()
89 optRTTMode.possibleValues.push_back("FBO"); in initConfigOptions()
90 optRTTMode.currentValue = optRTTMode.possibleValues[0]; in initConfigOptions()
112 optColourDepth->second.possibleValues.push_back( in refreshConfig()
117 removeDuplicates(optColourDepth->second.possibleValues); in refreshConfig()
128 optDisplayFrequency->second.possibleValues.clear(); in refreshConfig()
[all …]
/dports/www/aria2/aria2-1.36.0/src/
H A DOptionHandler.cc56 std::string possibleValues = optionHandler.createPossibleValuesString(); in operator <<() local
57 if (!possibleValues.empty()) { in operator <<()
58 o << POSSIBLE_MSG << possibleValues << "\n"; in operator <<()
70 std::string possibleValues = optionHandler.createPossibleValuesString(); in write() local
71 if (!possibleValues.empty()) { in write()
72 out->printf("%s%s\n", POSSIBLE_MSG, possibleValues.c_str()); in write()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GLES2/src/EAGL/
H A DOgreEAGL2Support.mm62 optFullScreen.possibleValues.push_back("Yes");
63 optFullScreen.possibleValues.push_back("No");
72 optVideoMode.possibleValues.push_back("320 x 480");
73 optVideoMode.possibleValues.push_back("320 x 568");
74 optVideoMode.possibleValues.push_back("768 x 1024");
93 optFSAA.possibleValues.push_back( "0" );
94 optFSAA.possibleValues.push_back( "2" );
95 optFSAA.possibleValues.push_back( "4" );
96 optFSAA.possibleValues.push_back( "8" );
101 optRTTMode.possibleValues.push_back("Copy");
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL3Plus/src/OSX/
H A DOgreOSXGL3PlusSupport.mm72 optFullScreen.possibleValues.push_back( "No" );
85 optVsync.possibleValues.push_back( "Yes" );
86 optVsync.possibleValues.push_back( "No" );
91 optBitDepth.possibleValues.push_back( "32" );
92 optBitDepth.possibleValues.push_back( "16" );
97 optRTTMode.possibleValues.push_back( "FBO" );
99 optRTTMode.possibleValues.push_back( "Copy" );
105 optSRGB.possibleValues.push_back("Yes");
106 optSRGB.possibleValues.push_back("No");
137 optFSAA.possibleValues.push_back( "0" );
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GLES/src/EGL/
H A DOgreEGLSupport.cpp82 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
83 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
86 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
90 optRTTMode.currentValue = optRTTMode.possibleValues[0]; in addConfig()
92 optFullScreen.possibleValues.push_back("No"); in addConfig()
93 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
103 optVideoMode.possibleValues.push_back(mode); in addConfig()
105 removeDuplicates(optVideoMode.possibleValues); in addConfig()
117 optFSAA.possibleValues.push_back(*value); in addConfig()
120 optFSAA.currentValue = optFSAA.possibleValues[0]; in addConfig()
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/formatter/
H A DOptions.properties4 newline.openingBrace.possibleValues=2|Insert|Do not insert
10 newline.controlStatement.possibleValues=2|Insert|Do not insert
16 newline.clearAll.possibleValues=2|Clear|Preserve one
22 newline.elseIf.possibleValues=2|Yes|No
28 newline.emptyBlock.possibleValues=2|Insert|Do not insert
34 line.split.possibleValues=-1
40 style.compactAssignment.possibleValues=2|Compact|Normal
46 style.reuseExistingLayout.possibleValues=2|Reuse|Do not reuse
52 tabulation.char.possibleValues=2|Tab|Spaces
58 tabulation.size.possibleValues=-1
/dports/devel/pear-HTML_QuickForm2/HTML_QuickForm2-2.2.2/HTML/QuickForm2/Element/Select/
H A DOptionContainer.php65 protected $possibleValues; variable in HTML_QuickForm2_Element_Select_OptionContainer
74 public function __construct(&$values, &$possibleValues) argument
77 $this->possibleValues =& $possibleValues;
107 $this->possibleValues[(string)$value] = true;
124 $this->values, $this->possibleValues, $label, $attributes
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/Tools/rcapsdump/src/
H A Dmain.cpp65 …if(find(optionRTT.possibleValues.begin(), optionRTT.possibleValues.end(), "FBO") != optionRTT.poss… in setUpGLRenderSystemOptions()
69 …else if(find(optionRTT.possibleValues.begin(), optionRTT.possibleValues.end(), "PBuffer") != optio… in setUpGLRenderSystemOptions()
/dports/graphics/ogre3d/ogre-1.11.6/Tools/rcapsdump/src/
H A Dmain.cpp65 …if(find(optionRTT.possibleValues.begin(), optionRTT.possibleValues.end(), "FBO") != optionRTT.poss… in setUpGLRenderSystemOptions()
69 …else if(find(optionRTT.possibleValues.begin(), optionRTT.possibleValues.end(), "PBuffer") != optio… in setUpGLRenderSystemOptions()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GLES/src/EAGL/
H A DOgreEAGLSupport.mm58 optFullScreen.possibleValues.push_back("Yes");
59 optFullScreen.possibleValues.push_back("No");
68 optVideoMode.possibleValues.push_back("320 x 480");
69 optVideoMode.possibleValues.push_back("320 x 568");
70 optVideoMode.possibleValues.push_back("768 x 1024");
76 optDisplayFrequency.possibleValues.push_back("0 Hz");
89 optFSAA.possibleValues.push_back( "0" );
90 optFSAA.possibleValues.push_back( "2" );
91 optFSAA.possibleValues.push_back( "4" );
96 optRTTMode.possibleValues.push_back("Copy");
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GLES2/src/EGL/
H A DOgreEGLSupport.cpp81 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
82 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
85 optRTTMode.currentValue = optRTTMode.possibleValues[0]; in addConfig()
87 optFullScreen.possibleValues.push_back("No"); in addConfig()
88 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
90 optFullScreen.currentValue = optFullScreen.possibleValues[1]; in addConfig()
98 optVideoMode.possibleValues.push_back(mode); in addConfig()
100 removeDuplicates(optVideoMode.possibleValues); in addConfig()
112 optFSAA.possibleValues.push_back(*sampleValue); in addConfig()
115 optFSAA.currentValue = optFSAA.possibleValues[0]; in addConfig()
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/CloudSearch/
H A DEnumPropertyOptions.php52 public function setPossibleValues($possibleValues) argument
54 $this->possibleValues = $possibleValues;
61 return $this->possibleValues;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/CloudSearch/
H A DEnumPropertyOptions.php52 public function setPossibleValues($possibleValues) argument
54 $this->possibleValues = $possibleValues;
61 return $this->possibleValues;
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL/src/GLX/
H A DOgreGLXGLSupport.cpp194 optFullScreen.possibleValues.push_back("No"); in addConfig()
195 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
206 optVideoMode.possibleValues.push_back(mode); in addConfig()
209 remove_duplicates(optVideoMode.possibleValues); in addConfig()
217 optVSync.possibleValues.push_back("No"); in addConfig()
218 optVSync.possibleValues.push_back("Yes"); in addConfig()
224 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
231 optRTTMode.possibleValues.push_back("Copy"); in addConfig()
242 optFSAA.possibleValues.push_back(*value_); in addConfig()
250 optSRGB.possibleValues.push_back("No"); in addConfig()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL/src/OSX/
H A DOgreOSXGLSupport.mm92 optFullScreen.possibleValues.push_back( "Yes" );
93 optFullScreen.possibleValues.push_back( "No" );
106 optVsync.possibleValues.push_back( "Yes" );
107 optVsync.possibleValues.push_back( "No" );
112 optBitDepth.possibleValues.push_back( "32" );
113 optBitDepth.possibleValues.push_back( "16" );
118 optRTTMode.possibleValues.push_back( "FBO" );
120 optRTTMode.possibleValues.push_back( "Copy" );
126 optSRGB.possibleValues.push_back("Yes");
127 optSRGB.possibleValues.push_back("No");
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL3Plus/src/GLX/
H A DOgreGLXGLSupport.cpp199 optFullScreen.possibleValues.push_back("No"); in addConfig()
200 optFullScreen.possibleValues.push_back("Yes"); in addConfig()
211 optVideoMode.possibleValues.push_back(mode); in addConfig()
214 remove_duplicates(optVideoMode.possibleValues); in addConfig()
220 optVSync.possibleValues.push_back("No"); in addConfig()
221 optVSync.possibleValues.push_back("Yes"); in addConfig()
224 optRTTMode.possibleValues.push_back("FBO"); in addConfig()
233 optFSAA.possibleValues.push_back(*sampleLevel); in addConfig()
239 optSRGB.possibleValues.push_back("No"); in addConfig()
240 optSRGB.possibleValues.push_back("Yes"); in addConfig()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Mapping/ViewGeneration/Structures/
H A DMemberDomainMap.cs203 CellConstantSet possibleValues = domainMapForMembers[path]; in ExpandDomainsIfNeeded()
205 possibleValues.Any(c => c is NegatedConstant) == false) in ExpandDomainsIfNeeded()
212 possibleValues.Unite(completeDomain); in ExpandDomainsIfNeeded()
217 NegatedConstant negatedConstant = new NegatedConstant(possibleValues); in ExpandDomainsIfNeeded()
218 possibleValues.Add(negatedConstant); in ExpandDomainsIfNeeded()
388 CellConstantSet possibleValues; in AddToDomainMap()
389 if (false == m_conditionDomainMap.TryGetValue(member, out possibleValues)) in AddToDomainMap()
391 possibleValues = new CellConstantSet(Constant.EqualityComparer); in AddToDomainMap()
393 possibleValues.Unite(domainValues); in AddToDomainMap()
396 … m_conditionDomainMap[member] = Domain.ExpandNegationsInDomain(possibleValues, possibleValues); in AddToDomainMap()

1234567