Searched defs:isStrictMode (Results 1 - 6 of 6) sorted by relevance
/external/webkit/Source/JavaScriptCore/runtime/ |
H A D | PutPropertySlot.h | 41 PutPropertySlot(bool isStrictMode = false) 44 , m_isStrictMode(isStrictMode) 65 bool isStrictMode() const { return m_isStrictMode; } function in class:JSC::PutPropertySlot
|
H A D | Arguments.h | 56 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 D | Executable.h | 188 bool isStrictMode() const { return m_features & StrictModeFeature; } function in class:JSC::ScriptExecutable
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
H A D | BytecodeGenerator.h | 401 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 D | CodeBlock.h | 224 bool isStrictMode() const { return m_isStrictMode; } function in class:JSC::CodeBlock
|
/external/webkit/Source/JavaScriptCore/parser/ |
H A D | Nodes.h | 1417 bool isStrictMode() const { return m_features & StrictModeFeature; } function in class:JSC::ScopeNode 1488 static FunctionBodyNode* create(JSGlobalData*, bool isStrictMode);
|
Completed in 1498 milliseconds