Searched refs:Identifier (Results 1 - 25 of 229) sorted by relevance

12345678910

/external/webkit/WebCore/ForwardingHeaders/runtime/
H A DIdentifier.h3 #include <JavaScriptCore/Identifier.h>
/external/webkit/JavaScriptCore/API/
H A DOpaqueJSString.cpp31 #include <runtime/Identifier.h>
49 Identifier OpaqueJSString::identifier(JSGlobalData* globalData) const
52 return Identifier(globalData, static_cast<const char*>(0));
54 return Identifier(globalData, m_characters, m_length);
/external/webkit/JavaScriptCore/debugger/
H A DDebuggerActivation.h41 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);
H A DDebuggerActivation.cpp54 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/
H A DIdentifier.h32 class Identifier { class in namespace:JSC
35 Identifier() { } function in class:JSC::Identifier
37 Identifier(ExecState* exec, const char* s) : _ustring(add(exec, s)) { } // Only to be used with string literals. function in class:JSC::Identifier
38 Identifier(ExecState* exec, const UChar* s, int length) : _ustring(add(exec, s, length)) { } function in class:JSC::Identifier
39 Identifier(ExecState* exec, UString::Rep* rep) : _ustring(add(exec, rep)) { } function in class:JSC::Identifier
40 Identifier(ExecState* exec, const UString& s) : _ustring(add(exec, s.rep())) { } function in class:JSC::Identifier
42 Identifier(JSGlobalData* globalData, const char* s) : _ustring(add(globalData, s)) { } // Only to be used with string literals. function in class:JSC::Identifier
43 Identifier(JSGlobalData* globalData, const UChar* s, int length) : _ustring(add(globalData, s, length)) { } function in class:JSC::Identifier
44 Identifier(JSGlobalData* globalData, UString::Rep* rep) : _ustring(add(globalData, rep)) { } function in class:JSC::Identifier
45 Identifier(JSGlobalDat function in class:JSC::Identifier
48 Identifier(PlacementNewAdoptType) : _ustring(PlacementNewAdopt) { } function in class:JSC::Identifier
[all...]
H A DArrayPrototype.h33 bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
34 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
H A DPrototypeFunction.h34 PrototypeFunction(ExecState*, int length, const Identifier&, NativeFunction);
35 PrototypeFunction(ExecState*, NonNullPassRefPtr<Structure>, int length, const Identifier&, NativeFunction);
H A DStringPrototype.h34 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
H A DNumberConstructor.cpp32 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&) argument
81 static JSValue numberConstructorNegInfinity(ExecState* exec, const Identifier argument
86 numberConstructorPosInfinity(ExecState* exec, const Identifier&, const PropertySlot&) argument
91 numberConstructorMaxValue(ExecState* exec, const Identifier&, const PropertySlot&) argument
96 numberConstructorMinValue(ExecState* exec, const Identifier&, const PropertySlot&) argument
[all...]
H A DRegExpObject.cpp33 static JSValue regExpObjectGlobal(ExecState*, const Identifier&, const PropertySlot&);
34 static JSValue regExpObjectIgnoreCase(ExecState*, const Identifier&, const PropertySlot&);
35 static JSValue regExpObjectMultiline(ExecState*, const Identifier&, const PropertySlot&);
36 static JSValue regExpObjectSource(ExecState*, const Identifier&, const PropertySlot&);
37 static JSValue regExpObjectLastIndex(ExecState*, const Identifier&, const PropertySlot&);
70 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
75 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
80 JSValue regExpObjectGlobal(ExecState*, const Identifier&, const PropertySlot& slot) argument
85 JSValue regExpObjectIgnoreCase(ExecState*, const Identifier&, const PropertySlot& slot) argument
90 JSValue regExpObjectMultiline(ExecState*, const Identifier argument
95 regExpObjectSource(ExecState* exec, const Identifier&, const PropertySlot& slot) argument
100 regExpObjectLastIndex(ExecState* exec, const Identifier&, const PropertySlot& slot) argument
[all...]
/external/webkit/WebCore/bindings/js/
H A DJSHTMLAppletElementCustom.cpp36 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)
H A DJSHTMLEmbedElementCustom.cpp36 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)
H A DJSHTMLObjectElementCustom.cpp36 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)
H A DJSPluginElementFunctions.h33 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&);
H A DJSDataGridColumnListCustom.cpp41 bool JSDataGridColumnList::canGetItemsForName(ExecState*, DataGridColumnList* impl, const Identifier& propertyName)
46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
H A DJSMimeTypeArrayCustom.cpp31 bool JSMimeTypeArray::canGetItemsForName(ExecState*, MimeTypeArray* mimeTypeArray, const Identifier& propertyName)
36 JSValue JSMimeTypeArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
H A DJSPluginArrayCustom.cpp31 bool JSPluginArray::canGetItemsForName(ExecState*, PluginArray* pluginArray, const Identifier& propertyName)
36 JSValue JSPluginArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
H A DJSPluginCustom.cpp30 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/
H A Dobjc_class.h43 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/
H A Dqt_class.h44 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/bytecompiler/
H A DLabelScope.h37 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;
/external/webkit/WebCore/bridge/
H A Druntime_method.h38 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&);
H A Druntime_array.h39 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&);
41 virtual bool getOwnPropertyDescriptor(ExecState *, const Identifier&, PropertyDescriptor&);
42 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
45 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
68 static JSValue lengthGetter(ExecState*, const Identifier&, const PropertySlot&);
69 static JSValue indexGetter(ExecState*, const Identifier&, const PropertySlot&);
H A Druntime_object.h39 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&);
/external/webkit/WebCore/bridge/jni/jsc/
H A DJavaClassJSC.h43 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
44 virtual Field* fieldNamed(const Identifier&, Instance*) const;

Completed in 183 milliseconds

12345678910