HomeSort by relevance Sort by last modified time
    Searched refs:Identifier (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webkit/WebCore/ForwardingHeaders/runtime/
Identifier.h 3 #include <JavaScriptCore/Identifier.h>
  /external/webkit/WebCore/bindings/js/
JSPluginElementFunctions.h 33 JSC::JSValue runtimeObjectGetter(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
34 JSC::JSValue runtimeObjectPropertyGetter(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
35 bool runtimeObjectCustomGetOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&, JSHTMLElement*);
36 bool runtimeObjectCustomGetOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&, JSHTMLElement*);
37 bool runtimeObjectCustomPut(JSC::ExecState*, const JSC::Identifier&, JSC::JSValue, HTMLElement*, JSC::PutPropertySlot&);
JSHTMLAppletElementCustom.cpp 36 bool JSHTMLAppletElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
41 bool JSHTMLAppletElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
46 bool JSHTMLAppletElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
56 bool JSHTMLAppletElement::canGetItemsForName(ExecState*, HTMLAppletElement*, const Identifier& propertyName)
61 JSValue JSHTMLAppletElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSHTMLEmbedElementCustom.cpp 36 bool JSHTMLEmbedElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
41 bool JSHTMLEmbedElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
46 bool JSHTMLEmbedElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
56 bool JSHTMLEmbedElement::canGetItemsForName(ExecState*, HTMLEmbedElement*, const Identifier& propertyName)
61 JSValue JSHTMLEmbedElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSHTMLObjectElementCustom.cpp 36 bool JSHTMLObjectElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
41 bool JSHTMLObjectElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
46 bool JSHTMLObjectElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
56 bool JSHTMLObjectElement::canGetItemsForName(ExecState*, HTMLObjectElement*, const Identifier& propertyName)
61 JSValue JSHTMLObjectElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSDataGridColumnListCustom.cpp 41 bool JSDataGridColumnList::canGetItemsForName(ExecState*, DataGridColumnList* impl, const Identifier& propertyName)
46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSMimeTypeArrayCustom.cpp 31 bool JSMimeTypeArray::canGetItemsForName(ExecState*, MimeTypeArray* mimeTypeArray, const Identifier& propertyName)
36 JSValue JSMimeTypeArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSPluginArrayCustom.cpp 31 bool JSPluginArray::canGetItemsForName(ExecState*, PluginArray* pluginArray, const Identifier& propertyName)
36 JSValue JSPluginArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSPluginCustom.cpp 30 bool JSPlugin::canGetItemsForName(ExecState*, Plugin* plugin, const Identifier& propertyName)
35 JSValue JSPlugin::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
  /external/webkit/WebCore/bridge/objc/
objc_class.h 43 virtual MethodList methodsNamed(const Identifier&, Instance *instance) const;
44 virtual Field *fieldNamed(const Identifier&, Instance *instance) const;
46 virtual JSValue fallbackObject(ExecState *exec, Instance *instance, const Identifier &propertyName);
  /external/webkit/WebCore/bridge/qt/
qt_class.h 44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
45 virtual Field* fieldNamed(const Identifier&, Instance*) const;
47 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&);
  /external/webkit/JavaScriptCore/debugger/
DebuggerActivation.h 41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
42 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
43 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue, unsigned attributes);
44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
46 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
47 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes);
48 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes);
49 virtual JSValue lookupGetter(ExecState*, const Identifier& propertyName);
50 virtual JSValue lookupSetter(ExecState*, const Identifier& propertyName);
DebuggerActivation.cpp 54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName)
79 bool DebuggerActivation::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
84 void DebuggerActivation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
89 void DebuggerActivation::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes)
94 JSValue DebuggerActivation::lookupGetter(ExecState* exec, const Identifier& propertyName)
99 JSValue DebuggerActivation::lookupSetter(ExecState* exec, const Identifier& propertyName)
  /external/webkit/JavaScriptCore/runtime/
Identifier.h 32 class Identifier {
35 Identifier() { }
37 Identifier(ExecState* exec, const char* s) : _ustring(add(exec, s)) { } // Only to be used with string literals.
38 Identifier(ExecState* exec, const UChar* s, int length) : _ustring(add(exec, s, length)) { }
39 Identifier(ExecState* exec, UString::Rep* rep) : _ustring(add(exec, rep)) { }
40 Identifier(ExecState* exec, const UString& s) : _ustring(add(exec, s.rep())) { }
42 Identifier(JSGlobalData* globalData, const char* s) : _ustring(add(globalData, s)) { } // Only to be used with string literals.
43 Identifier(JSGlobalData* globalData, const UChar* s, int length) : _ustring(add(globalData, s, length)) { }
44 Identifier(JSGlobalData* globalData, UString::Rep* rep) : _ustring(add(globalData, rep)) { }
45 Identifier(JSGlobalData* globalData, const UString& s) : _ustring(add(globalData, s.rep())) {
    [all...]
ArrayPrototype.h 33 bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
34 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
PrototypeFunction.h 34 PrototypeFunction(ExecState*, int length, const Identifier&, NativeFunction);
35 PrototypeFunction(ExecState*, NonNullPassRefPtr<Structure>, int length, const Identifier&, NativeFunction);
StringPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
NumberConstructor.cpp 32 static JSValue numberConstructorNaNValue(ExecState*, const Identifier&, const PropertySlot&);
33 static JSValue numberConstructorNegInfinity(ExecState*, const Identifier&, const PropertySlot&);
34 static JSValue numberConstructorPosInfinity(ExecState*, const Identifier&, const PropertySlot&);
35 static JSValue numberConstructorMaxValue(ExecState*, const Identifier&, const PropertySlot&);
36 static JSValue numberConstructorMinValue(ExecState*, const Identifier&, const PropertySlot&);
57 : InternalFunction(&exec->globalData(), structure, Identifier(exec, numberPrototype->info.className))
66 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
71 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
76 static JSValue numberConstructorNaNValue(ExecState* exec, const Identifier&, const PropertySlot&)
81 static JSValue numberConstructorNegInfinity(ExecState* exec, const Identifier&, const PropertySlot&
    [all...]
DatePrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
MathObject.h 32 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
33 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
  /external/webkit/JavaScriptCore/API/
OpaqueJSString.cpp 31 #include <runtime/Identifier.h>
49 Identifier OpaqueJSString::identifier(JSGlobalData* globalData) const function in class:OpaqueJSString
52 return Identifier(globalData, static_cast<const char*>(0));
54 return Identifier(globalData, m_characters, m_length);
  /external/webkit/WebCore/bridge/jni/jsc/
JavaClassJSC.h 43 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
44 virtual Field* fieldNamed(const Identifier&, Instance*) const;
  /external/webkit/WebCore/bridge/
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);
74 static JSValue fallbackObjectGetter(ExecState*, const Identifier&, const PropertySlot&);
75 static JSValue fieldGetter(ExecState*, const Identifier&, const PropertySlot&);
76 static JSValue methodGetter(ExecState*, const Identifier&, const PropertySlot&);
runtime_method.h 38 RuntimeMethod(ExecState*, const Identifier& name, Bindings::MethodList&);
55 static JSValue lengthGetter(ExecState*, const Identifier&, const PropertySlot&);
56 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
57 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
  /external/webkit/JavaScriptCore/bytecompiler/
LabelScope.h 37 class Identifier;
43 LabelScope(Type type, const Identifier* name, int scopeDepth, PassRefPtr<Label> breakTarget, PassRefPtr<Label> continueTarget)
65 const Identifier* name() const { return m_name; }
71 const Identifier* m_name;

Completed in 255 milliseconds

1 2 3 4 5 6 7 8 910