Home | History | Annotate | Download | only in cctest

Lines Matching defs:global_handles

3106   v8::internal::GlobalHandles* global_handles =
3107 reinterpret_cast<v8::internal::Isolate*>(isolate)->global_handles();
3108 int initial_handle_count = global_handles->global_handles_count();
3117 CHECK_EQ(global_handles->global_handles_count(), initial_handle_count);
3123 CHECK_EQ(global_handles->global_handles_count(), initial_handle_count - 1);
3134 v8::internal::GlobalHandles* global_handles =
3135 reinterpret_cast<v8::internal::Isolate*>(isolate)->global_handles();
3136 int initial_handle_count = global_handles->global_handles_count();
3147 CHECK_EQ(global_handles->global_handles_count(), initial_handle_count - 1);
3153 v8::internal::GlobalHandles* global_handles = NULL;
3159 global_handles =
3160 reinterpret_cast<v8::internal::Isolate*>(isolate)->global_handles();
3161 initial_handle_count = global_handles->global_handles_count();
3164 CHECK_EQ(global_handles->global_handles_count(), initial_handle_count + 1);
3167 CHECK_EQ(global_handles->global_handles_count(), initial_handle_count + 1);
3168 global_handles->Destroy(reinterpret_cast<i::Object**>(str));
3169 CHECK_EQ(global_handles->global_handles_count(), initial_handle_count);