Lines Matching defs:nullptr

193   // Lookup a variable in this scope. Returns the variable or nullptr if not
214 // Returns nullptr if there was a declaration conflict.
270 // name if there is one, nullptr otherwise.
283 for (Scope* scope = outer_scope(); scope != nullptr;
424 // for (Scope* s = inner_scope_; s != nullptr; s = s->sibling_) {
469 // The scope immediately surrounding this scope, or nullptr.
618 for (Scope* scope = inner_scope_; scope != nullptr;
630 if (var != nullptr || scope_info_.is_null()) return var;
635 for (Scope* scope = this; scope != nullptr; scope = scope->outer_scope()) {
637 if (var != nullptr) return var;
639 return nullptr;
690 Scope* outer_scope_end, Scope* cache_scope = nullptr,
754 Scope* outer_scope_; // the immediately enclosing outer scope, or nullptr
1012 Scope* cache = nullptr);
1048 // literals, or nullptr. Only valid for function scopes.
1074 // The function's rest parameter (nullptr if there is none).
1076 return has_rest_ ? params_[params_.length() - 1] : nullptr;
1093 for (ZoneHashMap::Entry* p = variables_.Start(); p != nullptr;
1110 // The local variable 'arguments' if we need to allocate it; nullptr
1113 DCHECK_IMPLIES(is_arrow_scope(), arguments_ == nullptr);
1121 DCHECK(this_function == nullptr ||
1311 Variable* this_function = nullptr;
1315 Variable* generator_object = nullptr;
1324 if (rare_data_ == nullptr) {
1331 if (rare_data_ == nullptr) return nullptr;
1340 if (V8_LIKELY(rare_data_ == nullptr)) return;
1343 if (*var && predicate(*var)) *var = nullptr;
1346 RareData* rare_data_ = nullptr;
1387 // Returns nullptr in a deserialized scope.
1431 // - If we find the private name in the scope chain, return nullptr.
1435 // return nullptr.
1458 return GetRareData() == nullptr ? nullptr : GetRareData()->brand;
1512 // Returns nullptr if it cannot be found.
1524 Variable* brand = nullptr;
1531 if (GetRareData() == nullptr) {
1543 Variable* class_variable_ = nullptr;
1563 bool Done() const { return current_scope_ == nullptr; }