HomeSort by relevance Sort by last modified time
    Searched refs:Constructor (Results 126 - 150 of 163) sorted by null

1 2 3 4 56 7

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java 26 import java.lang.reflect.Constructor;
129 /** Calls the private constructor of the parser */
132 Constructor<AndroidTargetParser> constructor = local
134 constructor.setAccessible(true);
135 return constructor.newInstance(osJarPath);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
UpdaterWindowImpl.java 40 import java.lang.reflect.Constructor;
167 * Pages must derive from {@link Composite} and implement a constructor that takes
324 * using the constructor that takes a single {@link Composite} argument and then adds it
337 // We want the constructor that takes a single Composite as parameter
338 Constructor<? extends Composite> cons;
345 // There is no such constructor.
347 "Failed to add extra page %1$s. Constructor args must be (Composite parent).", //$NON-NLS-1$
  /external/v8/test/mjsunit/
json.js 28 function GenericToJSONChecks(Constructor, value, alternative) {
29 var n1 = new Constructor(value);
32 var n2 = new Constructor(value);
35 var n3 = new Constructor(value);
38 var n4 = new Constructor(value);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 41 import java.lang.reflect.Constructor;
137 * constructor signature.
239 // to use the hidden constructor that takes the outer class as first parameter.
241 Constructor<?> innerCons = innerClazz2.getConstructor(
391 Constructor<?> cons = tcvClass.getConstructor(new Class<?>[] { pw.getClass() });
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 20 import java.lang.reflect.Constructor;
88 * Public no-arguments constructor required by the lookup mechanism.
215 * The one-argument constructor of the
221 protected Constructor logConstructor = null;
225 * The signature of the Constructor to be used.
519 * <p>Return the <code>Constructor</code> that can be called to instantiate
524 * the same <code>Constructor</code> instance will ultimately be derived
527 * @exception LogConfigurationException if a suitable constructor
533 protected Constructor getLogConstructor()
536 // Return the previously identified Constructor (if any
969 Constructor constructor = null; local
    [all...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/
JDBCDriver.java 14 private static java.lang.reflect.Constructor makeConn = null;
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCESecretKeyFactory.java 3 import java.lang.reflect.Constructor;
72 Constructor c = keySpec.getConstructor(parameters);
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderList.java 36 import java.lang.reflect.Constructor;
69 * Constructor
452 Constructor<?> cons = clazz.getConstructor((Class[])null);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ParserFactory.java 294 Constructor cons = (Constructor) parserConstructorCache.get(parserClass);
  /external/webkit/WebCore/bindings/scripts/
CodeGeneratorJS.pm 66 # Default constructor
548 # Constructor
669 # Constructor object getter
    [all...]
  /external/webkit/WebKit/android/jni/
JavaBridge.cpp 97 static void Constructor(JNIEnv* env, jobject obj);
313 void JavaBridge::Constructor(JNIEnv* env, jobject obj)
448 (void*) JavaBridge::Constructor },
  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 127 Handle<Function> Constructor() const {
134 return Constructor()->NewInstance(1, &properties);
167 Handle<Function> constructor = Handle<Function>::Cast( local
169 constructor->SetHiddenValue(String::New("type"), self);
180 constructor->Set(String::New("parse"), bind->Call(ParseTemplate->GetFunction(), 1, &arg));
181 constructor->Set(String::New("serialize"), bind->Call(SerializeTemplate->GetFunction(), 1, &arg));
182 self->SetInternalField(2, constructor);
497 schema->GetType(descriptor)->Constructor() :
534 // constructor
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 24 import java.lang.reflect.Constructor;
860 Constructor constr = TestClass.class.getConstructor(new Class[0]);
866 fail("Found private constructor");
868 // Correct - constructor with obj is private
882 Constructor[] c = TestClass.class.getConstructors();
908 Constructor<?> constr = declClasses[i].getDeclaredConstructors()[0];
936 Constructor<TestClass> c = TestClass.class.getDeclaredConstructor(new Class[0]);
937 assertNull("Incorrect constructor returned", c.newInstance().cValue());
958 Constructor[] c = TestClass.class.getDeclaredConstructors();
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestCase.java 14 import java.lang.reflect.Constructor;
33 * This constructor is for DOMTestCase's that make specific demands for
35 * tests constructor to set the factory.
42 * This constructor is for DOMTestCase's that do not add any requirements
69 Constructor runnerFactory =
JUnitTestCaseAdapter.java 16 import java.lang.reflect.Constructor;
85 Constructor<?> constructor = clazz.getConstructor(new Class<?>[] { local
89 test = (DOMTestCase)constructor.newInstance(new Object[] {
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
PolicyUtils.java 27 import java.lang.reflect.Constructor;
66 * Constructor with target URL parameter.
104 * Constructor with a property key parameter.
136 * Constructor with a property key parameter.
169 * Constructor taking property key and acceptable provider
227 * Constructor with user-friendly message parameter.
234 * Constructor with user-friendly message and causing error.
552 // Empty set of arguments to default constructor of a Permission.
555 // One-arg set of arguments to default constructor of a Permission.
558 // Two-args set of arguments to default constructor of a Permission
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java 19 import java.lang.reflect.Constructor;
136 * Adds a constructor.
138 * @param tc the constructor to be added.
410 * Represents a constructor.
629 * Checks whether the constructor parsed from API xml file and
636 Constructor<?> c = findMatchingConstructor(con);
655 SignatureTestLog.e("Got exception when checking constructor compliance", e);
664 * Searches available constructor.
666 * @param jdiffDes constructor description to find.
667 * @return reflected constructor, or null if not found
    [all...]
  /external/skia/src/xml/
SkJSDisplayable.cpp 104 static JSBool _class##Constructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { \
113 _class##Constructor, 0, \
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 28 import java.lang.reflect.Constructor;
380 final Constructor constructor = CLASS_OPERATION.getDeclaredConstructor(CLASS_BUILDER); local
381 constructor.setAccessible(true);
382 return (ContentProviderOperation) constructor.newInstance(builder);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactoryTest.java 9 import java.lang.reflect.Constructor;
498 Constructor<T> constructor = null; local
501 constructor = keySpec.getConstructor(TestPrivateKey.class);
509 constructor = keySpec.getConstructor(TestPublicKey.class);
517 if (constructor == null) {
522 return constructor.newInstance(key);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 48 import java.lang.reflect.Constructor;
87 * {@link IAndroidTarget} given to the constructor.
676 Constructor<?> constructor = clazz.getConstructor(); local
677 if (constructor != null) {
678 Object bridge = constructor.newInstance();
  /dalvik/tests/046-reflect/src/
Main.java 282 Constructor<Target> cons;
358 System.out.println("SuperTarget constructor ()V");
374 System.out.println("Target constructor ()V");
378 System.out.println("Target constructor (IF)V : ii="
  /external/junit/src/junit/swingui/
TestRunner.java 24 import java.lang.reflect.Constructor;
520 Constructor clazzConstructor= clazz.getConstructor(clazzParam);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtils.java 30 import java.lang.reflect.Constructor;
248 // have a constructor compatible with TextAttributeDescriptor.
252 Constructor<? extends TextAttributeDescriptor> cons;
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 52 import java.lang.reflect.Constructor;
468 Constructor wmxStTrkrConst = wimaxStateTrackerClass.getConstructor
472 Constructor wmxSrvConst = wimaxServiceClass.getDeclaredConstructor
    [all...]

Completed in 2339 milliseconds

1 2 3 4 56 7