Lines Matching refs:Context

36 Handle<Context> ScriptContextTable::GetContext(Isolate* isolate,  in GetContext()
40 return Handle<Context>::cast( in GetContext()
45 Context* Context::cast(Object* context) { in cast()
47 return reinterpret_cast<Context*>(context); in cast()
55 void Context::set_scope_info(ScopeInfo* scope_info) { in set_scope_info()
59 Context* Context::previous() { in previous()
62 return reinterpret_cast<Context*>(result); in previous()
64 void Context::set_previous(Context* context) { set(PREVIOUS_INDEX, context); } in set_previous()
66 Object* Context::next_context_link() { return get(Context::NEXT_CONTEXT_LINK); } in next_context_link()
68 bool Context::has_extension() { return !extension()->IsTheHole(); } in has_extension()
69 HeapObject* Context::extension() { in extension()
72 void Context::set_extension(HeapObject* object) { in set_extension()
76 NativeContext* Context::native_context() const { in native_context()
82 void Context::set_native_context(NativeContext* context) { in set_native_context()
86 bool Context::IsFunctionContext() const { in IsFunctionContext()
90 bool Context::IsCatchContext() const { in IsCatchContext()
94 bool Context::IsWithContext() const { in IsWithContext()
98 bool Context::IsDebugEvaluateContext() const { in IsDebugEvaluateContext()
102 bool Context::IsBlockContext() const { in IsBlockContext()
106 bool Context::IsModuleContext() const { in IsModuleContext()
110 bool Context::IsEvalContext() const { in IsEvalContext()
114 bool Context::IsScriptContext() const { in IsScriptContext()
118 bool Context::HasSameSecurityTokenAs(Context* that) const { in HasSameSecurityTokenAs()
124 void Context::set_##name(type* value) { \
128 bool Context::is_##name(type* value) const { \
132 type* Context::name() const { \
145 int Context::FunctionMapIndex(LanguageMode language_mode, FunctionKind kind,
207 Map* Context::GetInitialJSArrayMap(ElementsKind kind) const { in GetInitialJSArrayMap()
211 Object* const initial_js_array_map = get(Context::ArrayMapIndex(kind)); in GetInitialJSArrayMap()