HomeSort by relevance Sort by last modified time
    Searched refs:NewInstance (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/chrome/renderer/extensions/
native_handler.h 24 virtual v8::Handle<v8::Object> NewInstance() = 0;
binding_generating_native_handler.h 23 // Object returned by |NewInstance| to the generated binding.
28 virtual v8::Handle<v8::Object> NewInstance() OVERRIDE;
object_backed_native_handler.h 31 virtual v8::Handle<v8::Object> NewInstance() OVERRIDE;
38 // NewInstance()s of this ObjectBackedNativeHandler will have a property
object_backed_native_handler.cc 34 v8::Handle<v8::Object> ObjectBackedNativeHandler::NewInstance() {
35 return object_template_->NewInstance();
binding_generating_native_handler.cc 20 v8::Handle<v8::Object> BindingGeneratingNativeHandler::NewInstance() {
module_system.cc 231 v8::Handle<v8::Object> natives(NewInstance());
519 return i->second->NewInstance();
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserFactory.java 123 return (Parser) NewInstance.newInstance (
124 NewInstance.getClassLoader (), className);
NewInstance.java 0 // NewInstance.java - create a new instance of a class by name.
6 // $Id: NewInstance.java,v 1.4 2002/01/30 20:52:27 dbrownell Exp $
34 class NewInstance {
41 static Object newInstance (ClassLoader classLoader, String className)
51 return driverClass.newInstance();
66 return NewInstance.class.getClassLoader();
XMLReaderFactory.java 110 ClassLoader loader = NewInstance.getClassLoader ();
182 return loadClass (NewInstance.getClassLoader (), className);
189 return (XMLReader) NewInstance.newInstance (loader, className);
  /external/chromium_org/v8/test/cctest/
test-accessors.cc 144 x_holder = obj->NewInstance();
182 Local<v8::Object> instance = templ->NewInstance();
228 v8::Handle<v8::Object> inst = obj->NewInstance();
270 v8::Handle<v8::Object> inst = obj->NewInstance();
294 v8::Handle<v8::Object> inst = obj->NewInstance();
312 v8::Handle<v8::Object> inst = obj->NewInstance();
327 v8::Handle<v8::Object> inst = obj->NewInstance();
362 env->Global()->Set(v8_str("obj"), obj->NewInstance());
395 env->Global()->Set(v8_str("obj"), obj->NewInstance());
427 env->Global()->Set(v8_str("obj"), obj->NewInstance());
    [all...]
test-api.cc     [all...]
test-cpu-profiler.cc 738 v8::Local<v8::Object> instance = func->NewInstance();
778 v8::Local<v8::Object> instance = func->NewInstance();
833 v8::Local<v8::Object> instance = func->NewInstance();
870 v8::Local<v8::Object> instance = func->NewInstance();
    [all...]
test-object-observe.cc 379 Handle<Object> proto = tmpl->GetFunction()->NewInstance();
test-debug.cc     [all...]
  /external/v8/test/cctest/
test-accessors.cc 139 x_holder = obj->NewInstance();
177 Local<v8::Object> instance = templ->NewInstance();
222 v8::Handle<v8::Object> inst = obj->NewInstance();
258 v8::Handle<v8::Object> inst = obj->NewInstance();
281 v8::Handle<v8::Object> inst = obj->NewInstance();
299 v8::Handle<v8::Object> inst = obj->NewInstance();
314 v8::Handle<v8::Object> inst = obj->NewInstance();
348 env->Global()->Set(v8_str("obj"), obj->NewInstance());
381 env->Global()->Set(v8_str("obj"), obj->NewInstance());
414 env->Global()->Set(v8_str("obj"), obj->NewInstance());
    [all...]
test-api.cc 913 Local<v8::Object> base_instance = base_function->NewInstance();
914 Local<v8::Object> derived_instance = derived_function->NewInstance();
915 Local<v8::Object> derived_instance2 = derived_function->NewInstance();
916 Local<v8::Object> other_instance = other_function->NewInstance();
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.h 222 CALLER_ATTACH static Builder* NewInstance(ReadableFontData* data,
225 CALLER_ATTACH static Builder* NewInstance(WritableFontData* data,
228 CALLER_ATTACH static Builder* NewInstance(const CMapId& cmap_id);
236 // When creating a new CMapFormat0 Builder, use NewInstance instead of
367 static CALLER_ATTACH Builder* NewInstance(WritableFontData* data,
370 static CALLER_ATTACH Builder* NewInstance(ReadableFontData* data,
373 static CALLER_ATTACH Builder* NewInstance(const CMapId& cmap_id);
cmap_table.cc 255 builder.Attach(CMapFormat0::Builder::NewInstance(data, offset, cmap_id));
264 builder.Attach(CMapFormat4::Builder::NewInstance(data, offset, cmap_id));
280 builder.Attach(CMapFormat0::Builder::NewInstance(cmap_id));
289 builder.Attach(CMapFormat4::Builder::NewInstance(cmap_id));
393 CMapTable::CMapFormat0::Builder::NewInstance(WritableFontData* data,
407 CMapTable::CMapFormat0::Builder::NewInstance(ReadableFontData* data,
421 CMapTable::CMapFormat0::Builder::NewInstance(const CMapId& cmap_id) {
425 // Always call NewInstance instead of the constructor for creating a new builder
914 CMapTable::CMapFormat4::Builder::NewInstance(ReadableFontData* data,
928 CMapTable::CMapFormat4::Builder::NewInstance(WritableFontData* data
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ScriptRunner.cpp 168 TRACE_EVENT0("v8", "v8.newInstance");
171 v8::Local<v8::Object> result = objectTemplate->NewInstance();
178 TRACE_EVENT0("v8", "v8.newInstance");
181 v8::Local<v8::Object> result = function->NewInstance(argc, argv);
188 TRACE_EVENT0("v8", "v8.newInstance");
191 v8::Local<v8::Object> result = function->NewInstance(argc, argv);
  /external/chromium_org/v8/test/intl/general/
empty-handle.js 29 // We have to check if ObjectTemplate::NewInstance returned empty handle, which
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8PromiseCustom.cpp 178 v8::Local<v8::Object> environment = objectTemplate->NewInstance();
281 v8::Local<v8::Object> environment = objectTemplate->NewInstance();
441 v8::Local<v8::Object> countdownWrapper = objectTemplate->NewInstance();
471 v8::Local<v8::Object> countdownWrapper = objectTemplate->NewInstance();
492 v8::Local<v8::Object> internal = internalTemplate->NewInstance();
  /external/chromium_org/v8/samples/
process.cc 324 Handle<Object> result = templ->NewInstance();
432 Handle<Object> result = templ->NewInstance();
  /external/v8/samples/
process.cc 304 Handle<Object> result = templ->NewInstance();
409 Handle<Object> result = templ->NewInstance();
  /external/chromium_org/v8/src/extensions/i18n/
break-iterator.cc 209 v8::Local<v8::Object> local_object = break_iterator_template->NewInstance();
  /external/v8/include/
v8.h     [all...]

Completed in 338 milliseconds

1 2