Lines Matching defs:isolate

204     // TODO(delphick): Consider whether we can get the isolate without using
206 Isolate* isolate = Isolate::Current();
208 isolate->string_stream_debug_object_cache();
217 debug_object_cache->push_back(handle(HeapObject::cast(o), isolate));
231 void StringStream::Log(Isolate* isolate) {
232 LOG(isolate, StringEvent("StackDump", buffer_));
250 Handle<String> StringStream::ToString(Isolate* isolate) {
251 return isolate->factory()
256 void StringStream::ClearMentionedObjectCache(Isolate* isolate) {
257 isolate->set_string_stream_current_security_token(Object());
258 if (isolate->string_stream_debug_object_cache() == nullptr) {
259 isolate->set_string_stream_debug_object_cache(new DebugObjectCache());
261 isolate->string_stream_debug_object_cache()->clear();
265 bool StringStream::IsMentionedObjectCacheClear(Isolate* isolate) {
267 isolate->string_stream_debug_object_cache()->size() == 0;
364 void StringStream::PrintMentionedObjectCache(Isolate* isolate) {
367 isolate->string_stream_debug_object_cache();
402 Isolate* isolate = fun.GetIsolate();
403 if (token != isolate->string_stream_current_security_token()) {
405 isolate->set_string_stream_current_security_token(token);
417 Isolate* isolate = fun.GetIsolate();
418 if (receiver.IsNullOrUndefined(isolate) || receiver.IsTheHole(isolate) ||
421 } else if (!isolate->context().is_null()) {
423 receiver = receiver.GetPrototypeChainRootMap(isolate).prototype();
426 for (PrototypeIterator iter(isolate, JSObject::cast(receiver),
431 if (!key.IsUndefined(isolate)) {