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

1234

/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dattributes.cpp18 v8::Handle<v8::String> propertyName = v8::String::NewFromUtf8(info.GetIsolate(), "{{attribute.name}}", v8::String::kInternalizedString); variable
21 v8::Handle<v8::Value> jsValue = info.Holder()->GetHiddenValue(propertyName);
64 info.Holder()->SetHiddenValue(propertyName, {{attribute.cpp_value}}.v8Value());
/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.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/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.cpp59 bool DOMPluginArray::canGetItemsForName(const AtomicString& propertyName) argument
66 if (plugins[i].name == propertyName)
72 PassRefPtr<DOMPlugin> DOMPluginArray::namedItem(const AtomicString& propertyName) argument
79 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/bindings/v8/
H A DExceptionMessages.cpp83 String ExceptionMessages::notASequenceTypeProperty(const String& propertyName) argument
85 return "'" + propertyName + "' property is neither an array, nor does it have indexed properties.";
H A DExceptionState.h64 ExceptionState(Context context, const char* propertyName, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate) argument
67 , m_propertyName(propertyName)
106 const char* propertyName() const { return m_propertyName; } function in class:WebCore::ExceptionState
H A DV8Utilities.cpp113 bool getMessagePortArray(v8::Local<v8::Value> value, const String& propertyName, MessagePortArray& ports, v8::Isolate* isolate) argument
120 throwTypeError(ExceptionMessages::notASequenceTypeProperty(propertyName), isolate);
124 ports = toRefPtrNativeArray<MessagePort, V8MessagePort>(value, propertyName, isolate, &success);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DElementAnimation.cpp42 CSSPropertyID ElementAnimation::camelCaseCSSPropertyNameToID(const String& propertyName) argument
44 if (propertyName.find('-') != kNotFound)
50 while ((end = propertyName.find(isASCIIUpper, position)) != kNotFound) {
51 builder.append(propertyName.substring(position, end - position) + "-" + toASCIILower((propertyName)[end]));
54 builder.append(propertyName.substring(position));
/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/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp61 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix) argument
67 ASSERT(propertyName.length());
70 if (toASCIILower(propertyName[0]) != prefix[0])
73 unsigned length = propertyName.length();
76 return isASCIIUpper(propertyName[i]);
77 if (propertyName[i] != prefix[i])
108 String propertyName = toCoreString(v8PropertyName); local
111 CSSPropertyInfo* propInfo = map.get(propertyName);
113 unsigned length = propertyName.length();
124 if (hasCSSPropertyNamePrefix(propertyName, "cs
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDatasetDOMStringMap.cpp74 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName) argument
79 unsigned propertyLength = propertyName.length();
89 if ((wordBoundary ? toASCIIUpper(attributeName[a]) : attributeName[a]) != propertyName[p])
/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.cpp172 AtomicString propertyName = toCoreAtomicString(name); local
173 RefPtr<Node> element = collection->namedItem(propertyName);
195 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name);
199 result = collection->anonymousNamedSetterUndefined(propertyName);
201 result = collection->anonymousNamedSetter(propertyName, propertyValue);
217 AtomicString propertyName = toCoreAtomicString(name); local
218 bool result = collection->anonymousNamedDeleter(propertyName);
246 AtomicString propertyName = toCoreAtomicString(name); local
248 bool result = collection->namedPropertyQuery(propertyName, exceptionState);
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
H A DImplicitAnimation.cpp152 String propertyName = getPropertyNameString(m_animatingProperty); local
163 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);

Completed in 413 milliseconds

1234