HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 26 - 50 of 216) sorted by null

12 3 4 5 6 7 8 9

  /external/webkit/WebCore/bindings/js/
JSPluginCustom.cpp 30 bool JSPlugin::canGetItemsForName(ExecState*, Plugin* plugin, const Identifier& propertyName)
32 return plugin->canGetItemsForName(propertyName);
35 JSValue JSPlugin::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
38 return toJS(exec, thisObj->impl()->namedItem(propertyName));
JSPluginElementFunctions.cpp 68 JSValue runtimeObjectPropertyGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
75 return runtimeObject->get(exec, propertyName);
78 bool runtimeObjectCustomGetOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot, JSHTMLElement* element)
83 if (!runtimeObject->hasProperty(exec, propertyName))
89 bool runtimeObjectCustomGetOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor, JSHTMLElement* element)
94 if (!runtimeObject->hasProperty(exec, propertyName))
101 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontEnum | DontDelete);
105 bool runtimeObjectCustomPut(ExecState* exec, const Identifier& propertyName, JSValue value, HTMLElement* element, PutPropertySlot& slot)
110 if (!runtimeObject->hasProperty(exec, propertyName))
112 runtimeObject->put(exec, propertyName, value, slot)
    [all...]
JSHistoryCustom.cpp 41 static JSValue nonCachingStaticBackFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
43 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsHistoryPrototypeFunctionBack);
46 static JSValue nonCachingStaticForwardFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
48 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsHistoryPrototypeFunctionForward);
51 static JSValue nonCachingStaticGoFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
53 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 1, propertyName, jsHistoryPrototypeFunctionGo);
56 bool JSHistory::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
68 const HashEntry* entry = JSHistoryPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
85 if (propertyName == exec->propertyNames().toString) {
96 bool JSHistory::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor
    [all...]
JSDataGridColumnListCustom.cpp 41 bool JSDataGridColumnList::canGetItemsForName(ExecState*, DataGridColumnList* impl, const Identifier& propertyName)
43 return impl->itemWithName(propertyName);
46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
49 return toJS(exec, thisObj->globalObject(), thisObj->impl()->itemWithName(propertyName));
JSNamedNodeMapCustom.cpp 38 bool JSNamedNodeMap::canGetItemsForName(ExecState*, NamedNodeMap* impl, const Identifier& propertyName)
40 return impl->getNamedItem(propertyName);
43 JSValue JSNamedNodeMap::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
46 return toJS(exec, thisObj->impl()->getNamedItem(propertyName));
JSDOMWindowShell.h 73 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
74 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
75 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
76 virtual void putWithAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, unsigned attributes);
77 virtual bool deleteProperty(JSC::ExecState*, const JSC::Identifier& propertyName);
80 virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* getterFunction, unsigned attributes);
81 virtual void defineSetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* setterFunction, unsigned attributes);
82 virtual bool defineOwnProperty(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&, bool shouldThrow);
83 virtual JSC::JSValue lookupGetter(JSC::ExecState*, const JSC::Identifier& propertyName);
84 virtual JSC::JSValue lookupSetter(JSC::ExecState*, const JSC::Identifier& propertyName);
    [all...]
JSDOMWindowCustom.cpp 127 JSValue nonCachingStaticFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
129 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), length, propertyName, nativeFunction);
132 static JSValue childFrameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
134 return toJS(exec, static_cast<JSDOMWindow*>(asObject(slot.slotBase()))->impl()->frame()->tree()->child(AtomicString(propertyName))->domWindow());
142 static JSValue namedItemGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
151 RefPtr<HTMLCollection> collection = document->windowNamedItems(propertyName);
157 bool JSDOMWindow::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
169 entry = s_info.propHashTable(exec)->entry(exec, propertyName);
174 entry = JSDOMWindowPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
194 if (allowsAccess && JSGlobalObject::getOwnPropertySlot(exec, propertyName, slot)
    [all...]
  /external/webkit/WebCore/dom/
WebKitTransitionEvent.cpp 39 WebKitTransitionEvent::WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime)
41 , m_propertyName(propertyName)
53 const String& propertyName,
61 m_propertyName = propertyName;
65 const String& WebKitTransitionEvent::propertyName() const
  /libcore/luni/src/main/java/java/beans/
