Home
last modified time | relevance | path

Searched refs:valueProperty (Results 1 – 25 of 139) sorted by relevance

123456

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/tags/form/
H A DAbstractMultiCheckedElementTag.java193 String valueProperty = in writeTagContent() local
211 writeObjectEntry(tagWriter, valueProperty, labelProperty, item, i); in writeTagContent()
219 writeObjectEntry(tagWriter, valueProperty, labelProperty, item, itemIndex); in writeTagContent()
227 writeMapEntry(tagWriter, valueProperty, labelProperty, entry, itemIndex); in writeTagContent()
237 private void writeObjectEntry(TagWriter tagWriter, String valueProperty, in writeObjectEntry() argument
242 if (valueProperty != null) { in writeObjectEntry()
243 renderValue = wrapper.getPropertyValue(valueProperty); in writeObjectEntry()
255 private void writeMapEntry(TagWriter tagWriter, String valueProperty, in writeMapEntry() argument
262 Object renderValue = (valueProperty != null ? in writeMapEntry()
263 mapKeyWrapper.getPropertyValue(valueProperty) : mapKey.toString()); in writeMapEntry()
H A DOptionWriter.java101 private final String valueProperty; field in OptionWriter
118 …Object optionSource, BindStatus bindStatus, String valueProperty, String labelProperty, boolean ht… in OptionWriter() argument
124 this.valueProperty = valueProperty; in OptionWriter()
171 Object renderValue = (this.valueProperty != null ? in renderFromMap()
172 PropertyAccessorFactory.forBeanPropertyAccess(mapKey).getPropertyValue(this.valueProperty) : in renderFromMap()
207 if (this.valueProperty != null) { in doRenderFromCollection()
208 value = wrapper.getPropertyValue(this.valueProperty); in doRenderFromCollection()
H A DOptionsTag.java164 String valueProperty = in writeTagContent() local
168 …OptionsWriter optionWriter = new OptionsWriter(selectName, itemsObject, valueProperty, labelProper… in writeTagContent()
206 …public OptionsWriter(String selectName, Object optionSource, String valueProperty, String labelPro… in OptionsWriter() argument
207 super(optionSource, getBindStatus(), valueProperty, labelProperty, isHtmlEscape()); in OptionsWriter()
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dop251/goja/
H A Dvalue.go73 type valueProperty struct { struct
388 func (p *valueProperty) ToInteger() int64 { argument
392 func (p *valueProperty) ToString() valueString { argument
396 func (p *valueProperty) String() string { argument
400 func (p *valueProperty) ToFloat() float64 { argument
404 func (p *valueProperty) ToBoolean() bool { argument
412 func (p *valueProperty) ToNumber() Value { argument
428 func (p *valueProperty) isWritable() bool { argument
432 func (p *valueProperty) get(this Value) Value { argument
445 func (p *valueProperty) set(this, v Value) { argument
[all …]
H A Dobject.go149 if p, ok := p.(*valueProperty); ok {
158 if p, ok := p.(*valueProperty); ok {
178 if val, ok := val.(*valueProperty); ok {
224 if prop, ok := v.(*valueProperty); ok {
258 if prop, ok := pprop.(*valueProperty); ok {
294 var existing *valueProperty
301 existing = &valueProperty{}
303 if existing, ok = existingValue.(*valueProperty); !ok {
304 existing = &valueProperty{
418 p := &valueProperty{
[all …]
H A Dobject_args.go9 valueProperty anonMember
47 if !a.checkDeleteProp(name, &prop.valueProperty, throw) {
99 existing := &valueProperty{
111 if prop, ok := val.(*valueProperty); ok {
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.Core.Presentation/System/Activities/Core/Presentation/
H A DAssignDesigner.xaml.cs100 ModelProperty valueProperty = this.ModelItem.Properties[ValuePropertyName]; in modelItem_PropertyChanged()
103 Fx.Assert(valueProperty != null, "Value model property could not be null"); in modelItem_PropertyChanged()
106 Argument value = valueProperty.ComputedValue as Argument; in modelItem_PropertyChanged()
114valueProperty.SetValue(MorphHelpers.MorphArgument(valueProperty.Value, targetType)); in modelItem_PropertyChanged()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/dop251/goja/
H A Dvalue.go111 type valueProperty struct { struct
449 func (p *valueProperty) ToInteger() int64 { argument
461 func (p *valueProperty) ToString() Value { argument
465 func (p *valueProperty) String() string { argument
469 func (p *valueProperty) ToFloat() float64 { argument
473 func (p *valueProperty) ToBoolean() bool { argument
481 func (p *valueProperty) ToNumber() Value { argument
485 func (p *valueProperty) isWritable() bool { argument
502 func (p *valueProperty) set(this, v Value) { argument
521 func (p *valueProperty) Equals(Value) bool { argument
[all …]
H A Dobject_args.go11 valueProperty anonMember
24 return &valueProperty{
58 if !a.checkDeleteProp(name, &prop.valueProperty, throw) {
92 existing := &valueProperty{
104 if prop, ok := val.(*valueProperty); ok {
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/dop251/goja/
H A Dvalue.go111 type valueProperty struct { struct
449 func (p *valueProperty) ToInteger() int64 { argument
461 func (p *valueProperty) ToString() Value { argument
465 func (p *valueProperty) String() string { argument
469 func (p *valueProperty) ToFloat() float64 { argument
473 func (p *valueProperty) ToBoolean() bool { argument
481 func (p *valueProperty) ToNumber() Value { argument
485 func (p *valueProperty) isWritable() bool { argument
502 func (p *valueProperty) set(this, v Value) { argument
521 func (p *valueProperty) Equals(Value) bool { argument
[all …]
H A Dobject_args.go11 valueProperty anonMember
24 return &valueProperty{
58 if !a.checkDeleteProp(name, &prop.valueProperty, throw) {
92 existing := &valueProperty{
104 if prop, ok := val.(*valueProperty); ok {
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.InteropServices/tests/System/Runtime/InteropServices/
H A DIDispatchImplAttributeTests.cs23 PropertyInfo valueProperty = type.GetProperty(ValueName); in Ctor_ImplTypeShort()
25 Assert.NotNull(valueProperty); in Ctor_ImplTypeShort()
29 Assert.Equal(implType, (int)valueProperty.GetValue(attribute)); in Ctor_ImplTypeShort()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jit/
H A DCacheIRSpewer.h41 void valueProperty(const char* name, const Value& v);
71 void valueProperty(const char* name, const Value& v) const { in valueProperty() function
72 sp_.valueProperty(name, v); in valueProperty()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jit/
H A DCacheIRSpewer.h51 void valueProperty(const char* name, const Value& v);
92 void valueProperty(const char* name, const Value& v) const { in valueProperty() function
93 sp_.valueProperty(name, v); in valueProperty()
/dports/www/firefox-esr/firefox-91.8.0/js/src/jit/
H A DCacheIRSpewer.h51 void valueProperty(const char* name, const Value& v);
93 void valueProperty(const char* name, const Value& v) const { in valueProperty() function
94 sp_.valueProperty(name, v); in valueProperty()
/dports/www/firefox/firefox-99.0/js/src/jit/
H A DCacheIRSpewer.h54 void valueProperty(const char* name, const Value& v);
96 void valueProperty(const char* name, const Value& v) const { in valueProperty() function
97 sp_.valueProperty(name, v); in valueProperty()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/jit/
H A DCacheIRSpewer.h51 void valueProperty(const char* name, const Value& v);
93 void valueProperty(const char* name, const Value& v) const { in valueProperty() function
94 sp_.valueProperty(name, v); in valueProperty()
/dports/multimedia/avidemux-cli/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/src_dialogFactory/
H A DADM_JSDFInteger.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
96 case valueProperty: in JSGetProperty()
115 case valueProperty: in JSSetProperty()
H A DADM_JSDFToggle.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
85 case valueProperty: in JSGetProperty()
104 case valueProperty: in JSSetProperty()
/dports/multimedia/avidemux-qt5/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/src_dialogFactory/
H A DADM_JSDFToggle.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
85 case valueProperty: in JSGetProperty()
104 case valueProperty: in JSSetProperty()
H A DADM_JSDFInteger.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
96 case valueProperty: in JSGetProperty()
115 case valueProperty: in JSSetProperty()
/dports/multimedia/avidemux-plugins/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/src_dialogFactory/
H A DADM_JSDFToggle.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
85 case valueProperty: in JSGetProperty()
104 case valueProperty: in JSSetProperty()
H A DADM_JSDFInteger.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
96 case valueProperty: in JSGetProperty()
115 case valueProperty: in JSSetProperty()
/dports/multimedia/avidemux/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/src_dialogFactory/
H A DADM_JSDFInteger.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
96 case valueProperty: in JSGetProperty()
115 case valueProperty: in JSSetProperty()
H A DADM_JSDFToggle.cpp23 { "value", valueProperty, JSPROP_ENUMERATE },
85 case valueProperty: in JSGetProperty()
104 case valueProperty: in JSSetProperty()

123456