Home
last modified time | relevance | path

Searched refs:baseObject (Results 1 – 5 of 5) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DRegExpConstructor.cpp278 void setRegExpConstructorInput(ExecState* exec, JSObject* baseObject, JSValue value) in setRegExpConstructorInput() argument
280 asRegExpConstructor(baseObject)->setInput(value.toString(exec)); in setRegExpConstructorInput()
283 void setRegExpConstructorMultiline(ExecState* exec, JSObject* baseObject, JSValue value) in setRegExpConstructorMultiline() argument
285 asRegExpConstructor(baseObject)->setMultiline(value.toBoolean(exec)); in setRegExpConstructorMultiline()
DRegExpObject.cpp110 void setRegExpObjectLastIndex(ExecState* exec, JSObject* baseObject, JSValue value) in setRegExpObjectLastIndex() argument
112 asRegExpObject(baseObject)->setLastIndex(value.toInteger(exec)); in setRegExpObjectLastIndex()
DLookup.h52 typedef void (*PutFunction)(ExecState*, JSObject* baseObject, JSValue value);
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp1047 JSObject* baseObject = asObject(slot.slotBase()); in tryCacheGetByID() local
1052 if (baseObject->structure()->isDictionary()) { in tryCacheGetByID()
1053 baseObject->flattenDictionaryObject(); in tryCacheGetByID()
1054 offset = baseObject->structure()->get(propertyName); in tryCacheGetByID()
1057 ASSERT(!baseObject->structure()->isUncacheableDictionary()); in tryCacheGetByID()
1060 vPC[5] = baseObject->structure(); in tryCacheGetByID()
2113 JSObject* baseObject = asObject(baseCell); in privateExecute() local
2117 …ASSERT(baseObject->get(callFrame, callFrame->codeBlock()->identifier(vPC[3].u.operand)) == baseObj… in privateExecute()
2118 callFrame->r(dst) = JSValue(baseObject->getDirectOffset(offset)); in privateExecute()
2198 … JSObject* baseObject = asObject(baseCell->structure()->prototypeForLookup(callFrame)); in privateExecute() local
[all …]
/external/webkit/JavaScriptCore/
DChangeLog-2009-06-1634495 (JSC::Machine::privateExecute): Set up baseObject before entering the