Home
last modified time | relevance | path

Searched refs:Identifier (Results 1 – 25 of 394) sorted by relevance

12345678910>>...16

/external/webkit/Source/JavaScriptCore/runtime/
DIdentifier.h33 class Identifier {
36 Identifier() { } in Identifier() function
38Identifier(ExecState* exec, const char* s) : m_string(add(exec, s)) { } // Only to be used with st… in Identifier() function
39 Identifier(ExecState* exec, const UChar* s, int length) : m_string(add(exec, s, length)) { } in Identifier() function
40 Identifier(ExecState* exec, StringImpl* rep) : m_string(add(exec, rep)) { } in Identifier() function
41 Identifier(ExecState* exec, const UString& s) : m_string(add(exec, s.impl())) { } in Identifier() function
43Identifier(JSGlobalData* globalData, const char* s) : m_string(add(globalData, s)) { } // Only to … in Identifier() function
44Identifier(JSGlobalData* globalData, const UChar* s, int length) : m_string(add(globalData, s, len… in Identifier() function
45 Identifier(JSGlobalData* globalData, StringImpl* rep) : m_string(add(globalData, rep)) { } in Identifier() function
46Identifier(JSGlobalData* globalData, const UString& s) : m_string(add(globalData, s.impl())) { } in Identifier() function
[all …]
DIdentifier.cpp70 bool Identifier::equal(const StringImpl* r, const char* s) in equal()
80 bool Identifier::equal(const StringImpl* r, const UChar* s, unsigned length) in equal()
99 return Identifier::equal(r, s); in equal()
114 PassRefPtr<StringImpl> Identifier::add(JSGlobalData* globalData, const char* c) in add()
141 PassRefPtr<StringImpl> Identifier::add(ExecState* exec, const char* c) in add()
159 return Identifier::equal(str, buf.s, buf.length); in equal()
173 uint32_t Identifier::toUInt32(const UString& string, bool& ok) in toUInt32()
216 PassRefPtr<StringImpl> Identifier::add(JSGlobalData* globalData, const UChar* s, int length) in add()
233 PassRefPtr<StringImpl> Identifier::add(ExecState* exec, const UChar* s, int length) in add()
238 PassRefPtr<StringImpl> Identifier::addSlowCase(JSGlobalData* globalData, StringImpl* r) in addSlowCase()
[all …]
DRegExpConstructor.cpp43 static JSValue regExpConstructorInput(ExecState*, JSValue, const Identifier&);
44 static JSValue regExpConstructorMultiline(ExecState*, JSValue, const Identifier&);
45 static JSValue regExpConstructorLastMatch(ExecState*, JSValue, const Identifier&);
46 static JSValue regExpConstructorLastParen(ExecState*, JSValue, const Identifier&);
47 static JSValue regExpConstructorLeftContext(ExecState*, JSValue, const Identifier&);
48 static JSValue regExpConstructorRightContext(ExecState*, JSValue, const Identifier&);
49 static JSValue regExpConstructorDollar1(ExecState*, JSValue, const Identifier&);
50 static JSValue regExpConstructorDollar2(ExecState*, JSValue, const Identifier&);
51 static JSValue regExpConstructorDollar3(ExecState*, JSValue, const Identifier&);
52 static JSValue regExpConstructorDollar4(ExecState*, JSValue, const Identifier&);
[all …]
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-… in NumberConstructor()
69 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Propert… in getOwnPropertySlot()
74 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, P… in getOwnPropertyDescriptor()
79 static JSValue numberConstructorNaNValue(ExecState*, JSValue, const Identifier&) in numberConstructorNaNValue() argument
84 static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier&) in numberConstructorNegInfinity() argument
[all …]
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&);
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… in getOwnPropertySlot()
87 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, Proper… in getOwnPropertyDescriptor()
92 JSValue regExpObjectGlobal(ExecState*, JSValue slotBase, const Identifier&) in regExpObjectGlobal() argument
97 JSValue regExpObjectIgnoreCase(ExecState*, JSValue slotBase, const Identifier&) in regExpObjectIgnoreCase() argument
102 JSValue regExpObjectMultiline(ExecState*, JSValue slotBase, const Identifier&) in regExpObjectMultiline() argument
[all …]
DJSObject.h79 …Slot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, P…
98 JSValue get(ExecState*, const Identifier& propertyName) const;
101 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
103 bool getPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
105 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
107 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
109 … virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&);
112 …virtual void putWithAttributes(JSGlobalData*, const Identifier& propertyName, JSValue value, unsig…
113 …virtual void putWithAttributes(JSGlobalData*, const Identifier& propertyName, JSValue value, unsig…
115 …virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned…
[all …]
DJSFunction.h48 …JSFunction(ExecState*, JSGlobalObject*, Structure*, int length, const Identifier&, NativeFunction);
49 …JSFunction(ExecState*, JSGlobalObject*, Structure*, int length, const Identifier&, NativeExecutabl…
94 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
95 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
97 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
98 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
102 static JSValue argumentsGetter(ExecState*, JSValue, const Identifier&);
103 static JSValue callerGetter(ExecState*, JSValue, const Identifier&);
104 static JSValue lengthGetter(ExecState*, JSValue, const Identifier&);
DJSGlobalObject.cpp118 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropert… in put()
127 void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue val… in putWithAttributes()
144 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getter… in defineGetter()
151 void JSGlobalObject::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setter… in defineSetter()
251 …putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Object"), objectConstruct… in reset()
252 …putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Function"), functionConst… in reset()
253 …putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Array"), arrayConstructor… in reset()
254 …putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Boolean"), booleanConstru… in reset()
255 …putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "String"), stringConstruct… in reset()
256 …putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Number"), numberConstruct… in reset()
[all …]
/external/clang/test/Index/
Dannotate-tokens.m148 // CHECK: Identifier: "Foo" [1:12 - 1:15] ObjCInterfaceDecl=Foo:1:12
153 // CHECK: Identifier: "compare" [2:8 - 2:15] ObjCInstanceMethodDecl=compare::2:8
156 // CHECK: Identifier: "Foo" [2:17 - 2:20] ObjCClassRef=Foo:1:12
159 // CHECK: Identifier: "other" [2:22 - 2:27] ParmDecl=other:2:22 (Definition)
165 // CHECK: Identifier: "Foo" [5:17 - 5:20] ObjCImplementationDecl=Foo:5:17 (Definition)
170 // CHECK: Identifier: "compare" [6:8 - 6:15] ObjCInstanceMethodDecl=compare::6:8 (Definition)
173 // CHECK: Identifier: "Foo" [6:17 - 6:20] ObjCClassRef=Foo:1:12
176 // CHECK: Identifier: "other" [6:22 - 6:27] ParmDecl=other:6:22 (Definition)
187 // CHECK: Identifier: "Foo" [8:17 - 8:20] ObjCClassRef=Foo:1:12
196 // CHECK: Identifier: "barType" [14:15 - 14:22] TypedefDecl=barType:14:15 (Definition)
[all …]
Dannotate-subscripting.m39 // CHECK: Identifier: "array" [24:3 - 24:8] DeclRefExpr=array:23:19
46 // CHECK: Identifier: "NSArray" [25:3 - 25:10] ObjCClassRef=NSArray:1:12
48 // CHECK: Identifier: "arr" [25:12 - 25:15] VarDecl=arr:25:12 (Definition)
52 // CHECK: Identifier: "p" [25:21 - 25:22] DeclRefExpr=p:22:28
54 // CHECK: Identifier: "p" [25:24 - 25:25] DeclRefExpr=p:22:28
58 // CHECK: Identifier: "array" [26:10 - 26:15] DeclRefExpr=array:23:19
60 // CHECK: Identifier: "index" [26:16 - 26:21] DeclRefExpr=index:22:18
64 // CHECK: Identifier: "oldObject" [33:3 - 33:12] DeclRefExpr=oldObject:32:17
66 // CHECK: Identifier: "dictionary" [33:15 - 33:25] DeclRefExpr=dictionary:30:24
68 // CHECK: Identifier: "key" [33:26 - 33:29] DeclRefExpr=key:31:13
[all …]
Dannotate-module.m11 // CHECK-NEXT: Identifier: "include" [2:2 - 2:9] inclusion directive=[[INC_DIR]]
13 // CHECK-NEXT: Identifier: "DependsOnModule" [2:11 - 2:26] inclusion directive=[[INC_DIR]]
15 // CHECK-NEXT: Identifier: "DependsOnModule" [2:27 - 2:42] inclusion directive=[[INC_DIR]]
17 // CHECK-NEXT: Identifier: "h" [2:43 - 2:44] inclusion directive=[[INC_DIR]]
21 // CHECK-NEXT: Identifier: "DependsOnModule" [3:9 - 3:24] ModuleImport=DependsOnModule:3:1
24 // CHECK-NEXT: Identifier: "glob" [4:5 - 4:9] VarDecl=glob:4:5
31 // CHECK-MOD-NEXT: Identifier: "include" [1:2 - 1:9] inclusion directive=[[INC_DIR]]
33 // CHECK-MOD-NEXT: Identifier: "Module" [1:11 - 1:17] inclusion directive=[[INC_DIR]]
35 // CHECK-MOD-NEXT: Identifier: "Sub2" [1:18 - 1:22] inclusion directive=[[INC_DIR]]
37 // CHECK-MOD-NEXT: Identifier: "h" [1:23 - 1:24] inclusion directive=[[INC_DIR]]
[all …]
Darc-annotate.m15 // CHECK: Identifier: "A" [1:12 - 1:13] ObjCInterfaceDecl=A:1:12
23 // CHECK: Identifier: "id" [2:31 - 2:33] TypeRef=id:0:0
24 // CHECK: Identifier: "property" [2:34 - 2:42] ObjCPropertyDecl=property:2:34
33 // CHECK: Identifier: "id" [3:29 - 3:31] TypeRef=id:0:0
34 // CHECK: Identifier: "second_property" [3:32 - 3:47] ObjCPropertyDecl=second_property:3:32
42 // CHECK: Identifier: "id" [4:42 - 4:44] TypeRef=id:0:0
43 // CHECK: Identifier: "third_property" [4:45 - 4:59] ObjCPropertyDecl=third_property:4:45
45 // CHECK: Identifier: "A" [8:3 - 8:4] ObjCClassRef=A:1:12
47 // CHECK: Identifier: "avar" [8:6 - 8:10] VarDecl=avar:8:6 (Definition)
49 // CHECK: Identifier: "avar" [9:3 - 9:7] DeclRefExpr=avar:8:6
Dannotate-literals.m42 // CHECK-LITERALS: Identifier: "id" [33:3 - 33:5] TypeRef=id:0:0
43 // CHECK-LITERALS: Identifier: "objects" [33:6 - 33:13] VarDecl=objects:33:6 (Definition)
47 // CHECK-LITERALS: Identifier: "o1" [33:19 - 33:21] DeclRefExpr=o1:32:30
49 // CHECK-LITERALS: Identifier: "o2" [33:23 - 33:25] DeclRefExpr=o2:32:44
52 // CHECK-LITERALS: Identifier: "id" [34:3 - 34:5] TypeRef=id:0:0
53 // CHECK-LITERALS: Identifier: "dict" [34:6 - 34:10] VarDecl=dict:34:6 (Definition)
57 // CHECK-LITERALS: Identifier: "k1" [34:16 - 34:18] DeclRefExpr=k1:32:23
59 // CHECK-LITERALS: Identifier: "o1" [34:21 - 34:23] DeclRefExpr=o1:32:30
61 // CHECK-LITERALS: Identifier: "k2" [35:16 - 35:18] DeclRefExpr=k2:32:37
63 // CHECK-LITERALS: Identifier: "o2" [35:21 - 35:23] DeclRefExpr=o2:32:44
[all …]
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
DJSTestObj.h38 …virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::Propert…
39 …virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::P…
40 …virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPrope…
73 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
74 …virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescri…
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 …]
/external/webkit/Source/JavaScriptCore/parser/
DSyntaxChecker.h88 ALWAYS_INLINE Property(const Identifier* ident, PropertyNode::Type ty) in Property()
99 const Identifier* name;
132 ExpressionType createResolve(const Identifier*, int) { return ResolveExpr; } in createResolve() argument
138 ExpressionType createString(const Identifier*) { return StringExpr; } in createString() argument
142 …ExpressionType createDotAccess(ExpressionType, const Identifier&, int, int, int) { return DotExpr;… in createDotAccess() argument
143 …ExpressionType createRegExp(const Identifier& pattern, const Identifier&, int) { return Yarr::chec… in createRegExp() argument
147 …ExpressionType createAssignResolve(const Identifier&, ExpressionType, bool, int, int, int) { retur… in createAssignResolve() argument
148 …ExpressionType createFunctionExpr(const Identifier*, int, int, int, int, int, int) { return Functi… in createFunctionExpr() argument
154 …template <bool complete> Property createProperty(const Identifier* name, int, PropertyNode::Type t… in createProperty()
171 int createFormalParameterList(const Identifier&) { return 1; } in createFormalParameterList() argument
[all …]
DNodes.h92 typedef Vector<std::pair<const Identifier*, unsigned> > VarStack;
233 StringNode(JSGlobalData*, const Identifier&);
235 const Identifier& value() { return m_value; } in value()
244 const Identifier& m_value;
343 RegExpNode(JSGlobalData*, const Identifier& pattern, const Identifier& flags);
348 const Identifier& m_pattern;
349 const Identifier& m_flags;
362 ResolveNode(JSGlobalData*, const Identifier&, int startOffset);
364 const Identifier& identifier() const { return m_ident; } in identifier()
373 const Identifier& m_ident;
[all …]
/external/webkit/Source/JavaScriptCore/API/
DJSCallbackObject.h50 JSValue getPrivateProperty(const Identifier& propertyName) const in getPrivateProperty()
57 …void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, J… in setPrivateProperty()
64 void deletePrivateProperty(const Identifier& propertyName) in deletePrivateProperty()
81 JSValue getPrivateProperty(const Identifier& propertyName) const in getPrivateProperty()
89 …void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, J… in setPrivateProperty()
95 void deletePrivateProperty(const Identifier& propertyName) in deletePrivateProperty()
136 JSValue getPrivateProperty(const Identifier& propertyName) const in getPrivateProperty()
141 void setPrivateProperty(JSGlobalData& globalData, const Identifier& propertyName, JSValue value) in setPrivateProperty()
146 void deletePrivateProperty(const Identifier& propertyName) in deletePrivateProperty()
157 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
[all …]
/external/webkit/Source/JavaScriptCore/debugger/
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 attri…
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, un…
48 …virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction, un…
49 virtual JSValue lookupGetter(ExecState*, const Identifier& propertyName);
50 virtual JSValue lookupSetter(ExecState*, const Identifier& propertyName);
DDebuggerActivation.cpp54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Proper… in getOwnPropertySlot()
59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPro… in put()
64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue… in putWithAttributes()
69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty()
79 bool DebuggerActivation::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, … in getOwnPropertyDescriptor()
84 void DebuggerActivation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* ge… in defineGetter()
89 void DebuggerActivation::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* se… in defineSetter()
94 JSValue DebuggerActivation::lookupGetter(ExecState* exec, const Identifier& propertyName) in lookupGetter()
99 JSValue DebuggerActivation::lookupSetter(ExecState* exec, const Identifier& propertyName) in lookupSetter()
/external/webkit/Source/WebCore/bindings/js/
DJSDOMWindowShell.h73 …virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::Propert…
74 …virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::P…
75 …virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPrope…
76 …virtual void putWithAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue,…
77 virtual bool deleteProperty(JSC::ExecState*, const JSC::Identifier& propertyName);
80 …virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* get…
81 …virtual void defineSetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* set…
82 …virtual bool defineOwnProperty(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::Property…
83 virtual JSC::JSValue lookupGetter(JSC::ExecState*, const JSC::Identifier& propertyName);
84 virtual JSC::JSValue lookupSetter(JSC::ExecState*, const JSC::Identifier& propertyName);
DJSHTMLAllCollectionCustom.cpp44 static JSValue getNamedItems(ExecState* exec, JSHTMLAllCollection* collection, const Identifier& pr… in getNamedItems()
77 unsigned index = Identifier::toUInt32(string, ok); in callHTMLAllCollection()
82 return JSValue::encode(getNamedItems(exec, jsCollection, Identifier(exec, string))); in callHTMLAllCollection()
88 unsigned index = Identifier::toUInt32(exec->argument(1).toString(exec), ok); in callHTMLAllCollection()
109 …tion::canGetItemsForName(ExecState*, HTMLAllCollection* collection, const Identifier& propertyName) in canGetItemsForName()
116 JSValue JSHTMLAllCollection::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& proper… in nameGetter()
125 uint32_t index = Identifier::toUInt32(exec->argument(0).toString(exec), ok); in item()
128 return getNamedItems(exec, this, Identifier(exec, exec->argument(0).toString(exec))); in item()
133 return getNamedItems(exec, this, Identifier(exec, exec->argument(0).toString(exec))); in namedItem()
/external/webkit/Source/WebCore/bridge/
Druntime_object.h41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
42 …virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescript…
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/JavaScriptCore/dfg/
DDFGOperations.h35 class Identifier; variable
44 typedef EncodedJSValue (*J_DFGOperation_EJI)(ExecState*, EncodedJSValue, Identifier*);
49 typedef void (*V_DFGOperation_EJJI)(ExecState*, EncodedJSValue, EncodedJSValue, Identifier*);
56 EncodedJSValue operationGetById(ExecState*, EncodedJSValue encodedBase, Identifier*);
59 …ionPutByIdStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);
60 …PutByIdNonStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);
61 …ByIdDirectStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);
62 …dDirectNonStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);
/external/webkit/Source/WebCore/bridge/jsc/
DBridgeJSC.h41 class Identifier; variable
67 virtual MethodList methodsNamed(const Identifier&, Instance*) const = 0;
68 virtual Field* fieldNamed(const Identifier&, Instance*) const = 0;
69 … virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&) { return jsUndefined(); } in fallbackObject() argument
94 virtual bool setValueOfUndefinedField(ExecState*, const Identifier&, JSValue) { return false; } in setValueOfUndefinedField() argument
96 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName) = 0;
115 …virtual bool getOwnPropertySlot(JSObject*, ExecState*, const Identifier&, PropertySlot&) { return … in getOwnPropertySlot() argument
116 …virtual bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor… in getOwnPropertyDescriptor() argument
117 virtual void put(JSObject*, ExecState*, const Identifier&, JSValue, PutPropertySlot&) { } in put() argument

12345678910>>...16