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

123456

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorState.h59 bool getBoolean(const String& propertyName);
60 String getString(const String& propertyName);
61 long getLong(const String& propertyName);
62 long getLong(const String& propertyName, long defaultValue);
63 double getDouble(const String& propertyName);
64 double getDouble(const String& propertyName, double defaultValue);
65 PassRefPtr<JSONObject> getObject(const String& propertyName);
67 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::create(value)); } argument
68 void setString(const String& propertyName, cons argument
69 setLong(const String& propertyName, long value) argument
70 setDouble(const String& propertyName, double value) argument
71 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/third_party/WebKit/Source/testing/plugin/Tests/
H A DNPRuntimeRemoveProperty.cpp47 bool hasProperty(NPIdentifier propertyName) argument
49 if (identifierIs(propertyName, "lastRemovedProperty"))
55 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
57 assert(identifierIs(propertyName, "lastRemovedProperty"));
74 bool removeProperty(NPIdentifier propertyName) argument
76 m_lastRemovedProperty = propertyName;
118 NPIdentifier propertyName;
123 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str());
126 propertyName = pluginTest()->NPN_GetIntIdentifier(number);
129 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName); local
135 hasProperty(NPIdentifier propertyName) argument
143 getProperty(NPIdentifier propertyName, NPVariant* result) argument
[all...]
H A DNPDeallocateCalledBeforeNPShutdown.cpp53 bool hasProperty(NPIdentifier propertyName) argument
55 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
58 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
60 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
H A DNPRuntimeObjectFromDestroyedPlugin.cpp60 bool hasProperty(NPIdentifier propertyName) argument
62 return identifierIs(propertyName, "testObject");
65 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
67 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
H A DPluginScriptableObjectOverridesAllProperties.cpp51 bool hasProperty(NPIdentifier propertyName) argument
56 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
59 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
H A DSlowNPPNew.cpp50 bool hasProperty(NPIdentifier propertyName) argument
55 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
58 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dplatform_app.js50 $Array.forEach(propertyNames, function(propertyName) {
51 var stub = generateDisabledMethodStub(objectName + '.' + propertyName,
54 object.__defineGetter__(propertyName, stub);
56 object.__defineSetter__(propertyName, function(value) {
57 var getter = this.__lookupGetter__(propertyName);
62 delete this[propertyName];
63 this[propertyName] = value;
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen.js76 Object.getOwnPropertyNames(proto).forEach(function(propertyName) {
78 Object.getOwnPropertyDescriptor(proto, propertyName);
80 propertyName, descriptor);
81 if (api.indexOf(propertyName) >= 0) {
82 constructor[propertyName] = (function(x) {
87 })(propertyName);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSStyleDeclaration.idl27 [TreatReturnedNullStringAs=Null] DOMString getPropertyValue([Default=Undefined] optional DOMString propertyName);
28 CSSValue getPropertyCSSValue([Default=Undefined] optional DOMString propertyName);
29 [TreatReturnedNullStringAs=Null, RaisesException] DOMString removeProperty([Default=Undefined] optional DOMString propertyName);
30 [TreatReturnedNullStringAs=Null] DOMString getPropertyPriority([Default=Undefined] optional DOMString propertyName);
31 [RaisesException] void setProperty([Default=Undefined] optional DOMString propertyName,
38 [Custom] setter void (DOMString propertyName, [TreatNullAs=NullString] DOMString propertyValue);
H A DCSSStyleDeclaration.h54 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName) = 0;
55 virtual String getPropertyValue(const String& propertyName) = 0;
56 virtual String getPropertyPriority(const String& propertyName) = 0;
57 virtual String getPropertyShorthand(const String& propertyName) = 0;
58 virtual bool isPropertyImplicit(const String& propertyName) = 0;
59 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&) = 0;
60 virtual String removeProperty(const String& propertyName, ExceptionState&) = 0;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTransitionEvent.cpp45 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
47 , m_propertyName(propertyName)
56 , m_propertyName(initializer.propertyName)
67 const String& TransitionEvent::propertyName() const function in class:WebCore::TransitionEvent
H A DTransitionEvent.idl30 [InitializedByEventConstructor] readonly attribute DOMString propertyName;
H A DTransitionEvent.h37 String propertyName; member in struct:WebCore::TransitionEventInit
48 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
50 return adoptRef(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement));
59 const String& propertyName() const;
67 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/bindings/v8/
H A DExceptionState.cpp107 if (propertyName() && interfaceName() && m_context != UnknownContext) {
109 processedMessage = ExceptionMessages::failedToDelete(propertyName(), interfaceName(), message);
111 processedMessage = ExceptionMessages::failedToExecute(propertyName(), interfaceName(), message);
113 processedMessage = ExceptionMessages::failedToGet(propertyName(), interfaceName(), message);
115 processedMessage = ExceptionMessages::failedToSet(propertyName(), interfaceName(), message);
116 } else if (!propertyName() && interfaceName() && m_context == ConstructionContext) {
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);
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DDOMMimeTypeArray.h44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
H A DDOMPluginArray.h44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<DOMPlugin> namedItem(const AtomicString& propertyName);
H A DDOMMimeTypeArray.cpp59 bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName) argument
66 if (mimes[i].type == propertyName)
72 PassRefPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicString& propertyName) argument
79 if (mimes[i].type == propertyName)
H A DDOMPlugin.cpp74 bool DOMPlugin::canGetItemsForName(const AtomicString& propertyName) argument
78 if (mimes[i].type == propertyName)
83 PassRefPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& propertyName) argument
87 if (mimes[i].type == 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/core/animation/
H A DElementAnimation.h43 static CSSPropertyID camelCaseCSSPropertyNameToID(const String& propertyName);

Completed in 629 milliseconds

123456