HomeSort by relevance Sort by last modified time
    Searched refs:Constructor (Results 226 - 250 of 349) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.idl 34 Constructor(Dictionary rtcIceServers, optional Dictionary mediaConstraints),
  /external/chromium_org/v8/test/webkit/
preventExtensions.js 108 function Constructor() {}
109 Constructor.prototype.foo = 1;
110 Object.freeze(Constructor.prototype);
111 var obj = new Constructor();
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 24 import java.lang.reflect.Constructor;
118 Constructor<AbstractBox> constructorObject;
165 String constructor; local
170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
171 if (constructor == null) {
172 constructor = mapping.getProperty("uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
174 if (constructor == null) {
175 constructor = mapping.getProperty("uuid");
178 constructor = mapping.getProperty((parent) + "-" + (type));
179 if (constructor == null)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslatorTest.java 21 import java.lang.reflect.Constructor;
73 Constructor<ClassWithNoDefaultConstructor> ctor = ClassWithNoDefaultConstructor.class.getDeclaredConstructor();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ClassLoaderReflectionTest.java 19 import java.lang.reflect.Constructor;
108 Constructor<?> constructor = fClass.getDeclaredConstructors()[0]; local
109 Type[] parameters = constructor.getGenericParameterTypes();
ReflectionTest.java 20 import java.lang.reflect.Constructor;
103 Constructor constructorOne = C.class.getDeclaredConstructor(A.class);
108 Constructor constructorTwo = C.class.getDeclaredConstructor(Map.class, Object.class);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
InvocationTargetExceptionTest.java 24 import java.lang.reflect.Constructor;
118 Constructor<InvocationTargetException> ctor = InvocationTargetException.class
120 assertNotNull("Parameterless constructor does not exist.", ctor);
121 assertTrue("Constructor is not protected", Modifier.isProtected(ctor
123 //create an instance of a subtype using this constructor
187 fail("Exception during constructor test : " + e.getMessage());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DexWrapper.java 28 import java.lang.reflect.Constructor;
51 private Constructor<?> mArgConstructor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 53 import java.lang.reflect.Constructor;
196 Constructor<? extends LintFix> constructor = clazz.getDeclaredConstructor( local
198 constructor.setAccessible(true);
199 LintFix fix = constructor.newInstance(id, marker);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationTest.java 29 import java.lang.reflect.Constructor;
38 // a constructor marked with @NonNull, so the test won't compile.
39 Constructor<Configuration> constructor = local
41 constructor.setAccessible(true);
43 return constructor.newInstance(chooser);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java 27 import java.lang.reflect.Constructor;
131 /** Calls the private constructor of the parser */
134 Constructor<AndroidTargetParser> constructor = local
136 constructor.setAccessible(true);
137 return constructor.newInstance(osJarPath);
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidMock.java 24 import java.lang.reflect.Constructor;
90 * The parameter {@literal args} allows the caller to choose which constructor on the Class
91 * specified by {@literal toMock} to be called when constructing the Mock object. If a constructor
94 * where {@literal MyObject} defines a constructor such as
99 * @param args the arguments to pass to the constructor.
112 * The parameter {@literal args} allows the caller to choose which constructor on the Class
113 * specified by {@literal toMock} to be called when constructing the Mock object. If a constructor
117 * where {@literal MyObject} defines a constructor such as
124 * @param args the arguments to pass to the constructor.
143 * The parameter {@literal args} allows the caller to choose which constructor on the Clas
2647 Constructor<T> constructor = getConstructorFor(subclass, args); local
    [all...]
AndroidMockGenerator.java 29 import java.lang.reflect.Constructor;
134 Constructor<?>[] constructors = clazz.getDeclaredConstructors();
135 for (Constructor<?> constructor : constructors) {
136 if (Modifier.isPublic(constructor.getModifiers()) ||
137 Modifier.isProtected(constructor.getModifiers())) {
264 for (CtConstructor constructor : constructors) {
265 int modifiers = constructor.getModifiers();
269 ctConstructor = CtNewConstructor.make(constructor.getParameterTypes(),
270 constructor.getExceptionTypes(), clazz)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 45 import java.lang.reflect.Constructor;
242 Constructor lexConstructor = lexer.getConstructor(lexArgTypes);
319 Constructor lexConstructor = lexer.getConstructor(lexArgTypes);
327 Constructor parConstructor = parser.getConstructor(parArgTypes);
460 Constructor lexConstructor = lexer.getConstructor(lexArgTypes);
468 Constructor parConstructor = parser.getConstructor(parArgTypes);
513 Constructor treeParConstructor = treeParser.getConstructor(treeParArgTypes);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
Platform.java 23 import java.lang.reflect.Constructor;
55 private Constructor<DeflaterOutputStream> deflaterConstructor;
121 Constructor<DeflaterOutputStream> constructor = deflaterConstructor; local
122 if (constructor == null) {
123 constructor = deflaterConstructor = DeflaterOutputStream.class.getConstructor(
126 return constructor.newInstance(out, deflater, syncFlush);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 41 import java.lang.reflect.Constructor;
137 * constructor signature.
259 // to use the hidden constructor that takes the outer class as first parameter.
261 Constructor<?> innerCons = innerClazz2.getConstructor(
445 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...]
  /external/javasqlite/src/main/java/SQLite/
JDBCDriver.java 14 private static java.lang.reflect.Constructor makeConn = null;
  /external/smack/src/org/jivesoftware/smack/
Connection.java.orig 25 import java.lang.reflect.Constructor;
802 Constructor<?> constructor = debuggerClass
804 debugger = (SmackDebugger) constructor.newInstance(this, writer, reader);
    [all...]
Connection.java 25 import java.lang.reflect.Constructor;
802 Constructor<?> constructor = debuggerClass local
804 debugger = (SmackDebugger) constructor.newInstance(this, writer, reader);
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 34 import java.lang.reflect.Constructor;
84 private static final HashMap<String, Constructor<? extends View>> sConstructorMap =
85 new HashMap<String, Constructor<? extends View>>();
551 Constructor<? extends View> constructor = sConstructorMap.get(name); local
557 if (constructor == null) {
568 constructor = clazz.getConstructor(mConstructorSignature);
569 sConstructorMap.put(name, constructor);
571 // If we have a filter, apply it to cached constructor
594 final View view = constructor.newInstance(args)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
ReflectionBenchmark.java 55 Constructor constructor = klass.getConstructor(); local
57 constructor.newInstance();
164 // A non-empty constructor so we don't get optimized away.
  /art/test/031-class-attributes/src/
ClassAttrs.java 5 import java.lang.reflect.Constructor;
117 Constructor cons;
120 System.out.println("constructor signature: "
  /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);

Completed in 2366 milliseconds

1 2 3 4 5 6 7 8 91011>>