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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
Identifier.h 3 #include <JavaScriptCore/Identifier.h>
  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.h 33 class Identifier {
36 Identifier() { }
38 Identifier(ExecState* exec, const char* s) : m_string(add(exec, s)) { } // Only to be used with string literals.
39 Identifier(ExecState* exec, const UChar* s, int length) : m_string(add(exec, s, length)) { }
40 Identifier(ExecState* exec, StringImpl* rep) : m_string(add(exec, rep)) { }
41 Identifier(ExecState* exec, const UString& s) : m_string(add(exec, s.impl())) { }
43 Identifier(JSGlobalData* globalData, const char* s) : m_string(add(globalData, s)) { } // Only to be used with string literals.
44 Identifier(JSGlobalData* globalData, const UChar* s, int length) : m_string(add(globalData, s, length)) { }
45 Identifier(JSGlobalData* globalData, StringImpl* rep) : m_string(add(globalData, rep)) { }
46 Identifier(JSGlobalData* globalData, const UString& s) : m_string(add(globalData, s.impl())) {
    [all...]
JSActivation.h 54 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...]
NumberConstructor.cpp 33 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&)
84 static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier&
    [all...]
Identifier.cpp 22 #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::add(ExecState* exec, const UChar* s, int length
    [all...]
StrictEvalActivation.h 36 virtual bool deleteProperty(ExecState*, const Identifier&);
ArrayPrototype.h 33 bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
34 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/Source/WebKit2/UIProcess/Launcher/gtk/
ThreadLauncherGtk.cpp 34 CoreIPC::Connection::Identifier ThreadLauncher::createWebThread()
  /external/webkit/Source/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/Source/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/Source/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);
JSCallbackObject.h 50 JSValue getPrivateProperty(const Identifier& propertyName) const
57 void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, JSValue value)
64 void deletePrivateProperty(const Identifier& propertyName)
81 JSValue getPrivateProperty(const Identifier& propertyName) const
89 void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, JSValue value)
95 void deletePrivateProperty(const Identifier& propertyName)
136 JSValue getPrivateProperty(const Identifier& propertyName) const
141 void setPrivateProperty(JSGlobalData& globalData, const Identifier& propertyName, JSValue value)
146 void deletePrivateProperty(const Identifier& propertyName)
157 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&)
    [all...]
  /external/webkit/Source/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);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaClassJSC.h 44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
45 virtual Field* fieldNamed(const Identifier&, Instance*) const;
  /external/webkit/Source/WebCore/bridge/
runtime_object.h 41 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&);
runtime_method.h 38 RuntimeMethod(ExecState*, JSGlobalObject*, Structure*, const Identifier& name, Bindings::MethodList&);
57 static JSValue lengthGetter(ExecState*, JSValue, const Identifier&);
58 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
59 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
  /external/webkit/Source/WebCore/bindings/js/
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)
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)
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)
JSPluginElementFunctions.h 41 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&);
JSDOMMimeTypeArrayCustom.cpp 31 bool JSDOMMimeTypeArray::canGetItemsForName(ExecState*, DOMMimeTypeArray* mimeTypeArray, const Identifier& propertyName)
36 JSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
JSDOMPluginArrayCustom.cpp 31 bool JSDOMPluginArray::canGetItemsForName(ExecState*, DOMPluginArray* pluginArray, const Identifier& propertyName)
36 JSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
  /external/webkit/Source/WebKit2/UIProcess/Launcher/
ThreadLauncher.h 45 virtual void didFinishLaunching(ThreadLauncher*, CoreIPC::Connection::Identifier) = 0;
61 void didFinishLaunchingThread(CoreIPC::Connection::Identifier);
63 static CoreIPC::Connection::Identifier createWebThread();
  /external/webkit/Source/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 475 milliseconds

1 2 3 4 5 6 7 8 91011>>