Searched defs:isStrictMode (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DPutPropertySlot.h41 PutPropertySlot(bool isStrictMode = false)
44 , m_isStrictMode(isStrictMode)
65 bool isStrictMode() const { return m_isStrictMode; } function in class:JSC::PutPropertySlot
H A DArguments.h56 bool isStrictMode : 1; member in struct:JSC::ArgumentsData
182 d->isStrictMode = callFrame->codeBlock()->isStrictMode();
183 if (d->isStrictMode)
215 d->isStrictMode = callFrame->codeBlock()->isStrictMode();
216 if (d->isStrictMode)
H A DExecutable.h188 bool isStrictMode() const { return m_features & StrictModeFeature; } function in class:JSC::ScriptExecutable
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.h401 bool isStrictMode() const { return m_codeBlock->isStrictMode(); } function in class:JSC::BytecodeGenerator
482 return FunctionExecutable::create(exec, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
487 return FunctionExecutable::create(globalData, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.h224 bool isStrictMode() const { return m_isStrictMode; } function in class:JSC::CodeBlock
/external/webkit/Source/JavaScriptCore/parser/
H A DNodes.h1417 bool isStrictMode() const { return m_features & StrictModeFeature; } function in class:JSC::ScopeNode
1488 static FunctionBodyNode* create(JSGlobalData*, bool isStrictMode);

Completed in 1498 milliseconds