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

  /external/chromium_org/gin/
per_isolate_data.cc 11 using v8::Eternal;
38 object_templates_[info] = Eternal<ObjectTemplate>(isolate_, templ);
43 function_templates_[info] = Eternal<FunctionTemplate>(isolate_, templ);
per_isolate_data.h 74 WrapperInfo*, v8::Eternal<v8::ObjectTemplate> > ObjectTemplateMap;
76 WrapperInfo*, v8::Eternal<v8::FunctionTemplate> > FunctionTemplateMap;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerIsolateData.h 104 typedef HashMap<const void*, v8::Eternal<v8::FunctionTemplate> > DOMTemplateMap;
V8PerIsolateData.cpp 133 domTemplateMap.add(domTemplateKey, v8::Eternal<v8::FunctionTemplate>(m_isolate, templ));
148 currentDOMTemplateMap().add(domTemplateKey, v8::Eternal<v8::FunctionTemplate>(m_isolate, v8::Local<v8::FunctionTemplate>(templ)));
V8NPObject.cpp 435 static v8::Eternal<v8::FunctionTemplate> npObjectDesc;
  /external/chromium_org/v8/test/cctest/
test-global-handles.cc 333 v8::Eternal<v8::Value> eternals[kArrayLength];
372 // Create an eternal via the constructor
376 v8::Eternal<v8::Object> eternal(v8_isolate, object);
377 CHECK(!eternal.IsEmpty());
378 CHECK(object == eternal.Get(v8_isolate));
  /external/chromium_org/v8/include/
v8.h 102 template <class T> class Eternal;
374 template<class F> friend class Eternal;
395 // Eternal handles are set-once handles that live for the life of the isolate.
396 template <class T> class Eternal {
398 V8_INLINE Eternal() : index_(kInitialValue) { }
400 V8_INLINE Eternal(Isolate* isolate, Local<S> handle) : index_(kInitialValue) {
    [all...]

Completed in 75 milliseconds