Home
last modified time | relevance | path

Searched refs:ValueFor (Results 1 – 25 of 88) sorted by relevance

1234

/dports/lang/spidermonkey60/firefox-60.9.0/layout/style/
H A DnsRuleData.h72 nsCSSValue* ValueFor(nsCSSPropertyID aProperty) { in ValueFor() function
126 return ValueFor(aId)->GetUnit() != eCSSUnit_Null; in PropertyIsSet()
130 ValueFor(aId)->SetStringValue(aValue, eCSSUnit_Ident); in SetIdentStringValue()
135 ValueFor(aId)->SetAtomIdentValue(atom.forget()); in SetIdentAtomValue()
139 ValueFor(aId)->SetIntValue(aValue, eCSSUnit_Enumerated); in SetKeywordValue()
143 ValueFor(aId)->SetIntValue(aValue, eCSSUnit_Integer); in SetIntValue()
147 ValueFor(aId)->SetFloatValue(aValue, eCSSUnit_Pixel); in SetPixelValue()
151 nsCSSValue* val = ValueFor(aId); in SetLengthValue()
156 ValueFor(aId)->SetFloatValue(aValue, eCSSUnit_Number); in SetNumberValue()
160 ValueFor(aId)->SetPercentValue(aValue); in SetPercentValue()
[all …]
H A DDeclaration.cpp106 const nsCSSValue* value = data->ValueFor(aProperty); in GetDiscretelyAnimatedCSSValue()
210 const nsCSSValue* val = data->ValueFor(aProperty); in HasProperty()
222 const nsCSSValue* val = data->ValueFor(aProperty); in AppendValueToString()
528 const nsCSSValue* val = mData->ValueFor(*p); in GetPropertyValueInternal()
533 val = mImportantData->ValueFor(*p); in GetPropertyValueInternal()
614 data->ValueFor(subprops[0]), data->ValueFor(subprops[1]), in GetPropertyValueInternal()
615 data->ValueFor(subprops[2]), data->ValueFor(subprops[3])}; in GetPropertyValueInternal()
624 data->ValueFor(subprops[0]), data->ValueFor(subprops[1]), in GetPropertyValueInternal()
625 data->ValueFor(subprops[2]), data->ValueFor(subprops[3])}; in GetPropertyValueInternal()
1047 values[i] = data->ValueFor(subprops[i]); in GetPropertyValueInternal()
[all …]
H A DnsCSSDataBlock.cpp265 if (aRuleData->ValueFor(props[i])->GetUnit() == eCSSUnit_Null) { in EnsurePhysicalProperty()
310 nsCSSValue* target = aRuleData->ValueFor(iProp); in MapRuleInfoInto()
328 const nsCSSValue* nsCSSCompressedDataBlock::ValueFor( in ValueFor() function in nsCSSCompressedDataBlock
356 const nsCSSValue* oldValue = ValueFor(aProperty); in TryReplaceValue()
409 ValueFor(eCSSProperty_border_image_slice)->GetListValue(); in HasDefaultBorderImageSlice()
416 ValueFor(eCSSProperty_border_image_width)->GetRectValue(); in HasDefaultBorderImageWidth()
422 ValueFor(eCSSProperty_border_image_outset)->GetRectValue(); in HasDefaultBorderImageOutset()
428 ValueFor(eCSSProperty_border_image_repeat)->GetPairValue(); in HasDefaultBorderImageRepeat()
706 nsCSSValue* dest = aRuleData->ValueFor(physicalProp); in MapRuleInfoInto()
H A DDeclaration.h270 !other || !other->ValueFor(aProperty) || !block->ValueFor(aProperty), in TryReplaceValue()
279 return !!mData->ValueFor(aProperty); in HasNonImportantValueFor()
/dports/www/firefox-legacy/firefox-52.8.0esr/layout/style/
H A DDeclaration.cpp595 val = mImportantData->ValueFor(*p); in GetPropertyValueInternal()
672 data->ValueFor(subprops[0]), in GetPropertyValueInternal()
673 data->ValueFor(subprops[1]), in GetPropertyValueInternal()
674 data->ValueFor(subprops[2]), in GetPropertyValueInternal()
675 data->ValueFor(subprops[3]) in GetPropertyValueInternal()
686 data->ValueFor(subprops[0]), in GetPropertyValueInternal()
687 data->ValueFor(subprops[1]), in GetPropertyValueInternal()
688 data->ValueFor(subprops[2]), in GetPropertyValueInternal()
689 data->ValueFor(subprops[3]) in GetPropertyValueInternal()
767 data->ValueFor((*subprops)[side]); in GetPropertyValueInternal()
[all …]
H A DnsRuleData.h69 nsCSSValue* ValueFor(nsCSSPropertyID aProperty) in ValueFor() function
87 const nsCSSValue* ValueFor(nsCSSPropertyID aProperty) const { in ValueFor() function
88 return const_cast<nsRuleData*>(this)->ValueFor(aProperty); in ValueFor()
103 nsCSSValue* ValueFor##method_() { \
114 const nsCSSValue* ValueFor##method_() const { \
115 return const_cast<nsRuleData*>(this)->ValueFor##method_(); \
H A DnsCSSDataBlock.cpp273 if (aRuleData->ValueFor(props[i])->GetUnit() == eCSSUnit_Null) { in EnsurePhysicalProperty()
321 nsCSSValue* target = aRuleData->ValueFor(iProp); in MapRuleInfoInto()
340 nsCSSCompressedDataBlock::ValueFor(nsCSSPropertyID aProperty) const in ValueFor() function in nsCSSCompressedDataBlock
371 const nsCSSValue* oldValue = ValueFor(aProperty); in TryReplaceValue()
431 ValueFor(eCSSProperty_border_image_slice)->GetListValue(); in HasDefaultBorderImageSlice()
441 ValueFor(eCSSProperty_border_image_width)->GetRectValue(); in HasDefaultBorderImageWidth()
449 ValueFor(eCSSProperty_border_image_outset)->GetRectValue(); in HasDefaultBorderImageOutset()
457 ValueFor(eCSSProperty_border_image_repeat)->GetPairValue(); in HasDefaultBorderImageRepeat()
780 nsCSSValue* dest = aRuleData->ValueFor(physicalProp); in MapRuleInfoInto()
H A DDeclaration.h274 MOZ_ASSERT(!other || !other->ValueFor(aProperty) || in TryReplaceValue()
275 !block->ValueFor(aProperty), in TryReplaceValue()
284 return !!mData->ValueFor(aProperty); in HasNonImportantValueFor()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.Mvc.Test/Html/Test/
H A DValueExtensionsTest.cs50 () => helper.ValueFor<FooBarModel, object>(expression: null), in ValueForWithNullExpressionThrows()
62 MvcHtmlString html = helper.ValueFor(m => m.foo); in ValueForGetsExpressionValueFromViewDataModel()
90 Assert.Equal("AttemptedValueFoo", helper.ValueFor(m => m.foo).ToHtmlString()); in ValueHelpersWithErrorsGetValueFromModelState()
105 Assert.Equal(expectedModelValue, helper.ValueFor(m => m).ToHtmlString()); in ValueHelpersWithEmptyNameConvertModelValueUsingCurrentCulture()
123 Assert.Equal(expectedBarValue, helper.ValueFor(m => m.bar, "-{0}-").ToHtmlString()); in ValueHelpersFormatValue()
143 … Assert.Equal("&lt;ViewItemFoo &lt;&quot;>", helper.ValueFor(m => m.foo, "<{0}").ToHtmlString()); in ValueHelpersEncodeValue()
144 … Assert.Equal("AttemptedValueBar &lt;&quot;>", helper.ValueFor(m => m.bar).ToHtmlString()); in ValueHelpersEncodeValue()
/dports/biology/avida/avida-2.12.4-src/avida-core/source/tools/
H A DtArrayMap.h76 ValueType& ValueFor(const KeyType& key) in ValueFor() function
87 const ValueType& ValueFor(const KeyType& key) const in ValueFor() function
98 ValueType& operator[](const KeyType& key) { return ValueFor(key); }
99 const ValueType& operator[](const KeyType& key) const { return ValueFor(key); }
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/Html/
H A DValueExtensions.cs26 …public static MvcHtmlString ValueFor<TModel, TProperty>(this HtmlHelper<TModel> html, Expression<F… in ValueFor() method in System.Web.Mvc.Html.ValueExtensions
28 return ValueFor(html, expression, format: null); in ValueFor()
32 …public static MvcHtmlString ValueFor<TModel, TProperty>(this HtmlHelper<TModel> html, Expression<F… in ValueFor() method in System.Web.Mvc.Html.ValueExtensions
/dports/security/lego/lego-4.5.3/vendor/github.com/onsi/gomega/gmeasure/
H A Dstats.go103 func (s Stats) ValueFor(stat Stat) float64 { func
123 return s.ValueFor(stat)
135 return fmt.Sprintf(s.PrecisionBundle.ValueFormat, s.ValueFor(stat))
H A Dstats_test.go41 Ω(stats.ValueFor(gmeasure.StatMin)).Should(Equal(17.48992))
42 Ω(stats.ValueFor(gmeasure.StatMean)).Should(Equal(187.3023))
/dports/dns/blocky/blocky-0.17/vendor/github.com/onsi/gomega/gmeasure/
H A Dstats.go103 func (s Stats) ValueFor(stat Stat) float64 { func
123 return s.ValueFor(stat)
135 return fmt.Sprintf(s.PrecisionBundle.ValueFormat, s.ValueFor(stat))
H A Dstats_test.go41 Ω(stats.ValueFor(gmeasure.StatMin)).Should(Equal(17.48992))
42 Ω(stats.ValueFor(gmeasure.StatMean)).Should(Equal(187.3023))
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/flang/unittests/RuntimeGTest/
H A DBufferTest.cpp78 inline int ValueFor(int at) { return (at ^ (at >> 8)) & 0xff; } in ValueFor() function
95 to[k] = ValueFor(at + k); in TEST()
113 auto expect{static_cast<char>(ValueFor(at + k))}; in TEST()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/flang/unittests/Runtime/
H A DBufferTest.cpp78 inline int ValueFor(int at) { return (at ^ (at >> 8)) & 0xff; } in ValueFor() function
95 to[k] = ValueFor(at + k); in TEST()
113 auto expect{static_cast<char>(ValueFor(at + k))}; in TEST()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/flang/unittests/RuntimeGTest/
H A DBufferTest.cpp78 inline int ValueFor(int at) { return (at ^ (at >> 8)) & 0xff; } in ValueFor() function
95 to[k] = ValueFor(at + k); in TEST()
113 auto expect{static_cast<char>(ValueFor(at + k))}; in TEST()
/dports/devel/llvm13/llvm-project-13.0.1.src/flang/unittests/RuntimeGTest/
H A DBufferTest.cpp78 inline int ValueFor(int at) { return (at ^ (at >> 8)) & 0xff; } in ValueFor() function
95 to[k] = ValueFor(at + k); in TEST()
113 auto expect{static_cast<char>(ValueFor(at + k))}; in TEST()
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/nll/ty-outlives/
H A Dissue-53789-2.rs110 type ValueFor<S> = <<S as Strategy>::Value as ValueTree>::Value; typedef
169 [where K : Strategy, V : Strategy, ValueFor<K> : Ord](
214 where ValueFor<K> : Ord { in btree_map()
/dports/devel/p5-Paws/Paws-0.14/lib/Paws/API/
H A DStrToObjMapParser.pm4 sub ValueFor { method
/dports/lang/v8/v8-9.6.180.12/test/cctest/compiler/
H A Dtest-gap-resolver.cc118 return (it == values_.end()) ? ValueFor(op) : it->second; in read()
122 if (v == ValueFor(dst)) { in write()
157 static Value ValueFor(const InstructionOperand& op) { return KeyFor(op); } in ValueFor() function in v8::internal::compiler::InterpreterState
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/animation/
H A DAnimValuesStyleRule.cpp39 nsCSSValue *prop = aRuleData->ValueFor(property); in NS_IMPL_ISUPPORTS()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/animation/
H A DAnimValuesStyleRule.cpp37 nsCSSValue* prop = aRuleData->ValueFor(property); in NS_IMPL_ISUPPORTS()
/dports/editors/fxite/fxite-FXITE-0_92/fxscintilla/
H A DSubStyles.h45 int ValueFor(const std::string &s) const { in ValueFor() function

1234