HomeSort by relevance Sort by last modified time
    Searched refs:isStrictMode (Results 1 - 21 of 21) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
PutPropertySlot.h 41 PutPropertySlot(bool isStrictMode = false)
44 , m_isStrictMode(isStrictMode)
65 bool isStrictMode() const { return m_isStrictMode; }
Arguments.h 56 bool isStrictMode : 1;
182 d->isStrictMode = callFrame->codeBlock()->isStrictMode();
183 if (d->isStrictMode)
215 d->isStrictMode = callFrame->codeBlock()->isStrictMode();
216 if (d->isStrictMode)
Arguments.cpp 199 if (!d->isStrictMode) {
206 if (propertyName == exec->propertyNames().caller && d->isStrictMode)
230 if (!d->isStrictMode) {
237 if (propertyName == exec->propertyNames().caller && d->isStrictMode)
289 if (!d->isStrictMode) {
297 if (propertyName == exec->propertyNames().caller && d->isStrictMode)
340 if (!d->isStrictMode) {
347 if (propertyName == exec->propertyNames().caller && !d->isStrictMode)
Executable.cpp 105 RefPtr<EvalNode> evalNode = globalData->parser->parse<EvalNode>(lexicalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
164 RefPtr<ProgramNode> programNode = globalData->parser->parse<ProgramNode>(lexicalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
235 RefPtr<FunctionBodyNode> body = globalData->parser->parse<FunctionBodyNode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
283 RefPtr<FunctionBodyNode> body = globalData->parser->parse<FunctionBodyNode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
364 return FunctionExecutable::create(&exec->globalData(), functionName, body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
JSFunction.cpp 200 if (jsExecutable()->isStrictMode()) {
216 if (jsExecutable()->isStrictMode()) {
240 if (jsExecutable()->isStrictMode())
253 if (jsExecutable()->isStrictMode())
290 if (jsExecutable()->isStrictMode()) {
JSObject.cpp 122 if (!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode())
131 if (slot.isStrictMode())
163 if (!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode())
Executable.h 188 bool isStrictMode() const { return m_features & StrictModeFeature; }
JSObject.h     [all...]
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp 92 EvalExecutable* eval = EvalExecutable::create(m_callFrame, makeSource(script), m_callFrame->codeBlock()->isStrictMode());
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 401 bool isStrictMode() const { return m_codeBlock->isStrictMode(); }
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());
BytecodeGenerator.cpp 377 if (m_codeBlock->isStrictMode()) {
479 if (codeBlock->isStrictMode())
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]
JITOpcodes.cpp     [all...]
JITOpcodes32_64.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGNonSpeculativeJIT.cpp 529 callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByValStrict : operationPutByValNonStrict, arg1GPR, arg2GPR, arg3GPR);
553 callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdStrict : operationPutByIdNonStrict, valueGPR, baseGPR, identifier(node.identifierNumber()));
565 callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdDirectStrict : operationPutByIdDirectNonStrict, valueGPR, baseGPR, identifier(node.identifierNumber()));
DFGSpeculativeJIT.cpp 730 callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdStrict : operationPutByIdNonStrict, valueGPR, baseGPR, identifier(node.identifierNumber()));
742 callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdDirectStrict : operationPutByIdDirectNonStrict, valueGPR, baseGPR, identifier(node.identifierNumber()));
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 396 if (!codeBlock->isStrictMode()) {
406 EvalExecutable* eval = codeBlock->evalCodeCache().get(callFrame, codeBlock->ownerExecutable(), codeBlock->isStrictMode(), programSource, scopeChain, exceptionValue);
568 if (!oldCodeBlock->isStrictMode())
571 } else if (oldCodeBlock->usesArguments() && !oldCodeBlock->isStrictMode()) {
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 224 bool isStrictMode() const { return m_isStrictMode; }
CodeBlock.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 

Completed in 122 milliseconds