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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
TestInterfaceConstructor3.idl 31 // Test for length > 0, non-overloaded constructor.
33 Constructor(DOMString stringArg),
TestInterfaceConstructor2.idl 31 // Test for length > 0, overloaded constructor.
41 Constructor(DOMString stringArg),
42 Constructor(Dictionary dictionaryArg),
43 Constructor(sequence<sequence<DOMString>> stringSequenceSequenceArg),
44 Constructor(
TestInterfaceConstructor.idl 33 Constructor,
34 Constructor(
43 Constructor(DOMString arg, optional DOMString optArg),
44 Constructor(DOMString arg, DOMString arg2, DOMString arg3),
48 RaisesException=Constructor,
TestInterfaceWillBeGarbageCollected.idl 32 Constructor(DOMString str),
  /external/chromium_org/ui/ozone/
platform_constructor_list.h 15 typedef T* (*Constructor)();
16 static const Constructor kConstructors[kPlatformCount];
platform_object_internal.h 17 typedef typename PlatformConstructorList<T>::Constructor Constructor;
22 // Look up the constructor in the constructor list.
23 Constructor constructor = PlatformConstructorList<T>::kConstructors[platform]; local
25 // Call the constructor.
26 return make_scoped_ptr(constructor());
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Animation.idl 35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
38 RaisesException=Constructor,
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription.idl 33 Constructor(optional Dictionary descriptionInitDict),
34 RaisesException=Constructor
RTCIceCandidate.idl 33 Constructor(Dictionary dictionary),
34 RaisesException=Constructor
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OfflineAudioContext.idl 27 Constructor(unsigned long numberOfChannels, unsigned long numberOfFrames, float sampleRate),
29 RaisesException=Constructor,
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageData.idl 32 Constructor(unsigned long width, unsigned long height),
33 Constructor(Uint8ClampedArray data, unsigned long width, [Default=Undefined] optional unsigned long height),
35 RaisesException=Constructor,
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
Path2D.idl 32 Constructor,
33 Constructor(Path2D path),
34 Constructor(DOMString text),
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastConstructor.java 18 import java.lang.reflect.Constructor;
23 FastConstructor(FastClass fc, Constructor constructor) {
24 super(fc, constructor, fc.getIndex(constructor.getParameterTypes()));
28 return ((Constructor)member).getParameterTypes();
32 return ((Constructor)member).getExceptionTypes();
43 public Constructor getJavaConstructor() {
44 return (Constructor)member;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Comment.idl 21 Constructor(optional DOMString data = ""),
URL.idl 30 Constructor(ScalarValueString url),
31 Constructor(ScalarValueString url, ScalarValueString base),
32 Constructor(ScalarValueString url, URL base),
35 RaisesException=Constructor,
DocumentFragment.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/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorker.idl 36 Constructor(DOMString scriptURL, optional DOMString name = null),
38 RaisesException=Constructor,
Worker.idl 32 Constructor(DOMString scriptUrl),
34 RaisesException=Constructor,
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.idl 34 Constructor(optional DOMString utfLabel = "utf-8"),
35 RaisesException=Constructor,
  /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() {
  /external/chromium_org/third_party/WebKit/Source/core/xml/
DOMParser.idl 22 Constructor
XMLSerializer.idl 23 Constructor
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammar.idl 29 Constructor
  /prebuilts/misc/common/swig/include/2.0.11/python/
pycomplex.swg 4 the complex Constructor method, and the Real and Imag complex
23 %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
31 if (val) *val = Constructor(PyComplex_RealAsDouble(o), PyComplex_ImagAsDouble(o));
37 if (val) *val = Constructor(d, 0.0);
48 %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
58 if (val) *val = Constructor(%numeric_cast(re, float),
68 if (val) *val = Constructor(re, 0.0);
79 #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
80 %swig_cplxflt_conv(Type, Constructor, Real, Imag)
83 #define %swig_cplxdbl_convn(Type, Constructor, Real, Imag)
    [all...]

Completed in 1407 milliseconds

1 2 3 4 5 6 7 8 91011>>