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

  /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 109 ClassLoader loader = NewInstance.getClassLoader ();
181 return loadClass (NewInstance.getClassLoader (), className);
188 return (XMLReader) NewInstance.newInstance (loader, className);
  /external/webkit/WebCore/bindings/v8/
V8Utilities.h 85 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
86 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::ObjectTemplate>);
87 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
90 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function)
95 return function->NewInstance();
98 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::ObjectTemplate> objectTemplate)
103 return objectTemplate->NewInstance();
106 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[])
111 return function->NewInstance(argc, argv);
V8Proxy.cpp 521 v8::Local<v8::Value> V8Proxy::newInstance(v8::Handle<v8::Function> constructor, int argc, v8::Handle<v8::Value> args[])
532 result = constructor->NewInstance(argc, args);
  /external/v8/test/cctest/
test-accessors.cc 141 x_holder = obj->NewInstance();
179 Local<v8::Object> instance = templ->NewInstance();
224 v8::Handle<v8::Object> inst = obj->NewInstance();
260 v8::Handle<v8::Object> inst = obj->NewInstance();
283 v8::Handle<v8::Object> inst = obj->NewInstance();
301 v8::Handle<v8::Object> inst = obj->NewInstance();
316 v8::Handle<v8::Object> inst = obj->NewInstance();
350 env->Global()->Set(v8_str("obj"), obj->NewInstance());
383 env->Global()->Set(v8_str("obj"), obj->NewInstance());
416 env->Global()->Set(v8_str("obj"), obj->NewInstance());
    [all...]
test-api.cc 696 Local<v8::Object> base_instance = base_function->NewInstance();
697 Local<v8::Object> derived_instance = derived_function->NewInstance();
698 Local<v8::Object> derived_instance2 = derived_function->NewInstance();
699 Local<v8::Object> other_instance = other_function->NewInstance();
902 Local<v8::Object> instance1 = templ1->NewInstance();
911 Local<v8::Object> instance2 = templ2->NewInstance();
967 base1->GetFunction()->NewInstance());
975 base2->GetFunction()->NewInstance());
    [all...]
test-debug.cc     [all...]
  /hardware/ril/mock-ril/src/cpp/
experiments.cpp 87 v8::ObjectTemplate::New()->NewInstance();
102 params_obj = params_obj_template->NewInstance();
node_buffer.cpp 168 Local<Object> b = constructor_template->GetFunction()->NewInstance(1, &arg);
357 constructor_template->GetFunction()->NewInstance(3, argv);
protobuf_v8.cpp 134 return Constructor()->NewInstance(1, &properties);
474 new Type(this, descriptor, TypeTemplate->GetFunction()->NewInstance());
  /external/v8/samples/
process.cc 304 Handle<Object> result = templ->NewInstance();
409 Handle<Object> result = templ->NewInstance();
  /external/v8/include/
v8.h     [all...]
  /external/v8/src/
api.cc     [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 134 milliseconds