Searched refs:baseObject (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 1352 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/ |
D | RegExpConstructor.cpp | 285 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()
|
D | RegExpObject.cpp | 122 void setRegExpObjectLastIndex(ExecState* exec, JSObject* baseObject, JSValue value) in setRegExpObjectLastIndex() argument 124 asRegExpObject(baseObject)->setLastIndex(exec->globalData(), value); in setRegExpObjectLastIndex()
|
D | Lookup.h | 54 typedef void (*PutFunction)(ExecState*, JSObject* baseObject, JSValue value);
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2009-06-16 | 34495 (JSC::Machine::privateExecute): Set up baseObject before entering the
|