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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestNode.idl 22 Constructor,
TestOverloadedConstructors.idl 29 Constructor(ArrayBuffer arrayBuffer),
30 Constructor(ArrayBufferView arrayBufferView),
31 Constructor(Blob blob),
32 Constructor(DOMString string)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Comment.idl 21 Constructor([Default=NullString] optional DOMString data),
MessageChannel.idl 29 Constructor,
DocumentFragment.idl 21 Constructor,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLSerializer.idl 22 Constructor
DOMParser.idl 21 Constructor
  /external/mockito/src/org/mockito/internal/util/reflection/
Constructors.java 3 import java.lang.reflect.Constructor;
8 * Returns the no arg constructor of the type if any.
10 * @param classToMock The type to look for a no-arg constructor
11 * @return The no-arg constructor or null if none is declared.
13 public static Constructor<?> noArgConstructorOf(Class<?> classToMock) {
  /external/objenesis/main/src/org/objenesis/instantiator/sun/
SunReflectionFactoryInstantiator.java 18 import java.lang.reflect.Constructor;
24 * Instantiates an object, WITHOUT calling it's constructor, using internal
27 * caused by the constructor - however it is not available on every platform.
34 private final Constructor mungedConstructor;
37 Constructor javaLangObjectConstructor = getJavaLangObjectConstructor();
52 private static Constructor getJavaLangObjectConstructor() {
SunReflectionFactoryHelper.java 18 import java.lang.reflect.Constructor;
34 public static Constructor newConstructorForSerialization(Class type, Constructor constructor) {
42 return (Constructor) newConstructorForSerializationMethod.invoke(
43 reflectionFactory, new Object[] {type, constructor});
88 "newConstructorForSerialization", new Class[] {Class.class, Constructor.class});
SunReflectionFactorySerializationInstantiator.java 19 import java.lang.reflect.Constructor;
29 * constructor. This is the best way to instantiate an object without any side effects caused by the
30 * constructor - however it is not available on every platform.
37 private final Constructor mungedConstructor;
42 Constructor nonSerializableAncestorConstructor;
48 throw new ObjenesisException(new NotSerializableException(type+" has no suitable superclass constructor"));
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription.idl 32 Constructor(Dictionary dictionary),
RTCIceCandidate.idl 32 Constructor(Dictionary dictionary),
MediaStream.idl 27 Constructor,
28 Constructor(MediaStream stream),
29 Constructor(MediaStreamTrack[] tracks),
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammar.idl 28 Constructor
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OfflineAudioContext.idl 28 Constructor(unsigned long numberOfChannels, unsigned long numberOfFrames, float sampleRate),
  /external/chromium_org/third_party/WebKit/Source/core/html/
URL.idl 29 Constructor,
  /external/objenesis/main/src/org/objenesis/instantiator/basic/
ConstructorInstantiator.java 18 import java.lang.reflect.Constructor;
24 * Instantiates a class by grabbing the no args constructor and calling Constructor.newInstance().
32 protected Constructor constructor; field in class:ConstructorInstantiator
36 constructor = type.getDeclaredConstructor((Class[]) null);
45 return constructor.newInstance((Object[]) null);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MalformedParameterizedTypeExceptionTests.java 3 import java.lang.reflect.Constructor;
13 Constructor<MalformedParameterizedTypeException> ctor = MalformedParameterizedTypeException.class
15 assertNotNull("Parameterless constructor does not exist.", ctor);
16 assertTrue("Constructor is not protected", Modifier.isPublic(ctor
  /external/objenesis/main/src/org/objenesis/instantiator/jrockit/
JRockit131Instantiator.java 15 import java.lang.reflect.Constructor;
31 private Constructor mungedConstructor;
41 "newConstructorForSerialization", new Class[] {Constructor.class, Class.class});
61 Constructor javaLangObjectConstructor;
67 throw new Error("Cannot find constructor for java.lang.Object!");
71 mungedConstructor = (Constructor) newConstructorForSerializationMethod.invoke(null,
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 19 import java.lang.reflect.Constructor;
24 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(new Class[0]); local
25 Class[] exceptions = constructor.getExceptionTypes();
30 exceptions = constructor.getExceptionTypes();
37 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); local
38 Class[] parameters = constructor.getParameterTypes();
43 parameters = constructor.getParameterTypes();
49 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor((Class[]) null) local
70 Constructor<?> constructor = ConstructorTestHelper.class.getDeclaredConstructor( local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorker.idl 34 Constructor(DOMString scriptURL, [Default=NullString] optional DOMString name),
Worker.idl 29 Constructor(DOMString scriptUrl),
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.idl 34 Constructor([Default=NullString] optional DOMString utfLabel),
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.idl 29 Constructor(DOMString keySystem),

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 91011>>