HomeSort by relevance Sort by last modified time
    Searched refs:propertyName (Results 76 - 100 of 282) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/plugins/
DOMPlugin.h 45 bool canGetItemsForName(const AtomicString& propertyName);
46 PassRefPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
DOMPlugin.cpp 78 bool DOMPlugin::canGetItemsForName(const AtomicString& propertyName)
82 if (mimes[i].type == propertyName)
87 PassRefPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& propertyName)
91 if (mimes[i].type == propertyName)
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
JSWrapper.h 49 inline void setProperty(JSContextRef context, JSObjectRef object, const char* propertyName, JSWrappable* value, JSPropertyAttributes attributes, JSValueRef* exception)
51 JSRetainPtr<JSStringRef> propertyNameString(Adopt, JSStringCreateWithUTF8CString(propertyName));
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.cpp 106 JSValue nonCachingStaticFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName)
108 return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->functionStructure(), length, propertyName, nativeFunction);
111 static JSValue childFrameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
113 return toJS(exec, static_cast<JSDOMWindow*>(asObject(slotBase))->impl()->frame()->tree()->child(identifierToAtomicString(propertyName))->domWindow());
121 static JSValue namedItemGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
130 RefPtr<HTMLCollection> collection = document->windowNamedItems(identifierToString(propertyName));
136 bool JSDOMWindow::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
148 entry = s_info.propHashTable(exec)->entry(exec, propertyName);
153 entry = JSDOMWindowPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
173 if (allowsAccess && JSGlobalObject::getOwnPropertySlot(exec, propertyName, slot)
    [all...]
JSNamedNodeMapCustom.cpp 71 bool JSNamedNodeMap::canGetItemsForName(ExecState*, NamedNodeMap* impl, const Identifier& propertyName)
73 return impl->getNamedItem(identifierToString(propertyName));
76 JSValue JSNamedNodeMap::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
79 return toJS(exec, thisObj->impl()->getNamedItem(identifierToString(propertyName)));
JSHTMLAllCollectionCustom.cpp 44 static JSValue getNamedItems(ExecState* exec, JSHTMLAllCollection* collection, const Identifier& propertyName)
47 collection->impl()->namedItems(identifierToAtomicString(propertyName), namedItems);
109 bool JSHTMLAllCollection::canGetItemsForName(ExecState*, HTMLAllCollection* collection, const Identifier& propertyName)
112 collection->namedItems(identifierToAtomicString(propertyName), namedItems);
116 JSValue JSHTMLAllCollection::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
119 return getNamedItems(exec, thisObj, propertyName);
JSHTMLCollectionCustom.cpp 40 static JSValue getNamedItems(ExecState* exec, JSHTMLCollection* collection, const Identifier& propertyName)
43 collection->impl()->namedItems(identifierToAtomicString(propertyName), namedItems);
105 bool JSHTMLCollection::canGetItemsForName(ExecState*, HTMLCollection* collection, const Identifier& propertyName)
108 collection->namedItems(identifierToAtomicString(propertyName), namedItems);
112 JSValue JSHTMLCollection::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
115 return getNamedItems(exec, thisObj, propertyName);
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.h 46 virtual JSValue fallbackObject(ExecState *exec, Instance *instance, const Identifier &propertyName);
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectProxy.cpp 154 bool NPObjectProxy::hasProperty(NPIdentifier propertyName)
159 NPIdentifierData propertyNameData = NPIdentifierData::fromNPIdentifier(propertyName);
169 bool NPObjectProxy::getProperty(NPIdentifier propertyName, NPVariant* result)
174 NPIdentifierData propertyNameData = NPIdentifierData::fromNPIdentifier(propertyName);
189 bool NPObjectProxy::setProperty(NPIdentifier propertyName, const NPVariant* value)
194 NPIdentifierData propertyNameData = NPIdentifierData::fromNPIdentifier(propertyName);
205 bool NPObjectProxy::removeProperty(NPIdentifier propertyName)
210 NPIdentifierData propertyNameData = NPIdentifierData::fromNPIdentifier(propertyName);
315 bool NPObjectProxy::NP_HasProperty(NPObject* npObject, NPIdentifier propertyName)
317 return toNPObjectProxy(npObject)->hasProperty(propertyName);
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestMediaQueryListListener.cpp 90 bool JSTestMediaQueryListListenerConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
92 return getStaticValueSlot<JSTestMediaQueryListListenerConstructor, DOMObject>(exec, &JSTestMediaQueryListListenerConstructorTable, this, propertyName, slot);
95 bool JSTestMediaQueryListListenerConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
97 return getStaticValueDescriptor<JSTestMediaQueryListListenerConstructor, DOMObject>(exec, &JSTestMediaQueryListListenerConstructorTable, this, propertyName, descriptor);
122 bool JSTestMediaQueryListListenerPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
124 return getStaticFunctionSlot<JSObject>(exec, &JSTestMediaQueryListListenerPrototypeTable, this, propertyName, slot);
127 bool JSTestMediaQueryListListenerPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
129 return getStaticFunctionDescriptor<JSObject>(exec, &JSTestMediaQueryListListenerPrototypeTable, this, propertyName, descriptor);
146 bool JSTestMediaQueryListListener::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
148 return getStaticValueSlot<JSTestMediaQueryListListener, Base>(exec, &JSTestMediaQueryListListenerTable, this, propertyName, slot)
    [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 73 * using more than one PropertyValuesHolder objects, then setting the propertyName simply
74 * sets the propertyName in the first of those PropertyValuesHolder objects.</p>
76 * @param propertyName The name of the property being animated. Should not be null.
78 public void setPropertyName(String propertyName) {
80 // propertyName to be used later when setValues() is called if so.
84 valuesHolder.setPropertyName(propertyName);
86 mValuesMap.put(propertyName, valuesHolder);
88 mPropertyName = propertyName;
102 // propertyName to be used later when setValues() is called if so.
144 * the value of the <code>propertyName</code> parameter
    [all...]
PropertyValuesHolder.java 128 * @param propertyName The name of the property for this holder.
130 private PropertyValuesHolder(String propertyName) {
131 mPropertyName = propertyName;
148 * @param propertyName The name of the property being animated.
152 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
153 return new IntPropertyValuesHolder(propertyName, values);
170 * @param propertyName The name of the property being animated.
174 public static PropertyValuesHolder ofFloat(String propertyName, float... values) {
175 return new FloatPropertyValuesHolder(propertyName, values);
194 * @param propertyName The name of the property being animated
    [all...]
  /external/webkit/Source/WebKit/win/
DOMCSSClasses.h 89 /* [in] */ BSTR propertyName,
93 /* [in] */ BSTR propertyName,
97 /* [in] */ BSTR propertyName,
101 /* [in] */ BSTR propertyName,
105 /* [in] */ BSTR propertyName,
  /external/webkit/Source/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...]
JSObject.cpp 57 JSUserObject* JSUserObject::CopyProperty(CFStringRef propertyName)
62 result = (JSUserObject*)fCallBacks.copyProperty(fData, propertyName);
67 void JSUserObject::SetProperty(CFStringRef propertyName, JSUserObject* value)
71 fCallBacks.setProperty(fData, propertyName, (JSObjectRef)value);
JavaScriptGlue.h 58 typedef JSObjectRef (*JSObjectCopyPropertyProcPtr)(void *data, CFStringRef propertyName) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
59 typedef void (*JSObjectSetPropertyProcPtr)(void *data, CFStringRef propertyName, JSObjectRef jsValue) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
92 JSObjectRef JSObjectCopyProperty(JSObjectRef ref, CFStringRef propertyName) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
93 void JSObjectSetProperty(JSObjectRef ref, CFStringRef propertyName, JSObjectRef value) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
  /external/webkit/Source/JavaScriptCore/runtime/
JSString.cpp 271 bool JSString::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
275 if (getStringPropertySlot(exec, propertyName, slot))
277 if (propertyName == exec->propertyNames().underscoreProto) {
285 if (object->getOwnPropertySlot(exec, propertyName, slot))
292 bool JSString::getStringPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
294 if (propertyName == exec->propertyNames().length) {
300 unsigned i = propertyName.toUInt32(isStrictUInt32);
309 bool JSString::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
311 if (getStringPropertyDescriptor(exec, propertyName, descriptor))
313 if (propertyName != exec->propertyNames().underscoreProto
    [all...]
RegExpObject.cpp 82 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
84 return getStaticValueSlot<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, slot);
87 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
89 return getStaticValueDescriptor<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, descriptor);
117 void RegExpObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
119 lookupPut<RegExpObject, JSObject>(exec, propertyName, value, ExecState::regExpTable(exec), this, slot);
JSByteArray.h 81 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
82 virtual bool getOwnPropertySlot(JSC::ExecState*, unsigned propertyName, JSC::PropertySlot&);
84 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
85 virtual void put(JSC::ExecState*, unsigned propertyName, JSC::JSValue);
NumberConstructor.cpp 69 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
71 return getStaticValueSlot<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, slot);
74 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
76 return getStaticValueDescriptor<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, descriptor);
StringPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.h 66 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
67 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
68 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
  /libcore/luni/src/main/java/java/net/
AddressCache.java 105 String propertyName = isPositive ? "networkaddress.cache.ttl" : "networkaddress.cache.negative.ttl";
120 private long customTtl(String propertyName, long defaultTtlNanos) {
121 String ttlString = System.getProperty(propertyName, null);
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.h 117 @param propertyName A JSString containing the name of the property look up.
121 bool HasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
130 (*JSObjectHasPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
137 @param propertyName A JSString containing the name of the property to get.
142 JSValueRef GetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
147 (*JSObjectGetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
154 @param propertyName A JSString containing the name of the property to set.
160 bool SetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
165 (*JSObjectSetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
172 @param propertyName A JSString containing the name of the property to delete
    [all...]
  /external/webkit/Source/JavaScriptCore/API/tests/
JSNodeList.c 53 static JSValueRef JSNodeList_length(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
55 UNUSED_PARAM(propertyName);
68 static JSValueRef JSNodeList_getProperty(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
72 double index = JSValueToNumber(context, JSValueMakeString(context, propertyName), exception);

Completed in 575 milliseconds

1 2 34 5 6 7 8 91011>>