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

1 2 3

  /art/test/435-new-instance/src/
Main.java 24 $opt$NewInstance("newInstanceInterface", InstantiationError.class.getCanonicalName());
26 $opt$NewInstance("newInstanceClass", InstantiationError.class.getCanonicalName());
28 $opt$NewInstance("newInstancePrivateClass", IllegalAccessError.class.getCanonicalName());
30 $opt$NewInstance("newInstanceUnknownClass", NoClassDefFoundError.class.getCanonicalName());
33 private static void $opt$NewInstance(String method, String errorName) throws Throwable {
35 Class<?> c = Class.forName("NewInstance");
37 m.invoke(c.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 ();
185 return loadClass (NewInstance.getClassLoader (), className);
192 return (XMLReader) NewInstance.newInstance (loader, className);
  /art/tools/titrace/
instruction_decoder.h 37 static InstructionDecoder* NewInstance(InstructionFileFormat file_format);
titrace.cc 118 stats.instruction_decoder_.reset(InstructionDecoder::NewInstance(format));
instruction_decoder.cc 508 InstructionDecoder* InstructionDecoder::NewInstance(InstructionFileFormat file_format) {
  /external/libmojo/mojo/edk/js/
threading.cc 41 return templ->NewInstance();
support.cc 72 return templ->NewInstance();
core.cc 377 return templ->NewInstance();
  /art/test/674-hiddenapi/
hiddenapi.cc 64 static jobject NewInstance(JNIEnv* env, jclass klass) {
97 jobject obj = NewInstance(env, klass);
127 jobject obj = NewInstance(env, klass);
171 jobject obj = NewInstance(env, klass);
202 jobject obj = NewInstance(env, klass);
  /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...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/
LcdGraphicsOutputDxe.c 84 OUT LCD_INSTANCE** NewInstance
98 *NewInstance = Instance;
  /device/linaro/bootloader/edk2/Omap35xxPkg/LcdGraphicsOutputDxe/
LcdGraphicsOutputDxe.c 88 OUT LCD_INSTANCE** NewInstance
101 *NewInstance = Instance;
  /art/compiler/optimizing/
scheduler_arm.h 88 M(NewInstance , unused) \
scheduler_arm64.h 80 M(NewInstance , unused) \
  /external/v8/samples/
process.cc 341 templ->NewInstance(GetIsolate()->GetCurrentContext()).ToLocalChecked();
455 templ->NewInstance(GetIsolate()->GetCurrentContext()).ToLocalChecked();
  /external/pdfium/fxjs/
cfxjse_class.cpp 121 hCallBackInfoTemplate->NewInstance();
cjs_v8.cpp 237 v8::Local<v8::Object> object = klass->InstanceTemplate()->NewInstance();
fxjs_v8.cpp 490 if (!objTempl->NewInstance(context).ToLocal(&obj))
505 if (!pObjDef->GetInstanceTemplate()->NewInstance(context).ToLocal(&obj))
cfxjse_value.cpp 89 v8::Local<v8::Object> hObject = hClass->InstanceTemplate()->NewInstance();
  /external/v8/src/runtime/
runtime-test.cc 362 if (!desc->NewInstance(v8_isolate->GetCurrentContext()).ToLocal(&obj)) {
392 ->NewInstance(v8_isolate->GetCurrentContext())
  /external/v8/include/
v8.h     [all...]
  /external/oj-libjdwp/make/data/jdwp/
jdwp.spec     [all...]

Completed in 1601 milliseconds

1 2 3