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

1 23 4 5 6 7 8 9

  /external/webkit/JavaScriptCore/runtime/
StringPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
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);
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...]
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...]
JSVariableObject.h 104 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot)
106 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
114 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot, bool& slotIsWriteable)
116 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
125 inline bool JSVariableObject::symbolTablePut(const Identifier& propertyName, JSValue value)
129 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
138 inline bool JSVariableObject::symbolTablePutWithAttributes(const Identifier& propertyName, JSValue value, unsigned attributes)
142 SymbolTable::iterator iter = symbolTable().find(propertyName.ustring().rep());
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...]
  /external/webkit/WebCore/bindings/js/
JSHTMLFormElementCustom.cpp 40 bool JSHTMLFormElement::canGetItemsForName(ExecState*, HTMLFormElement* form, const Identifier& propertyName)
43 form->getNamedElements(propertyName, namedItems);
47 JSValue JSHTMLFormElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
53 form->getNamedElements(propertyName, namedItems);
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...]
JSHTMLAllCollectionCustom.cpp 43 static JSValue getNamedItems(ExecState* exec, JSHTMLAllCollection* collection, const Identifier& propertyName)
46 collection->impl()->namedItems(propertyName, namedItems);
108 bool JSHTMLAllCollection::canGetItemsForName(ExecState*, HTMLAllCollection* collection, const Identifier& propertyName)
111 collection->namedItems(propertyName, namedItems);
115 JSValue JSHTMLAllCollection::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
118 return getNamedItems(exec, thisObj, propertyName);
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/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/WebCore/bridge/
runtime_array.h 42 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
43 virtual void put(ExecState*, unsigned propertyName, JSValue);
45 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
46 virtual bool deleteProperty(ExecState *exec, unsigned propertyName);
runtime_object.h 39 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
40 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
41 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
42 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
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/WebCore/plugins/
MimeTypeArray.cpp 59 bool MimeTypeArray::canGetItemsForName(const AtomicString& propertyName)
66 if (mimes[i]->type == propertyName)
72 PassRefPtr<MimeType> MimeTypeArray::namedItem(const AtomicString& propertyName)
79 if (mimes[i]->type == propertyName)
Plugin.cpp 73 bool Plugin::canGetItemsForName(const AtomicString& propertyName)
77 if (mimes[i]->type == propertyName)
82 PassRefPtr<MimeType> Plugin::namedItem(const AtomicString& propertyName)
86 if (mimes[i]->type == propertyName)
PluginArray.cpp 59 bool PluginArray::canGetItemsForName(const AtomicString& propertyName)
66 if (plugins[i]->name == propertyName)
72 PassRefPtr<Plugin> PluginArray::namedItem(const AtomicString& propertyName)
79 if (plugins[i]->name == propertyName)
  /external/webkit/WebKit/chromium/public/
WebAnimationController.h 50 const WebString& propertyName,
  /external/webkit/WebKit/chromium/src/
WebAnimationControllerImpl.h 54 const WebString& propertyName,
WebAnimationControllerImpl.cpp 71 const WebString& propertyName,
78 propertyName,
  /frameworks/base/core/java/android/pim/vcard/
VCardInterpreter.java 84 void propertyName(String name);
  /packages/apps/Tag/src/com/android/vcard/
VCardInterpreter.java 84 void propertyName(String name);
  /libcore/luni/src/main/java/java/net/
AddressCache.java 104 String propertyName = isPositive ? "networkaddress.cache.ttl" : "networkaddress.cache.negative.ttl";
108 if (System.getSecurityManager() != null || System.getProperty(propertyName, null) != null) {
110 expiryNanos = customTtl(propertyName, defaultTtlNanos);
129 private long customTtl(String propertyName, long defaultTtlNanos) {
130 String ttlString = AccessController.doPrivileged(new PriviAction<String>(propertyName, null));
  /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/JavaScriptGlue/
JSObject.h 44 JSUserObject* CopyProperty(CFStringRef propertyName);
45 void SetProperty(CFStringRef propertyName, JSUserObject* value);

Completed in 169 milliseconds

1 23 4 5 6 7 8 9