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

1234567891011>>

/external/webkit/Source/WebCore/ForwardingHeaders/runtime/
H A DIdentifier.h3 #include <JavaScriptCore/Identifier.h>
/external/webkit/Source/WebKit2/UIProcess/Launcher/gtk/
H A DThreadLauncherGtk.cpp34 CoreIPC::Connection::Identifier ThreadLauncher::createWebThread()
/external/webkit/Source/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/Source/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/Source/JavaScriptCore/runtime/
H A DIdentifier.h33 class Identifier { class in namespace:JSC
36 Identifier() { } function in class:JSC::Identifier
38 Identifier(ExecState* exec, const char* s) : m_string(add(exec, s)) { } // Only to be used with string literals. function in class:JSC::Identifier
39 Identifier(ExecState* exec, const UChar* s, int length) : m_string(add(exec, s, length)) { } function in class:JSC::Identifier
40 Identifier(ExecState* exec, StringImpl* rep) : m_string(add(exec, rep)) { } function in class:JSC::Identifier
41 Identifier(ExecState* exec, const UString& s) : m_string(add(exec, s.impl())) { } function in class:JSC::Identifier
43 Identifier(JSGlobalData* globalData, const char* s) : m_string(add(globalData, s)) { } // Only to be used with string literals. function in class:JSC::Identifier
44 Identifier(JSGlobalData* globalData, const UChar* s, int length) : m_string(add(globalData, s, length)) { } function in class:JSC::Identifier
45 Identifier(JSGlobalData* globalData, StringImpl* rep) : m_string(add(globalData, rep)) { } function in class:JSC::Identifier
46 Identifier(JSGlobalDat function in class:JSC::Identifier
[all...]
H A DJSActivation.h54 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
57 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
59 virtual void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes);
60 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
75 bool symbolTableGet(const Identifier&, PropertySlot&);
76 bool symbolTableGet(const Identifier&, PropertyDescriptor&);
77 bool symbolTableGet(const Identifier&, PropertySlot&, bool& slotIsWriteable);
78 bool symbolTablePut(JSGlobalData&, const Identifier&, JSValue);
79 bool symbolTablePutWithAttributes(JSGlobalData&, const Identifier&, JSValue, unsigned attributes);
81 static JSValue argumentsGetter(ExecState*, JSValue, const Identifier
[all...]
H A DNumberConstructor.cpp33 static JSValue numberConstructorNaNValue(ExecState*, JSValue, const Identifier&);
34 static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier&);
35 static JSValue numberConstructorPosInfinity(ExecState*, JSValue, const Identifier&);
36 static JSValue numberConstructorMaxValue(ExecState*, JSValue, const Identifier&);
37 static JSValue numberConstructorMinValue(ExecState*, JSValue, const Identifier&);
58 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, numberPrototype->s_info.className))
69 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
74 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
79 static JSValue numberConstructorNaNValue(ExecState*, JSValue, const Identifier&) argument
84 static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier argument
89 numberConstructorPosInfinity(ExecState*, JSValue, const Identifier&) argument
94 numberConstructorMaxValue(ExecState*, JSValue, const Identifier&) argument
99 numberConstructorMinValue(ExecState*, JSValue, const Identifier&) argument
[all...]
H A DIdentifier.cpp22 #include "Identifier.h"
70 bool Identifier::equal(const StringImpl* r, const char* s)
80 bool Identifier::equal(const StringImpl* r, const UChar* s, unsigned length)
99 return Identifier::equal(r, s);
114 PassRefPtr<StringImpl> Identifier::add(JSGlobalData* globalData, const char* c)
141 PassRefPtr<StringImpl> Identifier::add(ExecState* exec, const char* c)
159 return Identifier::equal(str, buf.s, buf.length);
173 uint32_t Identifier::toUInt32(const UString& string, bool& ok)
216 PassRefPtr<StringImpl> Identifier::add(JSGlobalData* globalData, const UChar* s, int length)
233 PassRefPtr<StringImpl> Identifier
[all...]
H A DRegExpObject.cpp37 static JSValue regExpObjectGlobal(ExecState*, JSValue, const Identifier&);
38 static JSValue regExpObjectIgnoreCase(ExecState*, JSValue, const Identifier&);
39 static JSValue regExpObjectMultiline(ExecState*, JSValue, const Identifier&);
40 static JSValue regExpObjectSource(ExecState*, JSValue, const Identifier&);
41 static JSValue regExpObjectLastIndex(ExecState*, JSValue, const Identifier&);
82 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
87 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
92 JSValue regExpObjectGlobal(ExecState*, JSValue slotBase, const Identifier&) argument
97 JSValue regExpObjectIgnoreCase(ExecState*, JSValue slotBase, const Identifier&) argument
102 JSValue regExpObjectMultiline(ExecState*, JSValue slotBase, const Identifier argument
107 regExpObjectSource(ExecState* exec, JSValue slotBase, const Identifier&) argument
112 regExpObjectLastIndex(ExecState*, JSValue slotBase, const Identifier&) argument
[all...]
/external/webkit/Source/WebCore/bridge/
H A Druntime_object.h41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
42 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
43 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
73 static JSValue fallbackObjectGetter(ExecState*, JSValue, const Identifier&);
74 static JSValue fieldGetter(ExecState*, JSValue, const Identifier&);
75 static JSValue methodGetter(ExecState*, JSValue, const Identifier&);
/external/webkit/Source/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)
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)
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)
H A DJSPluginElementFunctions.h41 JSC::JSValue runtimeObjectPropertyGetter(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
42 bool runtimeObjectCustomGetOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&, JSHTMLElement*);
43 bool runtimeObjectCustomGetOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&, JSHTMLElement*);
44 bool runtimeObjectCustomPut(JSC::ExecState*, const JSC::Identifier&, JSC::JSValue, JSHTMLElement*, JSC::PutPropertySlot&);
H A DJSDOMMimeTypeArrayCustom.cpp31 bool JSDOMMimeTypeArray::canGetItemsForName(ExecState*, DOMMimeTypeArray* mimeTypeArray, const Identifier& propertyName)
36 JSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
H A DJSDOMPluginArrayCustom.cpp31 bool JSDOMPluginArray::canGetItemsForName(ExecState*, DOMPluginArray* pluginArray, const Identifier& propertyName)
36 JSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
H A DJSDOMPluginCustom.cpp30 bool JSDOMPlugin::canGetItemsForName(ExecState*, DOMPlugin* plugin, const Identifier& propertyName)
35 JSValue JSDOMPlugin::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
/external/webkit/Source/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/Source/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/Source/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/Source/WebCore/bridge/jni/jsc/
H A DJavaClassJSC.h44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
45 virtual Field* fieldNamed(const Identifier&, Instance*) const;
/external/webkit/Source/WebKit2/UIProcess/Launcher/
H A DThreadLauncher.cpp43 CoreIPC::Connection::Identifier connectionIdentifier = createWebThread();
49 void ThreadLauncher::didFinishLaunchingThread(CoreIPC::Connection::Identifier identifier)
/external/webkit/Source/JavaScriptCore/parser/
H A DSyntaxChecker.h88 ALWAYS_INLINE Property(const Identifier* ident, PropertyNode::Type ty)
99 const Identifier* name;
132 ExpressionType createResolve(const Identifier*, int) { return ResolveExpr; } argument
138 ExpressionType createString(const Identifier*) { return StringExpr; } argument
142 ExpressionType createDotAccess(ExpressionType, const Identifier&, int, int, int) { return DotExpr; } argument
143 ExpressionType createRegExp(const Identifier& pattern, const Identifier&, int) { return Yarr::checkSyntax(pattern.ustring()) ? 0 : RegExpExpr; } argument
147 ExpressionType createAssignResolve(const Identifier&, ExpressionType, bool, int, int, int) { return AssignmentExpr; } argument
148 ExpressionType createFunctionExpr(const Identifier*, int, int, int, int, int, int) { return FunctionExpr; } argument
154 template <bool complete> Property createProperty(const Identifier* nam
171 createFormalParameterList(const Identifier&) argument
172 createFormalParameterList(int, const Identifier&) argument
177 createFuncDeclStatement(const Identifier*, int, int, int, int, int, int) argument
183 createForInLoop(const Identifier*, int, int, int, int, int, int, int, int, int, int) argument
189 createBreakStatement(const Identifier*, int, int, int, int) argument
191 createContinueStatement(const Identifier*, int, int, int, int) argument
192 createTryStatement(int, const Identifier*, bool, int, int, int, int) argument
197 createLabelStatement(const Identifier*, int, int, int) argument
201 appendConstDecl(int, const Identifier*, int) argument
211 addVar(const Identifier*, bool) argument
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestObj.h38 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
39 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
40 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
73 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
74 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
124 JSC::JSValue jsTestObjReadOnlyIntAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
125 JSC::JSValue jsTestObjReadOnlyStringAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
126 JSC::JSValue jsTestObjReadOnlyTestObjAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
127 JSC::JSValue jsTestObjShortAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
129 JSC::JSValue jsTestObjUnsignedShortAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier
[all...]

Completed in 287 milliseconds

1234567891011>>