HomeSort by relevance Sort by last modified time
    Searched refs:Eternal (Results 1 - 2 of 2) sorted by null

  /external/v8/test/cctest/
test-global-handles.cc 333 v8::Eternal<v8::Value> eternals[kArrayLength];
376 // Create an eternal via the constructor
380 v8::Eternal<v8::Object> eternal(v8_isolate, object);
381 CHECK(!eternal.IsEmpty());
382 CHECK(object == eternal.Get(v8_isolate));
  /external/v8/include/
v8.h 116 template <class T> class Eternal;
311 template<class F> friend class Eternal;
390 // Eternal handles are set-once handles that live for the life of the isolate.
391 template <class T> class Eternal {
393 V8_INLINE Eternal() : index_(kInitialValue) { }
395 V8_INLINE Eternal(Isolate* isolate, Local<S> handle) : index_(kInitialValue) {
    [all...]

Completed in 455 milliseconds