Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp1352 JSObject* baseObject = asObject(slot.slotBase()); in tryCacheGetByID() local
1357 if (baseObject->structure()->isDictionary()) { in tryCacheGetByID()
1358 baseObject->flattenDictionaryObject(callFrame->globalData()); in tryCacheGetByID()
1359 offset = baseObject->structure()->get(callFrame->globalData(), propertyName); in tryCacheGetByID()
1362 ASSERT(!baseObject->structure()->isUncacheableDictionary()); in tryCacheGetByID()
1378 …vPC[5].u.structure.set(callFrame->globalData(), codeBlock->ownerExecutable(), baseObject->structur… in tryCacheGetByID()
2457 JSObject* baseObject = asObject(baseVal); in privateExecute() local
2459 if (!baseObject->getPropertySlot(callFrame, ident, slot)) { in privateExecute()
2523 JSObject* baseObject = asObject(baseCell); in privateExecute() local
2527 …ASSERT(baseObject->get(callFrame, codeBlock->identifier(vPC[3].u.operand)) == baseObject->getDirec… in privateExecute()
[all …]
/external/webkit/Source/JavaScriptCore/runtime/
DRegExpConstructor.cpp285 void setRegExpConstructorInput(ExecState* exec, JSObject* baseObject, JSValue value) in setRegExpConstructorInput() argument
287 asRegExpConstructor(baseObject)->setInput(value.toString(exec)); in setRegExpConstructorInput()
290 void setRegExpConstructorMultiline(ExecState* exec, JSObject* baseObject, JSValue value) in setRegExpConstructorMultiline() argument
292 asRegExpConstructor(baseObject)->setMultiline(value.toBoolean(exec)); in setRegExpConstructorMultiline()
DRegExpObject.cpp122 void setRegExpObjectLastIndex(ExecState* exec, JSObject* baseObject, JSValue value) in setRegExpObjectLastIndex() argument
124 asRegExpObject(baseObject)->setLastIndex(exec->globalData(), value); in setRegExpObjectLastIndex()
DLookup.h54 typedef void (*PutFunction)(ExecState*, JSObject* baseObject, JSValue value);
/external/webkit/Source/JavaScriptCore/
DChangeLog-2009-06-1634495 (JSC::Machine::privateExecute): Set up baseObject before entering the