HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 76 - 100 of 381) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/src/
heap-profiler.h 121 explicit JSObjectsCluster(String* constructor)
122 : constructor_(constructor), instance_(NULL) {}
125 JSObjectsCluster(String* constructor, Object* instance)
126 : constructor_(constructor), instance_(instance) {}
147 String* constructor() const { return constructor_; } function in class:v8::internal::BASE_EMBEDDED
188 // "constructor profile" of JS objects allocated on heap.
  /libcore/junit/src/main/java/junit/framework/
TestSuite.java 8 import java.lang.reflect.Constructor;
21 * TestSuite constructor.
25 * This constructor creates a suite with all the methods
61 addTest(warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()"));
122 Constructor constructor; local
124 constructor= getTestConstructor(theClass);
126 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
130 if (constructor.getParameterTypes().length == 0) {
131 test= constructor.newInstance(new Object[0])
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
cxxabi.h 69 size_t __padding_size, __cxa_cdtor_type constructor,
74 size_t __padding_size, __cxa_cdtor_type constructor,
80 size_t __padding_size, __cxa_cdtor_type constructor,
87 size_t __element_size, __cxa_cdtor_type constructor,
93 __cxa_cdtor_return_type (*constructor) (void*, void*),
516 // class is not constructable with a normal constructor. It is
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
cxxabi.h 69 size_t __padding_size, __cxa_cdtor_type constructor,
74 size_t __padding_size, __cxa_cdtor_type constructor,
80 size_t __padding_size, __cxa_cdtor_type constructor,
87 size_t __element_size, __cxa_cdtor_type constructor,
93 __cxa_cdtor_return_type (*constructor) (void*, void*),
516 // class is not constructable with a normal constructor. It is
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cxxabi.h 69 size_t __padding_size, __cxa_cdtor_type constructor,
74 size_t __padding_size, __cxa_cdtor_type constructor,
80 size_t __padding_size, __cxa_cdtor_type constructor,
87 size_t __element_size, __cxa_cdtor_type constructor,
93 __cxa_cdtor_return_type (*constructor) (void*, void*),
516 // class is not constructable with a normal constructor. It is
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
cxxabi.h 69 size_t __padding_size, __cxa_cdtor_type constructor,
74 size_t __padding_size, __cxa_cdtor_type constructor,
80 size_t __padding_size, __cxa_cdtor_type constructor,
87 size_t __element_size, __cxa_cdtor_type constructor,
93 __cxa_cdtor_return_type (*constructor) (void*, void*),
516 // class is not constructable with a normal constructor. It is
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
cxxabi.h 69 size_t __padding_size, __cxa_cdtor_type constructor,
74 size_t __padding_size, __cxa_cdtor_type constructor,
80 size_t __padding_size, __cxa_cdtor_type constructor,
87 size_t __element_size, __cxa_cdtor_type constructor,
93 __cxa_cdtor_return_type (*constructor) (void*, void*),
516 // class is not constructable with a normal constructor. It is
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputHLSL.cpp 108 for (Constructors::iterator constructor = mConstructors.begin(); constructor != mConstructors.end(); constructor++)
110 out << *constructor; local
1931 TString constructor; local
    [all...]
  /external/v8/test/mjsunit/
array-functions-prototype.js 36 function constructor() {}; class
37 constructor.prototype = proto;
59 var nonArray = new constructor();
90 var nonArray = new constructor();
121 var nonArray = new constructor();
151 var nonArray = new constructor();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.1.1-2.js 24 ECMA Section: 15.3.1.1 The Function Constructor Called as a Function
32 1. Create and return a new Function object exactly if the function constructor
42 var TITLE = "The Function Constructor Called as a Function";
69 array[item++] = new TestCase( SECTION, "myfunc1.prototype.constructor", myfunc1, myfunc1.prototype.constructor );
83 array[item++] = new TestCase( SECTION, "myfunc2.prototype.constructor", myfunc2, myfunc2.prototype.constructor );
97 array[item++] = new TestCase( SECTION, "myfunc3.prototype.constructor", myfunc3, myfunc3.prototype.constructor );
15.3.2.1-2.js 24 ECMA Section: 15.3.2.1 The Function Constructor
35 var TITLE = "The Function Constructor";
62 array[item++] = new TestCase( SECTION, "myfunc1.prototype.constructor", myfunc1, myfunc1.prototype.constructor );
76 array[item++] = new TestCase( SECTION, "myfunc2.prototype.constructor", myfunc2, myfunc2.prototype.constructor );
90 array[item++] = new TestCase( SECTION, "myfunc3.prototype.constructor", myfunc3, myfunc3.prototype.constructor );
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 23 import java.lang.reflect.Constructor;
94 public static Constructor<?> getConstructor(Class<?> targetClass, Class<?> ... types) {
106 public static Object newInstance(Constructor<?> constructor, Object ... args) {
107 if (constructor == null) return null;
109 return constructor.newInstance(args);
  /external/v8/test/mjsunit/bugs/
bug-618.js 36 // If a setter is added to the prototype chain of a simple constructor setting
37 // one of the properties assigned in the constructor then this setter is
38 // ignored when constructing new objects from the constructor.
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.
  /frameworks/base/core/java/android/preference/
GenericInflater.java 20 import java.lang.reflect.Constructor;
369 Constructor constructor = (Constructor) sConstructorMap.get(name); local
372 if (null == constructor) {
377 constructor = clazz.getConstructor(mConstructorSignature);
378 sConstructorMap.put(name, constructor);
383 return (T) constructor.newInstance(args);
400 + constructor.getClass().getName());
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 359 IConstructor constructor = sigClass.getConstructors().iterator().next(); local
360 assertTrue(constructor.getModifiers().contains(Modifier.PUBLIC));
370 IConstructor constructor = sigClass.getConstructors().iterator().next(); local
371 assertTrue(constructor.getModifiers().contains(Modifier.PUBLIC));
381 IConstructor constructor = sigClass.getConstructors().iterator().next(); local
382 assertTrue(constructor.getModifiers().contains(Modifier.PROTECTED));
410 IConstructor constructor = sigClass.getConstructors().iterator().next(); local
411 assertTrue(constructor.getModifiers().contains(Modifier.PUBLIC));
412 assertEquals(1, constructor.getExceptions().size());
413 IClassReference exception = (IClassReference) constructor.getExceptions().iterator().next()
424 IConstructor constructor = sigClass.getConstructors().iterator().next(); local
438 IConstructor constructor = sigClass.getConstructors().iterator().next(); local
    [all...]
  /development/samples/BrowserPlugin/jni/video/
VideoPlugin.cpp 86 jmethodID constructor = env->GetMethodID(videoClass, "<init>", "(Landroid/content/Context;)V"); local
87 jobject videoSurface = env->NewObject(videoClass, constructor, m_context);
  /external/bluetooth/glib/gio/fam/
gfamdirectorymonitor.c 74 obj = parent_class->constructor (type,
112 gobject_class->constructor = g_fam_directory_monitor_constructor;
gfamfilemonitor.c 73 obj = parent_class->constructor (type,
112 gobject_class->constructor = g_fam_file_monitor_constructor;
  /external/bluetooth/glib/gio/fen/
gfendirectorymonitor.c 84 obj = parent_class->constructor (type,
122 gobject_class->constructor = g_fen_directory_monitor_constructor;
gfenfilemonitor.c 83 obj = parent_class->constructor (type,
122 gobject_class->constructor = g_fen_file_monitor_constructor;
  /external/bluetooth/glib/gio/inotify/
ginotifydirectorymonitor.c 82 obj = parent_class->constructor (type,
120 gobject_class->constructor = g_inotify_directory_monitor_constructor;
ginotifyfilemonitor.c 96 obj = parent_class->constructor (type,
139 gobject_class->constructor = g_inotify_file_monitor_constructor;
  /external/chromium/chrome/browser/resources/net_internals/
httpcacheview.js 7 * @constructor
httpthrottlingview.js 7 * @constructor

Completed in 742 milliseconds

1 2 34 5 6 7 8 91011>>