Searched refs:getConstructor (Results 1 - 25 of 77) sorted by relevance

1234

/external/javassist/src/main/javassist/expr/
H A DConstructorCall.java49 * @see #getConstructor()
52 throw new NotFoundException("this is a constructor call. Call getConstructor().");
58 public CtConstructor getConstructor() throws NotFoundException { method in class:ConstructorCall
59 return getCtClass().getConstructor(getSignature());
H A DNewExpr.java112 public CtConstructor getConstructor() throws NotFoundException { method in class:NewExpr
116 return getCtClass().getConstructor(desc);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DConstructorTest.java54 ctor1 = new ConstructorTestHelper().getClass().getConstructor(
60 ctor2 = new ConstructorTestHelper().getClass().getConstructor(parms);
74 Constructor ctor = pclass.getConstructor(new Class[0]);
87 .getConstructor(new Class[0]);
103 .getConstructor(new Class[0]);
140 .getConstructor(new Class[0]);
155 .getConstructor(new Class[0]);
163 ctor = new ConstructorTestHelper().getClass().getConstructor(parms);
175 .getConstructor(new Class[0]);
186 .getConstructor(ne
[all...]
/external/junit/src/org/junit/internal/builders/
H A DAnnotatedBuilder.java31 return runnerClass.getConstructor(Class.class).newInstance(
35 return runnerClass.getConstructor(Class.class,
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DOMWrapper.h101 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, v8::Handle<v8::Value> objectPrototype);
102 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, DOMWindow*);
104 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, WorkerContext*);
H A DV8DOMWrapper.cpp127 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, v8::Handle<v8::Value> objectPrototype) function in class:WebCore::V8DOMWrapper
156 return getConstructor(type, V8DOMWindowShell::getHiddenObjectPrototype(context));
159 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, DOMWindow* window) function in class:WebCore::V8DOMWrapper
173 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, WorkerContext*) function in class:WebCore::V8DOMWrapper
285 function = getConstructor(type, workerContext);
/external/apache-http/src/org/apache/commons/logging/
H A DLogSource.java171 logImplctor = logclass.getConstructor(argtypes);
189 logImplctor = logclass.getConstructor(argtypes);
/external/junit/src/org/junit/internal/runners/
H A DTestClass.java90 public Constructor<?> getConstructor() throws SecurityException, NoSuchMethodException { method in class:TestClass
91 return fClass.getConstructor();
H A DMethodValidator.java61 fTestClass.getConstructor();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs55 public static ConstructorInfo getConstructor( this Type type, Type[] argumentTypes ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionNamespaceSupport.java80 con = cl.getConstructor(m_sig);
/external/javassist/src/test/test/javassist/proxy/
H A DProxySerializationTest.java33 Constructor constructor = proxyClass.getConstructor(new Class[] {String.class});
60 Constructor constructor = proxyClass.getConstructor(new Class[] {String.class});
/external/jsilver/src/org/clearsilver/
H A DFactoryLoader.java109 Constructor<ClearsilverFactory> constructor = clazz.getConstructor();
/external/nist-sip/java/javax/sip/
H A DSipFactory.java53 .getConstructor(new Class[] {Properties.class})
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitBaseTest.java87 Constructor lexConstructor = lexer.getConstructor(lexArgTypes);
181 Constructor lexConstructor = lexer.getConstructor(lexArgTypes);
189 Constructor parConstructor = parser.getConstructor(parArgTypes);
326 Constructor lexConstructor = lexer.getConstructor(lexArgTypes);
334 Constructor parConstructor = parser.getConstructor(parArgTypes);
379 Constructor treeParConstructor = treeParser.getConstructor(treeParArgTypes);
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipStackImpl.java565 .getConstructor(constructorArgs);
594 .getConstructor(constructorArgs);
631 Constructor<?> cons = routerClass.getConstructor(constructorArgs);
763 Constructor<?> c = clazz.getConstructor(new Class[0]);
779 Constructor<?> c = clazz.getConstructor(new Class[0]);
955 Constructor<?> c = clazz.getConstructor(new Class[0]);
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp68 const CXXConstructorDecl *CD = E->getConstructor();
114 getCXXThisRegion(E->getConstructor()->getParent(), SFC);
200 const CXXConstructorDecl *CD = CNE->getConstructor();
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestInterface.h49 static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
H A DJSTestMediaQueryListListener.h47 static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
H A DJSTestSerializedScriptValueInterface.h49 static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
H A DJSTestInterface.cpp163 return JSTestInterface::getConstructor(exec, domObject->globalObject());
166 JSValue JSTestInterface::getConstructor(ExecState* exec, JSGlobalObject* globalObject) function in class:WebCore::JSTestInterface
H A DJSTestMediaQueryListListener.cpp159 return JSTestMediaQueryListListener::getConstructor(exec, domObject->globalObject());
162 JSValue JSTestMediaQueryListListener::getConstructor(ExecState* exec, JSGlobalObject* globalObject) function in class:WebCore::JSTestMediaQueryListListener
H A DJSTestSerializedScriptValueInterface.cpp158 return JSTestSerializedScriptValueInterface::getConstructor(exec, domObject->globalObject());
161 JSValue JSTestSerializedScriptValueInterface::getConstructor(ExecState* exec, JSGlobalObject* globalObject) function in class:WebCore::JSTestSerializedScriptValueInterface
/external/junit/src/junit/framework/
H A DTestSuite.java83 return theClass.getConstructor(String.class);
87 return theClass.getConstructor(new Class[0]);
/external/clang/tools/libclang/
H A DIndexBody.cpp115 IndexCtx.handleReference(E->getConstructor(), E->getLocation(),

Completed in 290 milliseconds

1234