HomeSort by relevance Sort by last modified time
    Searched refs:Persistent (Results 26 - 50 of 136) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ValueCache.h 55 returnValue.Set(*m_lastV8String.persistent());
61 static void makeWeakCallback(v8::Isolate*, v8::Persistent<v8::String>*, StringImpl*);
V8PerIsolateData.h 90 v8::Persistent<v8::Value>& ensureLiveRoot();
156 v8::Persistent<v8::FunctionTemplate> m_lazyEventListenerToStringTemplate;
ScriptState.h 88 static void makeWeakCallback(v8::Isolate*, v8::Persistent<v8::Context>*, ScriptState*);
V8MutationCallback.cpp 84 void V8MutationCallback::makeWeakCallback(v8::Isolate*, v8::Persistent<v8::Function>*, V8MutationCallback* callback)
V8NodeFilterCondition.cpp 96 void V8NodeFilterCondition::makeWeakCallback(v8::Isolate*, v8::Persistent<v8::Value>*, V8NodeFilterCondition* condition)
ScriptState.cpp 92 void ScriptState::makeWeakCallback(v8::Isolate* isolate, v8::Persistent<v8::Context>* object, ScriptState* scriptState)
V8PerContextData.h 144 v8::Persistent<v8::Context> m_context;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptManager.h 67 static void makeWeakCallback(v8::Isolate*, v8::Persistent<v8::Object>*, InjectedScriptHost*);
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageInfo.cpp 85 case PERSISTENT:
87 m_persistentStorage = StorageQuota::create(StorageQuota::Persistent);
  /external/v8/samples/
process.cc 125 Persistent<Context> context_;
126 Persistent<Function> process_;
127 static Persistent<ObjectTemplate> request_template_;
128 static Persistent<ObjectTemplate> map_template_;
158 // affect each other. Context::New returns a persistent handle which
160 // this method. That persistent handle has to be disposed in the
188 // Store the function in a Persistent handle, since we also want
190 process_ = Persistent<Function>::New(process_fun);
273 // Dispose the persistent handles. When noone else has any
281 Persistent<ObjectTemplate> JsHttpRequestProcessor::request_template_
    [all...]
shell.cc 48 v8::Persistent<v8::Context> CreateShellContext();
71 v8::Persistent<v8::Context> context = CreateShellContext();
94 v8::Persistent<v8::Context> CreateShellContext() {
  /external/v8/test/cctest/
test-thread-termination.cc 127 v8::Persistent<v8::Context> context = v8::Context::New(NULL, global);
147 v8::Persistent<v8::Context> context = v8::Context::New(NULL, global);
186 v8::Persistent<v8::Context> context = v8::Context::New(NULL, global);
210 v8::Persistent<v8::Context> context = v8::Context::New(NULL, global);
313 v8::Persistent<v8::Context> context = v8::Context::New(NULL, global);
359 v8::Persistent<v8::Context> context = v8::Context::New(NULL, global);
test-serialize.cc 245 v8::Persistent<v8::Context> env = v8::Context::New();
296 v8::Persistent<v8::Context> env = v8::Context::New();
309 v8::Persistent<v8::Context> env = v8::Context::New();
322 v8::Persistent<v8::Context> env = v8::Context::New();
339 v8::Persistent<v8::Context> env = v8::Context::New();
354 v8::Persistent<v8::Context> env = v8::Context::New();
477 v8::Persistent<v8::Context> env = v8::Context::New();
test-heap-profiler.cc 858 v8::Persistent<v8::String> p_AAA =
859 v8::Persistent<v8::String>::New(v8_str("AAA"));
861 v8::Persistent<v8::String> p_BBB =
862 v8::Persistent<v8::String>::New(v8_str("BBB"));
864 v8::Persistent<v8::String> p_CCC =
865 v8::Persistent<v8::String>::New(v8_str("CCC"));
916 objects_[i] = v8::Persistent<v8::Object>::New(v8::Object::New());
932 v8::Persistent<v8::Object>::Cast(objects_[0]), &objects_[1], 1);
935 v8::Persistent<v8::Object>::Cast(objects_[1]), &objects_[2], 2);
938 v8::Persistent<v8::Value> objects_[kObjectsCount]
    [all...]
test-api.cc 66 using ::v8::Persistent;
    [all...]
test-random.cc 39 static v8::Persistent<v8::Context> env;
test-alloc.cc 125 v8::Persistent<v8::Context> env = v8::Context::New();
147 v8::Persistent<v8::Context> env = v8::Context::New();
test-log.cc 218 v8::Persistent<v8::Context> context = v8::Context::New();
372 v8::Persistent<v8::FunctionTemplate> obj =
373 v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
422 v8::Persistent<v8::FunctionTemplate> obj =
423 v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
test-heap.cc 15 static v8::Persistent<v8::Context> env;
334 static void TestWeakGlobalHandleCallback(v8::Persistent<v8::Value> handle,
1016 v8::Persistent<v8::Context> ctx[kNumTestContexts];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp 64 v8::Persistent<v8::Object> weakHandle(isolate, instance);
118 void InjectedScriptManager::makeWeakCallback(v8::Isolate* isolate, v8::Persistent<v8::Object>* object, InjectedScriptHost* host)
  /external/v8/src/
d8.h 274 static Persistent<Context> CreateEvaluationContext();
368 static Persistent<Context> evaluation_context_;
370 static Persistent<Context> utility_context_;
389 static void ExternalArrayWeakCallback(Persistent<Value> object, void* data);
  /external/chromium_org/v8/samples/
process.cc 134 Persistent<Context> context_;
135 Persistent<Function> process_;
136 static Persistent<ObjectTemplate> request_template_;
137 static Persistent<ObjectTemplate> map_template_;
167 // affect each other. Context::New returns a persistent handle which
169 // this method. That persistent handle has to be disposed in the
198 // Store the function in a Persistent handle, since we also want
291 // Dispose the persistent handles. When noone else has any
300 Persistent<ObjectTemplate> JsHttpRequestProcessor::request_template_;
301 Persistent<ObjectTemplate> JsHttpRequestProcessor::map_template_
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
object_backed_native_handler.cc 65 v8::Persistent<v8::Object> data(isolate, v8::Object::New());
  /external/chromium_org/v8/src/
d8-readline.cc 150 static Persistent<Array> current_completions;
d8.h 384 static Persistent<Context> evaluation_context_;
386 static Persistent<Context> utility_context_;
421 Persistent<Object>* object,

Completed in 1116 milliseconds

12 3 4 5 6