HomeSort by relevance Sort by last modified time
    Searched refs:propertyName (Results 51 - 75 of 279) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/dom/
WebKitTransitionEvent.idl 29 readonly attribute DOMString propertyName;
  /external/webkit/Source/WebCore/plugins/
DOMMimeTypeArray.h 44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
DOMPluginArray.h 44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<DOMPlugin> namedItem(const AtomicString& propertyName);
DOMMimeTypeArray.cpp 59 bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName)
66 if (mimes[i].type == propertyName)
72 PassRefPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicString& propertyName)
79 if (mimes[i].type == propertyName)
DOMPluginArray.cpp 59 bool DOMPluginArray::canGetItemsForName(const AtomicString& propertyName)
66 if (plugins[i].name == propertyName)
72 PassRefPtr<DOMPlugin> DOMPluginArray::namedItem(const AtomicString& propertyName)
79 if (plugins[i].name == propertyName)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.h 70 bool hasProperty(NPIdentifier propertyName);
71 bool getProperty(NPIdentifier propertyName, NPVariant* result);
72 bool setProperty(NPIdentifier propertyName, const NPVariant* value);
73 bool removeProperty(NPIdentifier propertyName);
85 static bool NP_HasProperty(NPObject*, NPIdentifier propertyName);
86 static bool NP_GetProperty(NPObject*, NPIdentifier propertyName, NPVariant* result);
87 static bool NP_SetProperty(NPObject*, NPIdentifier propertyName, const NPVariant* value);
88 static bool NP_RemoveProperty(NPObject*, NPIdentifier propertyName);
  /external/webkit/Source/WebCore/bridge/
runtime_object.cpp 60 JSValue RuntimeObject::fallbackObjectGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
71 JSValue result = aClass->fallbackObject(exec, instance.get(), propertyName);
78 JSValue RuntimeObject::fieldGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
89 Field* aField = aClass->fieldNamed(propertyName, instance.get());
97 JSValue RuntimeObject::methodGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
107 JSValue method = instance->getMethod(exec, propertyName);
114 bool RuntimeObject::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
129 Field *aField = aClass->fieldNamed(propertyName, instance.get());
137 MethodList methodList = aClass->methodsNamed(propertyName, instance.get());
147 if (!aClass->fallbackObject(exec, instance.get(), propertyName).isUndefined())
    [all...]
runtime_array.h 44 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
45 virtual void put(ExecState*, unsigned propertyName, JSValue);
47 virtual bool deleteProperty(ExecState* exec, const Identifier &propertyName);
48 virtual bool deleteProperty(ExecState* exec, unsigned propertyName);
runtime_object.h 41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
42 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
43 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
runtime_method.cpp 67 bool RuntimeMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
69 if (propertyName == exec->propertyNames().length) {
74 return InternalFunction::getOwnPropertySlot(exec, propertyName, slot);
77 bool RuntimeMethod::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor &descriptor)
79 if (propertyName == exec->propertyNames().length) {
82 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
86 return InternalFunction::getOwnPropertyDescriptor(exec, propertyName, descriptor);
  /external/webkit/Source/JavaScriptCore/runtime/
ObjectPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
StringObject.h 36 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
37 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
40 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue, PutPropertySlot&);
41 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
Structure.h 69 static Structure* addPropertyTransition(JSGlobalData&, Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
70 static Structure* addPropertyTransitionToExistingStructure(Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
71 static Structure* removePropertyTransition(JSGlobalData&, Structure*, const Identifier& propertyName, size_t& offset);
90 size_t addPropertyWithoutTransition(JSGlobalData&, const Identifier& propertyName, unsigned attributes, JSCell* specificValue);
91 size_t removePropertyWithoutTransition(JSGlobalData&, const Identifier& propertyName);
111 size_t get(JSGlobalData&, const Identifier& propertyName);
112 size_t get(JSGlobalData&, StringImpl* propertyName, unsigned& attributes, JSCell*& specificValue);
113 size_t get(JSGlobalData& globalData, const Identifier& propertyName, unsigned& attributes, JSCell*& specificValue)
115 ASSERT(!propertyName.isNull());
116 return get(globalData, propertyName.impl(), attributes, specificValue)
    [all...]
Arguments.cpp 181 bool Arguments::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
184 unsigned i = propertyName.toArrayIndex(isArrayIndex);
193 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
198 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) {
206 if (propertyName == exec->propertyNames().caller && d->isStrictMode)
209 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
212 bool Arguments::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
215 unsigned i = propertyName.toArrayIndex(isArrayIndex);
224 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
229 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee))
    [all...]
