OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HandleScope
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/v8/src/
handles-inl.h
44
location_ =
HandleScope
::CreateHandle(obj->GetIsolate(), obj);
51
location_ =
HandleScope
::CreateHandle(isolate, obj);
112
HandleScope
::
HandleScope
(Isolate* isolate) {
122
HandleScope
::~
HandleScope
() {
127
void
HandleScope
::CloseScope(Isolate* isolate,
148
Handle<T>
HandleScope
::CloseAndEscape(Handle<T> handle_value) {
168
T**
HandleScope
::CreateHandle(Isolate* isolate, T* value) {
handles.h
41
// Handles are only valid within a
HandleScope
.
132
class
HandleScope
{
134
explicit inline
HandleScope
(Isolate* isolate);
136
inline ~
HandleScope
();
152
// Closes the
HandleScope
(invalidating all handles
153
// created in the scope of the
HandleScope
) and returns
163
HandleScope
(const
HandleScope
&);
164
void operator=(const
HandleScope
&);
185
friend class v8::
HandleScope
;
[
all
...]
api.cc
693
HandleScope
::
HandleScope
(Isolate* isolate) {
698
void
HandleScope
::Initialize(Isolate* isolate) {
700
API_ENTRY_CHECK(internal_isolate, "
HandleScope
::
HandleScope
");
711
HandleScope
::~
HandleScope
() {
718
void
HandleScope
::Leave() {
719
return i::
HandleScope
::CloseScope(isolate_, prev_next_, prev_limit_);
723
int
HandleScope
::NumberOfHandles()
[
all
...]
/external/v8/src/
handles-inl.h
51
location_ =
HandleScope
::CreateHandle(obj, GetIsolateForHandle(obj));
58
location_ =
HandleScope
::CreateHandle(obj, isolate);
70
HandleScope
::
HandleScope
() {
81
HandleScope
::
HandleScope
(Isolate* isolate) {
92
HandleScope
::~
HandleScope
() {
96
void
HandleScope
::CloseScope() {
113
Handle<T>
HandleScope
::CloseAndEscape(Handle<T> handle_value)
[
all
...]
handles.h
40
// Handles are only valid within a
HandleScope
.
91
inline Handle<T> EscapeFrom(v8::
HandleScope
* scope);
110
class
HandleScope
{
112
inline
HandleScope
();
113
explicit inline
HandleScope
(Isolate* isolate);
115
inline ~
HandleScope
();
131
// Closes the
HandleScope
(invalidating all handles
132
// created in the scope of the
HandleScope
) and returns
142
HandleScope
(const
HandleScope
&)
[
all
...]
api.cc
470
i::
HandleScope
::ZapRange(begin, end);
664
HandleScope
::
HandleScope
() {
666
API_ENTRY_CHECK(isolate, "
HandleScope
::
HandleScope
");
677
HandleScope
::~
HandleScope
() {
684
void
HandleScope
::Leave() {
693
i::
HandleScope
::DeleteExtensions(isolate_);
697
i::
HandleScope
::ZapRange(prev_next_, prev_limit_)
[
all
...]
/external/v8/include/
v8.h
300
* a Local handle only lives as long as the
HandleScope
in which it was
436
class V8EXPORT
HandleScope
{
438
HandleScope
();
440
~
HandleScope
();
463
HandleScope
(const
HandleScope
&);
464
void operator=(const
HandleScope
&);
488
// from the
HandleScope
being closed to the next top most
HandleScope
.
[
all
...]
/external/chromium_org/v8/include/
v8.h
337
friend class
HandleScope
;
413
friend class
HandleScope
;
472
* a Local handle only lives as long as the
HandleScope
in which it was
849
class V8_EXPORT
HandleScope
{
851
HandleScope
(Isolate* isolate);
853
~
HandleScope
();
874
V8_INLINE
HandleScope
() {}
879
HandleScope
(const
HandleScope
&);
880
void operator=(const
HandleScope
&)
[
all
...]
Completed in 2309 milliseconds