Searched refs:propertyName (Results 1 - 25 of 177) sorted by relevance

12345678

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationInputHelpers.cpp14 CSSPropertyID AnimationInputHelpers::keyframeAttributeToCSSPropertyID(const String& propertyName) argument
17 if (propertyName[0] == '-' || isASCIIUpper(propertyName[0]))
19 if (propertyName == "cssFloat")
22 for (size_t i = 0; i < propertyName.length(); ++i) {
23 if (isASCIIUpper(propertyName[i]))
25 builder.append(propertyName[i]);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorState.h60 bool getBoolean(const String& propertyName);
61 String getString(const String& propertyName);
62 long getLong(const String& propertyName);
63 long getLong(const String& propertyName, long defaultValue);
64 double getDouble(const String& propertyName);
65 double getDouble(const String& propertyName, double defaultValue);
66 PassRefPtr<JSONObject> getObject(const String& propertyName);
68 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::create(value)); } argument
69 void setString(const String& propertyName, cons argument
70 setLong(const String& propertyName, long value) argument
71 setDouble(const String& propertyName, double value) argument
72 setObject(const String& propertyName, PassRefPtr<JSONObject> value) argument
[all...]
H A DInspectorState.cpp55 void InspectorState::setValue(const String& propertyName, PassRefPtr<JSONValue> value) argument
57 m_properties->setValue(propertyName, value);
61 void InspectorState::remove(const String& propertyName) argument
63 m_properties->remove(propertyName);
67 bool InspectorState::getBoolean(const String& propertyName) argument
69 JSONObject::iterator it = m_properties->find(propertyName);
76 String InspectorState::getString(const String& propertyName) argument
78 JSONObject::iterator it = m_properties->find(propertyName);
85 long InspectorState::getLong(const String& propertyName) argument
87 return getLong(propertyName,
91 getLong(const String& propertyName, long defaultValue) argument
100 getDouble(const String& propertyName) argument
105 getDouble(const String& propertyName, double defaultValue) argument
114 getObject(const String& propertyName) argument
[all...]
/external/chromium_org/ui/login/
H A Dscreen.js169 var propertyName = this.getPropertyNameOf_(observer);
170 if (propertyName) {
171 if (!this.contextObservers_.hasOwnProperty(propertyName))
172 this.contextObservers_[propertyName] = observer.bind(this);
173 realObserver = this.contextObservers_[propertyName];
186 var propertyName = this.getPropertyNameOf_(observer);
187 if (propertyName) {
188 if (!this.contextObservers_.hasOwnProperty(propertyName))
190 realObserver = this.contextObservers_[propertyName];
191 delete this.contextObservers_[propertyName];
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8CryptoKeyCustom.cpp25 virtual void setString(const char* propertyName, const char* value) argument
27 m_dictionary.set(propertyName, value);
30 virtual void setUint(const char* propertyName, unsigned value) argument
32 m_dictionary.set(propertyName, value);
35 virtual void setAlgorithm(const char* propertyName, const blink::WebCryptoAlgorithm& algorithm) argument
41 m_dictionary.set(propertyName, algorithmValue);
44 virtual void setUint8Array(const char* propertyName, const blink::WebVector<unsigned char>& vector) argument
47 m_dictionary.set(propertyName, toV8(uint8Array.get(), m_holder, m_isolate));
/external/chromium_org/content/shell/tools/plugin/Tests/
H A DNPRuntimeRemoveProperty.cpp51 bool hasProperty(NPIdentifier propertyName) argument
53 if (identifierIs(propertyName, "lastRemovedProperty"))
59 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
61 assert(identifierIs(propertyName, "lastRemovedProperty"));
78 bool removeProperty(NPIdentifier propertyName) argument
80 m_lastRemovedProperty = propertyName;
122 NPIdentifier propertyName;
127 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str());
130 propertyName = pluginTest()->NPN_GetIntIdentifier(number);
133 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName); local
139 hasProperty(NPIdentifier propertyName) argument
147 getProperty(NPIdentifier propertyName, NPVariant* result) argument
[all...]
H A DNPDeallocateCalledBeforeNPShutdown.cpp57 bool hasProperty(NPIdentifier propertyName) argument
59 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
62 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
64 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
H A DNPRuntimeObjectFromDestroyedPlugin.cpp64 bool hasProperty(NPIdentifier propertyName) argument
66 return identifierIs(propertyName, "testObject");
69 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
71 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
H A DPluginScriptableObjectOverridesAllProperties.cpp55 bool hasProperty(NPIdentifier propertyName) argument
60 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
63 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
H A DSlowNPPNew.cpp54 bool hasProperty(NPIdentifier propertyName) argument
59 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
62 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSStyleDeclaration.h53 virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(const String& propertyName) = 0;
54 virtual String getPropertyValue(const String& propertyName) = 0;
55 virtual String getPropertyPriority(const String& propertyName) = 0;
56 virtual String getPropertyShorthand(const String& propertyName) = 0;
57 virtual bool isPropertyImplicit(const String& propertyName) = 0;
58 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&) = 0;
59 virtual String removeProperty(const String& propertyName, ExceptionState&) = 0;
H A DCSSStyleDeclaration.idl28 DOMString? getPropertyValue([Default=Undefined] optional DOMString propertyName);
29 [RaisesException] DOMString? removeProperty([Default=Undefined] optional DOMString propertyName);
30 DOMString? getPropertyPriority([Default=Undefined] optional DOMString propertyName);
31 [RaisesException] void setProperty([Default=Undefined] optional DOMString propertyName,
38 [Custom] setter void (DOMString propertyName, DOMString? propertyValue);
44 [MeasureAs=CSSStyleDeclarationGetPropertyCSSValue] CSSValue getPropertyCSSValue([Default=Undefined] optional DOMString propertyName);
/external/chromium_org/extensions/renderer/resources/
H A Dplatform_app.js92 $Array.forEach(propertyNames, function(propertyName) {
93 var stub = generateDisabledMethodStub(objectName + '.' + propertyName,
96 $Object.defineProperty(object, propertyName, {
101 var descriptor = $Object.getOwnPropertyDescriptor(this, propertyName);
107 delete this[propertyName];
108 this[propertyName] = value;
134 $Array.forEach(propertyNames, function(propertyName) {
135 var stub = generateDisabledMethodStub(objectName + '.' + propertyName,
137 $Object.defineProperty(object, propertyName, {
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTransitionEvent.cpp42 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
44 , m_propertyName(propertyName)
52 , m_propertyName(initializer.propertyName)
62 const String& TransitionEvent::propertyName() const function in class:blink::TransitionEvent
H A DTransitionEvent.idl30 [InitializedByEventConstructor] readonly attribute DOMString propertyName;
H A DTransitionEvent.h37 String propertyName; member in struct:blink::TransitionEventInit
49 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
51 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement));
60 const String& propertyName() const;
70 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement);
/external/chromium_org/tools/perf/utils/results_viewer/src/
H A Dbase.js68 for (var propertyName in exports) {
73 propertyName);
75 Object.defineProperty(obj, propertyName, propertyDescriptor);
76 mLog(' +' + propertyName);
H A Dui.js62 for (var propertyName in opt_propertyBag) {
63 el[propertyName] = opt_propertyBag[propertyName];
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DPropertiesHelper.java20 String propertyName = variableMatcher.group(2);
23 propertyValue = properties.getProperty(propertyName);
26 propertyValue = System.getProperty(propertyName);
44 String propertyName = (String) propertyNames.nextElement();
45 String propertyValue = properties.getProperty(propertyName);
47 properties.setProperty(propertyName, expandedPropertyValue);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js48 var propertyName = property.name;
49 this._values.push(propertyName);
53 this._longhands[propertyName] = longhands;
61 shorthands.push(propertyName);
74 * @param {string} propertyName
77 WebInspector.CSSMetadata.isColorAwareProperty = function(propertyName)
79 return !!WebInspector.CSSMetadata._colorAwareProperties[propertyName.toLowerCase()];
93 * @param {string} propertyName
96 WebInspector.CSSMetadata.isLengthProperty = function(propertyName)
98 if (propertyName
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp60 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix) argument
66 ASSERT(propertyName.length());
69 if (toASCIILower(propertyName[0]) != prefix[0])
72 unsigned length = propertyName.length();
75 return isASCIIUpper(propertyName[i]);
76 if (propertyName[i] != prefix[i])
86 static CSSPropertyID cssResolvedPropertyID(const String& propertyName) argument
88 unsigned length = propertyName.length();
98 if (hasCSSPropertyNamePrefix(propertyName, "css"))
100 else if (hasCSSPropertyNamePrefix(propertyName, "webki
141 String propertyName = toCoreString(v8PropertyName); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DDOMMimeTypeArray.h48 bool canGetItemsForName(const AtomicString& propertyName);
49 PassRefPtrWillBeRawPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
H A DDOMPluginArray.h48 bool canGetItemsForName(const AtomicString& propertyName);
49 PassRefPtrWillBeRawPtr<DOMPlugin> namedItem(const AtomicString& propertyName);
/external/chromium-trace/trace-viewer/src/base/
H A Dproperties.js13 * @param {string} propertyName The name of the property that changed.
17 function dispatchPropertyChange(target, propertyName, newValue, oldValue,
19 var e = new base.Event(propertyName + 'Change',
21 e.propertyName = propertyName;
35 function setPropertyAndDispatchChange(obj, propertyName, newValue) {
36 var privateName = propertyName + '_';
37 var oldValue = obj[propertyName];
40 base.dispatchPropertyChange(obj, propertyName,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A Dnpruntime_impl.h57 bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier propertyName, NPVariant* result);
58 bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier propertyName, const NPVariant* value);
59 bool _NPN_RemoveProperty(NPP, NPObject*, NPIdentifier propertyName);
60 bool _NPN_HasProperty(NPP, NPObject*, NPIdentifier propertyName);

Completed in 2427 milliseconds

12345678