Lines Matching defs:object
38 GlobalObject* object = global();
39 if (object->IsJSGlobalObject()) {
40 return JSGlobalObject::cast(object)->builtins();
42 ASSERT(object->IsJSBuiltinsObject());
43 return JSBuiltinsObject::cast(object);
49 // Fast case: the global object for this context has been set. In
50 // that case, the global object has a direct pointer to the global
56 // During bootstrapping, the global object might not be set and we
72 void Context::set_global_proxy(JSObject* object) {
73 global_context()->set_global_proxy_object(object);
77 Handle<Object> Context::Lookup(Handle<String> name, ContextLookupFlags flags,
99 // check extension/with object
115 PrintF("=> found property in context object %p\n",
167 PrintF("=> found parameter %d in arguments object\n", param_index);
205 return Handle<Object>::null();
249 Object* element = get(OPTIMIZED_FUNCTIONS_LIST);
259 Object* context = GetHeap()->global_contexts_list();
276 Object* element = get(OPTIMIZED_FUNCTIONS_LIST);
298 Object* Context::OptimizedFunctionsListHead() {
310 bool Context::IsBootstrappingOrContext(Object* object) {
313 return Isolate::Current()->bootstrapper()->IsActive() || object->IsContext();
317 bool Context::IsBootstrappingOrGlobalObject(Object* object) {
323 object->IsGlobalObject();