Searched defs:propertyName (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/dom/
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.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);
H A DDatasetDOMStringMap.cpp73 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName) argument
78 unsigned propertyLength = propertyName.length();
88 if ((wordBoundary ? toASCIIUpper(attributeName[a]) : attributeName[a]) != propertyName[p])
/external/chromium_org/third_party/WebKit/Source/core/plugins/
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)
H A DDOMPluginArray.cpp60 bool DOMPluginArray::canGetItemsForName(const AtomicString& propertyName) argument
67 if (plugins[i].name == propertyName)
73 PassRefPtr<DOMPlugin> DOMPluginArray::namedItem(const AtomicString& propertyName) argument
80 if (plugins[i].name == propertyName)
/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
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 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 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 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/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 double getDouble(const String& propertyName);
64 PassRefPtr<JSONObject> getObject(const String& propertyName);
66 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::create(value)); } argument
67 void setString(const String& propertyName, const String& value) { setValue(propertyName, JSONString::create(value)); } argument
68 void setLong(const String& propertyName, lon argument
69 setDouble(const String& propertyName, double value) argument
70 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 JSONObject::iterator it = m_properties->find(propertyName);
94 getDouble(const String& propertyName) argument
103 getObject(const String& propertyName) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp63 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix) argument
69 ASSERT(propertyName.length());
72 if (toASCIILower(propertyName[0]) != prefix[0])
75 unsigned length = propertyName.length();
78 return isASCIIUpper(propertyName[i]);
79 if (propertyName[i] != prefix[i])
101 String propertyName = toWebCoreString(v8PropertyName); local
104 CSSPropertyInfo* propInfo = map.get(propertyName);
106 unsigned length = propertyName.length();
115 if (hasCSSPropertyNamePrefix(propertyName, "cs
[all...]
/external/emma/core/java12/com/vladium/util/exception/
H A DExceptionCommon.java371 * @return property value corresponding to 'propertyName' [null if lookup fails]
373 private static String lookup (Class namespace, final String propertyName) argument
375 if (propertyName == null) return null;
406 propertyValue = rb.getString (propertyName);
423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName);
/external/chromium_org/content/child/npapi/
H A Dnpobject_util.cc56 NPIdentifier propertyName) {
57 return NPObjectProxy::NPHasProperty(npobj, propertyName);
62 NPIdentifier propertyName,
64 return NPObjectProxy::NPGetProperty(npobj, propertyName, result);
69 NPIdentifier propertyName,
71 return NPObjectProxy::NPSetProperty(npobj, propertyName, value);
76 NPIdentifier propertyName) {
77 return NPObjectProxy::NPRemoveProperty(npobj, propertyName);
54 NPN_HasPropertyPatch(NPP npp, NPObject *npobj, NPIdentifier propertyName) argument
60 NPN_GetPropertyPatch(NPP npp, NPObject *npobj, NPIdentifier propertyName, NPVariant *result) argument
67 NPN_SetPropertyPatch(NPP npp, NPObject *npobj, NPIdentifier propertyName, const NPVariant *value) argument
74 NPN_RemovePropertyPatch(NPP npp, NPObject *npobj, NPIdentifier propertyName) argument
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestEventTarget.cpp174 AtomicString propertyName = toWebCoreAtomicString(name); local
175 RefPtr<Node> element = collection->namedItem(propertyName);
197 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name);
201 result = collection->anonymousNamedSetterUndefined(propertyName);
203 result = collection->anonymousNamedSetter(propertyName, propertyValue);
219 AtomicString propertyName = toWebCoreAtomicString(name); local
220 bool result = collection->anonymousNamedDeleter(propertyName);
248 AtomicString propertyName = toWebCoreAtomicString(name); local
250 bool result = collection->namedPropertyQuery(propertyName, es);
H A DV8TestSerializedScriptValueInterface.cpp110 v8::Handle<v8::String> propertyName = v8::String::NewSymbol("cachedValue"); local
111 v8::Handle<v8::Value> value = info.Holder()->GetHiddenValue(propertyName);
119 info.Holder()->SetHiddenValue(propertyName, value);
149 v8::Handle<v8::String> propertyName = v8::String::NewSymbol("cachedReadonlyValue"); local
150 v8::Handle<v8::Value> value = info.Holder()->GetHiddenValue(propertyName);
158 info.Holder()->SetHiddenValue(propertyName, value);
/external/chromium_org/third_party/WebKit/Source/core/page/animation/
H A DImplicitAnimation.cpp153 String propertyName = getPropertyNameString(m_animatingProperty); local
164 m_compAnim->animationController()->addEventToDispatch(element, eventType, propertyName, elapsedTime);
/external/chromium_org/third_party/WebKit/Source/testing/plugin/
H A DPluginTest.h49 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
50 DEFINE_HAS_MEMBER_CHECK(getProperty, bool, (NPIdentifier propertyName, NPVariant* result));
51 DEFINE_HAS_MEMBER_CHECK(removeProperty, bool, (NPIdentifier propertyName));
91 bool NPN_GetProperty(NPObject*, NPIdentifier propertyName, NPVariant* value);
92 bool NPN_RemoveProperty(NPObject*, NPIdentifier propertyName);
164 bool hasProperty(NPIdentifier propertyName) argument
170 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
176 bool removeProperty(NPIdentifier propertyName) argument
226 static bool NP_HasProperty(NPObject* npObject, NPIdentifier propertyName) argument
228 return static_cast<T*>(npObject)->hasProperty(propertyName);
231 NP_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* result) argument
236 NP_RemoveProperty(NPObject* npObject, NPIdentifier propertyName) argument
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
H A DProperties.java198 * other type than IDP_GROUP and its name matches 'propertyName' param. If
204 * @param propertyName
209 public Object findValue(String propertyName) { argument
210 if (name.equals(propertyName)) {
216 Object v = p.findValue(propertyName);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DNPV8Object.cpp368 bool _NPN_GetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, NPVariant* result) argument
384 v8::Local<v8::Value> v8result = obj->Get(npIdentifierToV8Identifier(propertyName));
394 if (npObject->_class->hasProperty(npObject, propertyName))
395 return npObject->_class->getProperty(npObject, propertyName, result);
402 bool _NPN_SetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, const NPVariant* value) argument
418 obj->Set(npIdentifierToV8Identifier(propertyName), convertNPVariantToV8Object(value, object->rootObject->frame()->script()->windowScriptNPObject(), context->GetIsolate()));
423 return npObject->_class->setProperty(npObject, propertyName, value);
428 bool _NPN_RemoveProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName) argument
447 obj->Set(npIdentifierToV8Identifier(propertyName), v8::Undefined());
451 bool _NPN_HasProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DPropertySetCSSStyleDeclaration.cpp165 PassRefPtr<CSSValue> PropertySetCSSStyleDeclaration::getPropertyCSSValue(const String& propertyName) argument
167 CSSPropertyID propertyID = cssPropertyID(propertyName);
173 String PropertySetCSSStyleDeclaration::getPropertyValue(const String &propertyName) argument
175 CSSPropertyID propertyID = cssPropertyID(propertyName);
181 String PropertySetCSSStyleDeclaration::getPropertyPriority(const String& propertyName) argument
183 CSSPropertyID propertyID = cssPropertyID(propertyName);
189 String PropertySetCSSStyleDeclaration::getPropertyShorthand(const String& propertyName) argument
191 CSSPropertyID propertyID = cssPropertyID(propertyName);
200 bool PropertySetCSSStyleDeclaration::isPropertyImplicit(const String& propertyName) argument
202 CSSPropertyID propertyID = cssPropertyID(propertyName);
208 setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState& es) argument
230 removeProperty(const String& propertyName, ExceptionState& es) argument
[all...]
H A DCSSPrimitiveValue.cpp207 static const AtomicString& propertyName(CSSPropertyID propertyID) function in namespace:WebCore
774 return propertyName(m_value.propertyID);
794 return propertyName(m_value.propertyID);
971 text = propertyName(m_value.propertyID);
1273 return propertyName(m_value.propertyID) == propertyName(other.m_value.propertyID);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricTestRunner.java420 private static String getSystemProperty(String propertyName, String defaultValue) { argument
421 String property = System.getProperty(propertyName);
424 logger.info("No system property " + propertyName + " found, default to "

Completed in 603 milliseconds

123