HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 101 - 125 of 386) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/resources/net_internals/
httpthrottlingview.js 7 * @constructor
view.js 9 * @constructor
77 * @constructor
120 * @constructor
  /external/v8/test/mjsunit/bugs/
618.js 28 // Simple class using inline constructor.
43 // Simple class using inline constructor.
58 // Simple class using inline constructor.
73 // Simple class using inline constructor.
  /external/v8/test/mjsunit/
debug-stepin-constructor.js 50 // Test step into constructor with simple constructor.
67 // Test step into constructor with builtin constructor.
mjsunit.js 75 var constructor = value.constructor.name;
132 if (a.constructor === RegExp || b.constructor === RegExp) {
133 return (a.constructor === b.constructor) && (a.toString() === b.toString());
138 if (a.constructor === Array) {
139 if (b.constructor !== Array)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
properties-002.js 88 AddTestCase( re + ".contructor == RegExp.prototype.constructor",
90 re.constructor == RegExp.prototype.constructor );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
proto_10.js 48 function InstanceOf( object, constructor ) {
50 if ( object == constructor.prototype ) {
  /bionic/libc/arch-arm/bionic/
crtbegin_dynamic.S 51 # - address of the constructor list
crtbegin_static.S 51 # - address of the constructor list
  /bionic/libc/arch-sh/bionic/
crtbegin_static.S 51 # - address of the constructor list
  /bionic/libc/bionic/
ssp.c 41 static void __attribute__ ((constructor))
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 211 boolean constructor;
213 constructor = mref.getName().equals("<init>");
214 if (constructor) {
216 out.println(IN3 + "<constructor name=\"" +
228 if (constructor) {
229 out.println(IN3 + "</constructor>");
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p6.cpp 46 constexpr ConstexprCtor(P...); // expected-note {{constructor template instantiation is not constexpr because 1st parameter type 'NonLiteral' is not a literal type}} \
47 expected-note {{constructor template instantiation is not constexpr because 2nd parameter type 'NonLiteral' is not a literal type}}
58 constexpr T1(); // expected-error {{constexpr constructor not allowed in struct with virtual base class}}
64 constexpr T2(); // desired-error {{constexpr constructor not allowed in class with virtual base classes}}
  /external/e2fsprogs/intl/
os2compat.c 48 static __attribute__((constructor)) void
  /external/llvm/test/MC/MachO/
x86_32-symbols.s 27 .constructor
x86_64-symbols.s 27 .constructor
  /external/webkit/Source/JavaScriptCore/runtime/
CommonIdentifiers.h 41 macro(constructor) \
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.5-2.js 41 is invoked as a constructor for that newly created object.
75 array[item++] = new TestCase( SECTION, "typeof MyObject.prototype.constructor", "function", typeof MyObject.prototype.constructor );
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ImportProcessor.java 152 final VCardEntryConstructor constructor = local
155 constructor.addEntryHandler(committer);
156 constructor.addEntryHandler(this);
170 successful = readOneVCard(is, estimatedVCardType, estimatedCharset, constructor,
  /packages/apps/Tag/src/com/android/apps/tag/record/
VCardRecord.java 121 final VCardEntryConstructor constructor = new VCardEntryConstructor(type); local
122 constructor.addEntryHandler(new VCardEntryHandler() {
134 parser.parse(new ByteArrayInputStream(mVCard), constructor);
138 parser.parse(new ByteArrayInputStream(mVCard), constructor);
  /external/android-mock/src/com/google/android/testing/mocking/
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...]
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 364 for (SigConstructor constructor : constructors) {
365 constructor.setDeclaringClass(sigClass);
591 * Converts a dexMethod which must be a constructor to the corresponding
595 * the dex constructor to convert
602 SigConstructor constructor = new SigConstructor(declaringClassName); local
603 constructor.setModifiers(getModifier(dexMethod.getModifiers()));
610 constructor.setDeclaringClass(declaringClass);
613 constructor.setAnnotations(convertAnnotations(dexMethod
619 parser.parseForConstructor(constructor,
623 constructor.setTypeParameters(parser.formalTypeParameters)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 159 MediaPlayerFactory(CreateMediaEnginePlayer constructor, MediaEngineSupportedTypes getSupportedTypes, MediaEngineSupportsType supportsTypeAndCodecs,
161 : constructor(constructor)
171 CreateMediaEnginePlayer constructor; member in struct:WebCore::MediaPlayerFactory
207 static void addMediaEngine(CreateMediaEnginePlayer constructor, MediaEngineSupportedTypes getSupportedTypes, MediaEngineSupportsType supportsType,
210 ASSERT(constructor);
214 installedMediaEngines().append(new MediaPlayerFactory(constructor, getSupportedTypes, supportsType, getSitesInMediaCache, clearMediaCache, clearMediaCacheForSite));
315 m_private.set(engines[0]->constructor(this));
370 m_private.set(engine->constructor(this));
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 25 import java.lang.reflect.Constructor;
37 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
42 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
47 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
52 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
94 // This class has no public constructor.
97 // Used to test synthetic constructor.
107 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.class
127 Constructor<ConstructorTestHelper> ctor1 = null;
143 Constructor<ConstructorTestHelper> varArgCtor = ConstructorTestHelper.clas
154 Constructor<ConstructorTestHelper> constructor = ConstructorTestHelper.class local
327 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
358 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
    [all...]
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.cpp 95 jmethodID constructor = env->GetMethodID(fullScreenClass, "<init>", "(Landroid/content/Context;)V"); local
96 jobject fullScreenSurface = env->NewObject(fullScreenClass, constructor, m_context);

Completed in 2239 milliseconds

1 2 3 45 6 7 8 91011>>