Home
last modified time | relevance | path

Searched refs:propertyValue (Results 1 – 25 of 33) sorted by relevance

12

/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
DPropertiesHelper.java21 String propertyValue = null; in doSingleSubstitution() local
23 propertyValue = properties.getProperty(propertyName); in doSingleSubstitution()
25 if (propertyValue == null) { in doSingleSubstitution()
26 propertyValue = System.getProperty(propertyName); in doSingleSubstitution()
28 if (propertyValue == null) { in doSingleSubstitution()
34 expandedValue = sdkPathStart + propertyValue + sdkPathEnd; in doSingleSubstitution()
45 String propertyValue = properties.getProperty(propertyName); in doSubstitutions() local
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties); in doSubstitutions()
/external/emma/core/java12/com/vladium/util/exception/
DExceptionCommon.java403 String propertyValue = null; in lookup() local
406 propertyValue = rb.getString (propertyName); in lookup()
409 if (propertyValue != null) return propertyValue; in lookup()
420 String propertyValue = null; in lookup() local
423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName); in lookup()
426 if (propertyValue != null) return propertyValue; in lookup()
/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySet.h73 const CSSValue* value() const { return propertyValue(); } in value()
75 CSSValue* value() { return const_cast<CSSValue*>(propertyValue()); } in value()
78 …roperty() const { return CSSProperty(propertyMetadata(), const_cast<CSSValue*>(propertyValue())); } in toCSSProperty()
83 const CSSValue* propertyValue() const;
263 inline const CSSValue* StylePropertySet::PropertyReference::propertyValue() const in propertyValue() function
DPropertySetCSSStyleDeclaration.cpp300 …StyleDeclaration::cssPropertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const in cssPropertyMatches()
302 return propertySet().propertyMatches(propertyID, propertyValue); in cssPropertyMatches()
DStylePropertySet.cpp477 bool StylePropertySet::propertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) con… in propertyMatches()
482 return propertyAt(foundPropertyIndex).value()->equals(*propertyValue); in propertyMatches()
606 result.append(propertyValue()->cssText()); in cssText()
DCSSStyleDeclaration.idl38 [Custom] setter void (DOMString propertyName, DOMString? propertyValue);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
DVCSUtils.pm1242 my $propertyValue;
1253 ($propertyValue, $_) = parseSvnPropertyValue($fileHandle, $_);
1257 if (!$propertyValue) {
1287 $propertyHash{value} = $propertyValue;
1312 my $propertyValue;
1315 $propertyValue = $2; # Does not include the end-of-line character(s).
1335 $propertyValue .= "$eol$_";
1339 return ($propertyValue, $_);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
DV8CSSStyleDeclarationCustom.cpp223 TOSTRING_VOID(V8StringResource<TreatNullAsNullString>, propertyValue, value); in namedPropertySetterCustom()
225 …impl->setPropertyInternal(static_cast<CSSPropertyID>(propInfo->propID), propertyValue, false, exce… in namedPropertySetterCustom()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DRemoteObject.js369 …var propertyValue = property.value ? this._target.runtimeModel.createRemoteObject(property.value) …
371 … var remoteProperty = new WebInspector.RemoteObjectProperty(property.name, propertyValue,
390 … var propertyValue = this._target.runtimeModel.createRemoteObject(property.value);
391 …rtiesResult.push(new WebInspector.RemoteObjectProperty(property.name, propertyValue, true, false));
/external/chromium_org/media/base/mac/
Dvideotoolbox_glue.mm194 CFTypeRef propertyValue) const {
195 return library_->VTSessionSetProperty(session, propertyKey, propertyValue);
Dvideotoolbox_glue.h96 CFTypeRef propertyValue) const;
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
DV8TestSpecialOperations.cpp103 Node* propertyValue = V8Node::toImplWithTypeCheck(info.GetIsolate(), v8Value); in namedPropertySetter() local
104 bool result = impl->anonymousNamedSetter(propertyName, propertyValue); in namedPropertySetter()
DV8TestInterface2.cpp266 TOSTRING_VOID(V8StringResource<>, propertyValue, v8Value); in indexedPropertySetter()
268 bool result = impl->setItem(index, propertyValue, exceptionState); in indexedPropertySetter()
338 TOSTRING_VOID(V8StringResource<>, propertyValue, v8Value); in namedPropertySetter()
339 bool result = impl->setNamedItem(propertyName, propertyValue, exceptionState); in namedPropertySetter()
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
DAnimatableValueKeyframe.h24 AnimatableValue* propertyValue(CSSPropertyID property) const in propertyValue() function
DAnimatableValueKeyframe.cpp36 …return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property… in createPropertySpecificKeyframe()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DStringKeyframe.h23 CSSValue* propertyValue(CSSPropertyID property) const in propertyValue() function
DStringKeyframe.cpp48 …return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property… in createPropertySpecificKeyframe()
DAnimationTest.cpp98 …const CSSValue* keyframe1Width = toStringKeyframe(keyframes[0].get())->propertyValue(CSSPropertyWi… in TEST_F()
99 …const CSSValue* keyframe2Width = toStringKeyframe(keyframes[1].get())->propertyValue(CSSPropertyWi… in TEST_F()
/external/chromium_org/v8/src/
Dmirror-debugger.js2850 var propertyValue = propertyMirror.value();
2851 if (this.inlineRefs_() && propertyValue.isValue()) {
2852 result.value = this.serializeReferenceWithDisplayData_(propertyValue);
2860 result.ref = propertyValue.handle();
2883 var propertyValue = propertyMirror.value();
2884 if (this.inlineRefs_() && propertyValue.isValue()) {
2885 result.value = this.serializeReferenceWithDisplayData_(propertyValue);
2887 result.ref = propertyValue.handle();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DObjectPropertiesSection.js158 var propertyValue = /** @type {!WebInspector.RemoteObject} */ (this.property.value);
159 console.assert(propertyValue);
160 WebInspector.ObjectPropertyTreeElement.populate(this, propertyValue);
/external/proguard/src/proguard/
DConfigurationParser.java1150 String propertyValue = properties.getProperty(propertyName); in replaceSystemProperties() local
1151 if (propertyValue == null) in replaceSystemProperties()
1158 propertyValue + in replaceSystemProperties()
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/modules/
DV8TestInterface5.cpp591 TOSTRING_VOID(V8StringResource<>, propertyValue, v8Value); in indexedPropertySetter()
592 bool result = impl->anonymousIndexedSetter(index, propertyValue); in indexedPropertySetter()
651 TOSTRING_VOID(V8StringResource<>, propertyValue, v8Value); in namedPropertySetter()
652 bool result = impl->anonymousNamedSetter(propertyName, propertyValue); in namedPropertySetter()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DV8Binding.cpp926 RefPtr<JSONValue> propertyValue = v8ToJSONValue(isolate, object->Get(name), maxDepth); in v8ToJSONValue() local
927 if (!propertyValue) in v8ToJSONValue()
930 jsonObject->setValue(nameString, propertyValue); in v8ToJSONValue()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditorCommand.cpp121 …itorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) in executeApplyStyle() argument
124 style->setProperty(propertyID, propertyValue); in executeApplyStyle()
128 … EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValueID propertyValue) in executeApplyStyle() argument
131 style->setProperty(propertyID, propertyValue); in executeApplyStyle()
178 …itorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) in executeApplyParagraphStyle() argument
181 style->setProperty(propertyID, propertyValue); in executeApplyParagraphStyle()
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java347 String propertyValue = (sep >= 0) ? decodePercent(e.substring(sep + 1)) : null; in decodeParameters() local
348 if (propertyValue != null) { in decodeParameters()
349 parms.get(propertyName).add(propertyValue); in decodeParameters()

12