IndexedPropertyChangeEvent.java 36 * @param propertyName
41 * the <code>propertyName</code> is <code>null</code> or the
45 * <code>propertyName</code> is <code>null</code> or the new
50 public IndexedPropertyChangeEvent(Object source, String propertyName,
52 super(source, propertyName, oldValue, newValue);
PropertyChangeEvent.java 30 String propertyName;
43 * @param propertyName
48 * the <code>propertyName</code> is <code>null</code> or the
52 * <code>propertyName</code> is <code>null</code> or the new
55 public PropertyChangeEvent(Object source, String propertyName,
59 this.propertyName = propertyName;
71 return propertyName;
  /external/webkit/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 58 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix)
64 ASSERT(propertyName.length());
67 if (WTF::toASCIILower(propertyName[0]) != prefix[0])
70 unsigned length = propertyName.length();
73 return WTF::isASCIIUpper(propertyName[i]);
74 if (propertyName[i] != prefix[i])
100 String propertyName = toWebCoreString(v8PropertyName);
103 CSSPropertyInfo* propInfo = map.get(propertyName);
105 unsigned length = propertyName.length();
115 if (hasCSSPropertyNamePrefix(propertyName, "css")
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackObjectFunctions.h 110 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
120 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
128 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
147 if (staticValues->contains(propertyName.ustring().rep())) {
154 if (staticFunctions->contains(propertyName.ustring().rep())) {
161 return Base::getOwnPropertySlot(exec, propertyName, slot);
165 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
167 return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
171 bool JSCallbackObject<Base>::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
174 if (getOwnPropertySlot(exec, propertyName, slot))
    [all...]
  /external/webkit/WebCore/inspector/front-end/
Settings.js 74 _installSetting: function(name, propertyName, defaultValue)
76 this.__defineGetter__(name, this._get.bind(this, propertyName));
77 this.__defineSetter__(name, this._set.bind(this, propertyName));
78 if (!(propertyName in this._store)) {
79 this._store[propertyName] = defaultValue;
83 _get: function(propertyName)
85 return this._store[propertyName];
88 _set: function(propertyName, newValue)
90 this._store[propertyName] = newValue;
  /external/webkit/WebCore/bridge/
runtime_array.cpp 72 bool RuntimeArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
74 if (propertyName == exec->propertyNames().length) {
80 unsigned index = propertyName.toArrayIndex(&ok);
88 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
91 bool RuntimeArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
93 if (propertyName == exec->propertyNames().length) {
96 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
101 unsigned index = propertyName.toArrayIndex(&ok);
106 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete | DontEnum);
111 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)
    [all...]
runtime_method.cpp 66 bool RuntimeMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
68 if (propertyName == exec->propertyNames().length) {
73 return InternalFunction::getOwnPropertySlot(exec, propertyName, slot);
76 bool RuntimeMethod::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor &descriptor)
78 if (propertyName == exec->propertyNames().length) {
81 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
85 return InternalFunction::getOwnPropertyDescriptor(exec, propertyName, descriptor);
  /external/webkit/JavaScriptCore/runtime/
JSActivation.cpp 71 bool JSActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
73 if (symbolTableGet(propertyName, slot))
76 if (JSValue* location = getDirectLocation(propertyName)) {
82 if (propertyName == exec->propertyNames().arguments) {
94 void JSActivation::put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
98 if (symbolTablePut(propertyName, value))
105 putDirect(propertyName, value, 0, true, slot);
109 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
113 if (symbolTablePutWithAttributes(propertyName, value, attributes))
121 JSObject::putWithAttributes(exec, propertyName, value, attributes, true, slot)
    [all...]
Arguments.cpp 157 bool Arguments::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
160 unsigned i = propertyName.toArrayIndex(&isArrayIndex);
169 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
174 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) {
179 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
182 bool Arguments::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
185 unsigned i = propertyName.toArrayIndex(&isArrayIndex);
194 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
199 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) {
204 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)
    [all...]
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);
JSVariableObject.cpp 37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName)
39 if (symbolTable().contains(propertyName.ustring().rep()))
42 return JSObject::deleteProperty(exec, propertyName);
61 bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertyDescriptor& descriptor)
63 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
Lookup.cpp 67 void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot)
70 JSValue* location = thisObj->getDirectLocation(propertyName);
73 InternalFunction* function = new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), entry->functionLength(), propertyName, entry->function());
75 thisObj->putDirectFunction(propertyName, function, entry->attributes());
76 location = thisObj->getDirectLocation(propertyName);
JSString.cpp 194 bool JSString::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
198 if (getStringPropertySlot(exec, propertyName, slot))
200 if (propertyName == exec->propertyNames().underscoreProto) {
208 if (object->getOwnPropertySlot(exec, propertyName, slot))
215 bool JSString::getStringPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
217 if (propertyName == exec->propertyNames().length) {
223 unsigned i = propertyName.toStrictUInt32(&isStrictUInt32);
232 bool JSString::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
234 if (getStringPropertyDescriptor(exec, propertyName, descriptor))
236 if (propertyName != exec->propertyNames().underscoreProto
    [all...]
Structure.h 74 static PassRefPtr<Structure> addPropertyTransition(Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
75 static PassRefPtr<Structure> addPropertyTransitionToExistingStructure(Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
76 static PassRefPtr<Structure> removePropertyTransition(Structure*, const Identifier& propertyName, size_t& offset);
88 size_t addPropertyWithoutTransition(const Identifier& propertyName, unsigned attributes, JSCell* specificValue);
89 size_t removePropertyWithoutTransition(const Identifier& propertyName);
108 size_t get(const Identifier& propertyName);
110 size_t get(const Identifier& propertyName, unsigned& attributes, JSCell*& specificValue)
112 ASSERT(!propertyName.isNull());
113 return get(propertyName.ustring().rep(), attributes, specificValue);
120 bool hasTransition(const Identifier& propertyName, unsigned attributes
    [all...]
JSNotAnObject.h 84 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
85 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
88 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
89 virtual void put(ExecState*, unsigned propertyName, JSValue);
91 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
92 virtual bool deleteProperty(ExecState*, unsigned propertyName);
  /external/webkit/JavaScriptGlue/
JavaScriptGlue.cpp 41 static JSObjectRef CFJSObjectCopyProperty(void *data, CFStringRef propertyName);
42 static void CFJSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
199 JSObjectRef JSObjectCopyProperty(JSObjectRef ref, CFStringRef propertyName)
205 result = (JSObjectRef)ptr->CopyProperty(propertyName);
214 void JSObjectSetProperty(JSObjectRef ref, CFStringRef propertyName, JSObjectRef value)
219 ptr->SetProperty(propertyName, (JSUserObject*)value);
426 JSObjectRef CFJSObjectCopyProperty(void *data, CFStringRef propertyName)
429 if (data && propertyName)
434 if (CFStringCompare(propertyName, CFSTR("length"), 0) == kCFCompareEqualTo)
441 cfResult = RetainCFType(CFDictionaryGetValue((CFDictionaryRef)data, propertyName));
    [all...]
  /external/webkit/WebKit/win/Interfaces/
DOMCSS.idl 138 - (NSString *)getPropertyValue:(NSString *)propertyName;
140 HRESULT getPropertyValue([in] BSTR propertyName, [out, retval] BSTR* result);
143 - (DOMCSSValue *)getPropertyCSSValue:(NSString *)propertyName;
145 HRESULT getPropertyCSSValue([in] BSTR propertyName, [out, retval] IDOMCSSValue** result);
148 - (NSString *)removeProperty:(NSString *)propertyName;
150 HRESULT removeProperty([in] BSTR propertyName, [out, retval] BSTR* result);
153 - (NSString *)getPropertyPriority:(NSString *)propertyName;
155 HRESULT getPropertyPriority([in] BSTR propertyName, [out, retval] BSTR* result);
158 - (void)setProperty:(NSString *)propertyName :(NSString *)value :(NSString *)priority;
160 HRESULT setProperty([in] BSTR propertyName, [in] BSTR value, [in] BSTR priority)
    [all...]

Completed in 255 milliseconds

12 3 4 5 6 7 8 9