Lookup.cpp 71 void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot)
76 WriteBarrierBase<Unknown>* location = thisObj->getDirectLocation(exec->globalData(), propertyName);
83 function = new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, exec->globalData().getHostFunction(entry->function(), entry->generator()));
86 function = new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, entry->function());
88 thisObj->putDirectFunction(exec->globalData(), propertyName, function, entry->attributes());
89 location = thisObj->getDirectLocation(exec->globalData(), propertyName);
JSVariableObject.h 92 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot)
94 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.impl());
102 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot, bool& slotIsWriteable)
104 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.impl());
113 inline bool JSVariableObject::symbolTablePut(JSGlobalData& globalData, const Identifier& propertyName, JSValue value)
117 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.impl());
126 inline bool JSVariableObject::symbolTablePutWithAttributes(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes)
130 SymbolTable::iterator iter = symbolTable().find(propertyName.impl());
  /external/webkit/Source/WebCore/bindings/v8/
npruntime_impl.h 61 bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier propertyName, NPVariant* result);
62 bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier propertyName, const NPVariant* value);
63 bool _NPN_RemoveProperty(NPP, NPObject*, NPIdentifier propertyName);
64 bool _NPN_HasProperty(NPP, NPObject*, NPIdentifier propertyName);
  /external/webkit/Source/WebKit/chromium/public/
WebAnimationController.h 50 const WebString& propertyName,
  /external/webkit/Source/WebKit/chromium/src/
WebAnimationControllerImpl.h 52 const WebString& propertyName,
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeRemoveProperty.cpp 59 NPIdentifier propertyName;
64 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str());
67 propertyName = pluginTest()->NPN_GetIntIdentifier(number);
70 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName);
  /frameworks/opt/vcard/java/com/android/vcard/
VCardSourceDetector.java 103 final String propertyName = property.getName();
106 if (propertyName.equalsIgnoreCase(VCardConstants.PROPERTY_VERSION)
118 } else if (propertyName.equalsIgnoreCase(TYPE_FOMA_CHARSET_SIGN)) {
127 if (WINDOWS_MOBILE_PHONE_SIGNS.contains(propertyName)) {
129 } else if (FOMA_SIGNS.contains(propertyName)) {
131 } else if (JAPANESE_MOBILE_PHONE_SIGNS.contains(propertyName)) {
133 } else if (APPLE_SIGNS.contains(propertyName)) {
  /external/webkit/Source/WebCore/bindings/js/
JSPluginElementFunctions.cpp 103 JSValue runtimeObjectPropertyGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
110 return scriptObject->get(exec, propertyName);
113 bool runtimeObjectCustomGetOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot, JSHTMLElement* element)
119 if (!scriptObject->hasProperty(exec, propertyName))
125 bool runtimeObjectCustomGetOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor, JSHTMLElement* element)
130 if (!scriptObject->hasProperty(exec, propertyName))
137 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontEnum | DontDelete);
141 bool runtimeObjectCustomPut(ExecState* exec, const Identifier& propertyName, JSValue value, JSHTMLElement* element, PutPropertySlot& slot)
146 if (!scriptObject->hasProperty(exec, propertyName))
148 scriptObject->put(exec, propertyName, value, slot)
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptoriginalglobalobject_p.h 78 JSRetainPtr<JSStringRef> propertyName;
80 propertyName.adopt(JSStringCreateWithUTF8CString("prototype"));
81 initializeMember(globalObject, propertyName.get(), "Array", m_arrayConstructor, m_arrayPrototype);
82 initializeMember(globalObject, propertyName.get(), "Error", m_errorConstructor, m_errorPrototype);
83 initializeMember(globalObject, propertyName.get(), "Function", m_functionConstructor, m_functionPrototype);
84 initializeMember(globalObject, propertyName.get(), "Date", m_dateConstructor, m_datePrototype);
86 propertyName.adopt(JSStringCreateWithUTF8CString("hasOwnProperty"));
87 m_hasOwnPropertyFunction = const_cast<JSObjectRef>(JSObjectGetProperty(m_context, globalObject, propertyName.get(), &exception));
93 propertyName.adopt(JSStringCreateWithUTF8CString("Object"));
95 = const_cast<JSObjectRef>(JSObjectGetProperty(m_context, globalObject, propertyName.get(), &exception))
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObjectFunctions.h 114 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
124 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
132 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
151 if (staticValues->contains(propertyName.impl())) {
158 if (staticFunctions->contains(propertyName.impl())) {
165 return Base::getOwnPropertySlot(exec, propertyName, slot);
169 bool JSCallbackObject<Base>::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
172 if (getOwnPropertySlot(exec, propertyName, slot)) {
174 JSValue value = slot.getValue(exec, propertyName);
184 return Base::getOwnPropertyDescriptor(exec, propertyName, descriptor)
    [all...]
  /external/webkit/Source/JavaScriptGlue/
JSObject.h 44 JSUserObject* CopyProperty(CFStringRef propertyName);
45 void SetProperty(CFStringRef propertyName, JSUserObject* value);

Completed in 2482 milliseconds

1 23 4 5 6 7 8 91011>>