Home
last modified time | relevance | path

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

/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/webkit/WebCore/bindings/v8/custom/
DV8CSSStyleDeclarationCustom.cpp204 String propertyValue = toWebCoreStringWithNullCheck(value); in NAMED_PROPERTY_SETTER() local
206 propertyValue.append("px"); in NAMED_PROPERTY_SETTER()
209 int importantIndex = propertyValue.find("!important", 0, false); in NAMED_PROPERTY_SETTER()
213 propertyValue = propertyValue.left(importantIndex - 1); in NAMED_PROPERTY_SETTER()
215 imp->setProperty(propInfo->propID, propertyValue, important, ec); in NAMED_PROPERTY_SETTER()
/external/gdata/src/com/google/wireless/gdata/calendar/parser/xml/
DXmlEventsGDataParser.java199 String propertyValue = parser.getAttributeValue(null /* ns */, "value"); in handleExtraElementInEntry() local
200 eventEntry.addExtendedProperty(propertyName, propertyValue); in handleExtraElementInEntry()
/external/gdata/src/com/google/wireless/gdata/calendar/serializer/xml/
DXmlEventEntryGDataSerializer.java107 String propertyValue = (String) extendedProperties.get(propertyName); in serializeExtraEntryContents() local
108 serializeExtendedProperty(serializer, propertyName, propertyValue); in serializeExtraEntryContents()
/external/webkit/V8Binding/v8/src/
Dmirror-delay.js2177 var propertyValue = propertyMirror.value();
2178 if (this.inlineRefs_() && propertyValue.isValue()) {
2179 result.value = this.serializeReferenceWithDisplayData_(propertyValue);
2187 result.ref = propertyValue.handle();
Dd8.js867 var property_value = value.propertyValue(i);
1392 ProtocolValue.prototype.propertyValue = function(index) { method in ProtocolValue
/external/webkit/WebCore/editing/
DEditorCommand.cpp109 … frame, EditorCommandSource source, EditAction action, int propertyID, const String& propertyValue) in executeApplyStyle() argument
112 style->setProperty(propertyID, propertyValue); in executeApplyStyle()
116 …yle(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, int propertyValue) in executeApplyStyle() argument
119 style->setProperty(propertyID, propertyValue); in executeApplyStyle()
174 … frame, EditorCommandSource source, EditAction action, int propertyID, const String& propertyValue) in executeApplyParagraphStyle() argument
177 style->setProperty(propertyID, propertyValue); in executeApplyParagraphStyle()
/external/proguard/src/proguard/
DConfigurationParser.java1076 String propertyValue = System.getProperty(propertyName); in replaceSystemProperties() local
1077 if (propertyValue == null) in replaceSystemProperties()
1084 propertyValue + in replaceSystemProperties()
/external/webkit/WebCore/css/
DCSSComputedStyleDeclaration.cpp1335 RefPtr<CSSValue> propertyValue; in getPropertyCSSValue() local
1337 propertyValue = CSSPrimitiveValue::createIdentifier(CSSValueNone); in getPropertyCSSValue()
1339 propertyValue = CSSPrimitiveValue::createIdentifier(CSSValueAll); in getPropertyCSSValue()
1341propertyValue = CSSPrimitiveValue::create(getPropertyName(static_cast<CSSPropertyID>(prop)), CSSPr… in getPropertyCSSValue()
1342 list->append(propertyValue); in getPropertyCSSValue()