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

  /external/v8/src/
data-flow.cc 167 if (var->is_global() && !var->is_this()) {
205 ASSERT(proxy != NULL && proxy->var()->is_this());
221 ASSERT(proxy != NULL && proxy->var()->is_this());
307 ASSERT(var->is_global() || var->is_this());
314 ASSERT(var->is_global() || var->is_this());
459 ASSERT(!var->is_this());
495 ASSERT(proxy != NULL && proxy->var()->is_this());
514 ASSERT(proxy != NULL && proxy->var()->is_this());
variables.h 175 return !is_this() && name().is_identical_to(n);
185 bool is_this() const { return kind_ == THIS; } function in class:v8::internal::Variable
ast.cc 62 bool is_this,
66 is_this_(is_this),
75 VariableProxy::VariableProxy(bool is_this)
76 : is_this_(is_this) {
83 ASSERT((is_this() && var->is_this()) || name_.is_identical_to(var->name()));
fast-codegen.cc 217 if (!var->is_global() || var->is_this()) BAILOUT("Non-global variable");
271 if (proxy == NULL || !proxy->var()->is_this()) {
309 if (proxy == NULL || !proxy->var()->is_this()) {
583 ASSERT(expr->var()->is_global() && !expr->var()->is_this());
646 ASSERT(prop->obj()->AsVariableProxy()->var()->is_this());
672 ASSERT(expr->obj()->AsVariableProxy()->var()->is_this());
ast.h 936 virtual bool IsTrivial() { return is_this(); }
939 return !is_this() && name().is_identical_to(n);
951 bool is_this() const { return is_this_; } function in class:v8::internal::VariableProxy
967 VariableProxy(Handle<String> name, bool is_this, bool inside_with);
968 explicit VariableProxy(bool is_this);
976 virtual bool IsValidLeftHandSide() { return !is_this(); }
983 explicit VariableProxySentinel(bool is_this) : VariableProxy(is_this) { }
    [all...]
rewriter.cc 243 if (!var->is_this() &&
full-codegen.cc 327 } else if (var != NULL && !var->is_this() && var->is_global()) {
scopes.cc 737 if ((var->is_this() || var->name()->length() > 0) &&
    [all...]
parser.cc     [all...]
  /external/v8/src/ia32/
fast-codegen-ia32.cc 217 if (!var->is_global() || var->is_this()) BAILOUT("Non-global variable");
271 if (proxy == NULL || !proxy->var()->is_this()) {
309 if (proxy == NULL || !proxy->var()->is_this()) {
786 ASSERT(expr->var()->is_global() && !expr->var()->is_this());
849 ASSERT(prop->obj()->AsVariableProxy()->var()->is_this());
875 ASSERT(expr->obj()->AsVariableProxy()->var()->is_this());
full-codegen-ia32.cc 807 if (var->is_global() && !var->is_this()) {
    [all...]
virtual-frame-ia32.cc     [all...]
codegen-ia32.cc 571 if (variable != NULL && !variable->is_this() && variable->is_global()) {
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 696 if (var->is_global() && !var->is_this()) {
    [all...]
codegen-arm.cc 600 if (variable != NULL && !variable->is_this() && variable->is_global()) {
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 810 if (var->is_global() && !var->is_this()) {
    [all...]
codegen-x64.cc     [all...]

Completed in 387 milliseconds