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

1 2 3 45 6 7 8 91011

  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 29 import java.lang.reflect.Constructor;
38 value = Constructor.class,
52 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
57 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
62 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
67 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
109 // This class has no public constructor.
112 // Used to test synthetic constructor.
122 * @tests java.lang.reflect.Constructor#getDeclaredAnnotations()
131 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.clas
205 Constructor<ConstructorTestHelper> constructor = ConstructorTestHelper.class local
450 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
490 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
    [all...]
  /external/bluetooth/glib/gio/
glocalfilemonitor.c 78 obj = parent_class->constructor (type,
119 gobject_class->constructor = g_local_file_monitor_constructor;
  /external/webkit/WebCore/bindings/v8/
ScriptFunctionCall.cpp 168 v8::Local<v8::Function> constructor(v8::Function::Cast(*value));
173 v8::Local<v8::Object> result = SafeAllocation::newInstance(constructor, m_arguments.size(), args.get());
  /bionic/libc/arch-sh/bionic/
crtbegin_dynamic.S 51 # - address of the constructor list
71 # the .ctors section contains a list of pointers to "constructor"
  /external/v8/test/mjsunit/
debug-constructed-by.js 32 // Simple constructor.
35 // Create mirror for the constructor.
debug-evaluate-bool-constructor.js 70 // Add set constructor field to a non-function value.
71 var a = {constructor:true};
  /external/v8/test/mjsunit/regress/
regress-386.js 31 // a constant function, in the first call to the constructor, leaves
34 // Adding i in the second call to the constructor creates a real property,
  /external/webkit/JavaScriptCore/API/
JSCallbackObject.h 87 static JSObject* construct(ExecState*, JSObject* constructor, const ArgList&);
  /external/webkit/JavaScriptCore/runtime/
CommonIdentifiers.h 41 macro(constructor) \
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
VCardVerifier.java 240 final VCardEntryConstructor constructor = new VCardEntryConstructor(mVCardType); local
241 constructor.addEntryHandler(mContentValuesVerifier);
244 mPropertyNodesVerifier, constructor));
246 interpreter = constructor;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
global.h 82 void __SND_DLSYM_VERSION(snd_dlsym_constructor_, name, version) (void) __attribute__ ((constructor)); \
  /external/v8/src/
log.h 238 static void HeapSampleJSConstructorEvent(const char* constructor,
240 static void HeapSampleJSRetainersEvent(const char* constructor,
242 static void HeapSampleJSProducerEvent(const char* constructor,
heap-profiler.cc 71 String* constructor = JSObject::cast(js_obj)->constructor_name(); local
73 if (fine_grain && (constructor == Heap::Object_symbol() ||
74 constructor == Heap::Array_symbol())) {
75 return JSObjectsCluster(constructor, obj);
77 return JSObjectsCluster(constructor);
607 String* constructor = JSObject::cast(obj)->constructor_name();
609 constructor->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL));
messages.js 45 // If this object gets passed to an error constructor the error will
92 var constructor = obj.constructor;
93 if (!constructor) return ToString(obj);
94 var constructorName = constructor.name;
103 function MakeGenericError(constructor, type, args) {
107 var e = new constructor(kAddMessageAccessorsMarker);
115 * Setup the Script function and constructor.
118 %SetProperty(Script.prototype, 'constructor', Script, DONT_ENUM);
155 not_constructor: "%0 is not a constructor",
    [all...]
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 27 import java.lang.reflect.Constructor;
225 // from Constructor<T>[] to Constructor<?>[]
226 Constructor<? extends TestCase>[] constructors
227 = (Constructor<? extends TestCase>[]) aClass.getConstructors();
228 for (Constructor<? extends TestCase> constructor : constructors) {
229 if (Modifier.isPublic(constructor.getModifiers())) {
230 java.lang.Class[] parameterTypes = constructor.getParameterTypes();
  /libcore/luni/src/main/native/
java_net_NetworkInterface.cpp 68 jmethodID constructor = env->GetMethodID(JniConstants::interfaceAddressClass, "<init>", local
70 if (constructor == NULL) {
87 return env->NewObject(JniConstants::interfaceAddressClass, constructor,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java 26 import java.lang.reflect.Constructor;
129 /** Calls the private constructor of the parser */
132 Constructor<AndroidTargetParser> constructor = local
134 constructor.setAccessible(true);
135 return constructor.newInstance(osJarPath);
  /frameworks/base/core/java/android/view/
LayoutInflater.java 29 import java.lang.reflect.Constructor;
77 private static final HashMap<String, Constructor> sConstructorMap =
78 new HashMap<String, Constructor>();
465 Constructor constructor = sConstructorMap.get(name); local
469 if (constructor == null) {
480 constructor = clazz.getConstructor(mConstructorSignature);
481 sConstructorMap.put(name, constructor);
483 // If we have a filter, apply it to cached constructor
505 return (View) constructor.newInstance(args)
    [all...]
  /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);
285 final VCardEntryConstructor constructor = new VCardEntryConstructor(type); local
286 constructor.addEntryHandler(new VCardEntryHandler() {
306 parser.parse(new ByteArrayInputStream(bytes), constructor);
  /external/v8/test/cctest/
test-heap-profiler.cc 37 if (f_name_->Equals(cluster.constructor())) {
60 "function F() {} // A constructor\n"
76 i::String* constructor,
81 JSObjectsCluster o(constructor, reinterpret_cast<i::Object*>(instance));
326 const char* GetRetainers(const char* constructor) {
328 const size_t cons_len = strlen(constructor);
330 if (strncmp(constructor, lines_[i], cons_len) == 0 &&
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 21 import java.lang.reflect.Constructor;
191 // MethodID for deserialization constructor
192 private transient long constructor = CONSTRUCTOR_IS_NOT_RESOLVED; field in class:ObjectStreamClass
195 constructor = newConstructor;
199 return constructor;
515 // Constructor information
516 Constructor<?>[] constructors = cl.getDeclaredConstructors();
520 Comparator<Constructor<?>> constructorComparator = new Comparator<Constructor<?>>() {
521 public int compare(Constructor<?> ctr1, Constructor<?> ctr2)
533 Constructor<?> constructor = constructors[i]; local
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
SignatureTest.java 41 private static final String TAG_CONSTRUCTOR = "constructor";
143 JDiffConstructor constructor = loadConstructorInfo(parser, currentClass); local
144 currentClass.addConstructor(constructor);
145 currentMethod = constructor;
208 * Load constructor information from xml to memory.
212 * @return the new constructor
  /external/webkit/WebCore/bridge/
runtime_object.cpp 281 static JSObject* callRuntimeConstructor(ExecState* exec, JSObject* constructor, const ArgList& args)
283 RefPtr<Instance> instance(static_cast<RuntimeObjectImp*>(constructor)->getInternalInstance());
289 return result.isObject() ? static_cast<JSObject*>(result.asCell()) : constructor;
  /development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.cpp 107 jmethodID constructor = env->GetMethodID(backgroundClass, "<init>", "(Landroid/content/Context;)V"); local
108 jobject backgroundSurface = env->NewObject(backgroundClass, constructor, m_context);
485 jmethodID constructor = env->GetMethodID(backgroundClass, "<init>", "()V"); local
487 jobject backgroundObject = env->NewObject(backgroundClass, constructor);
  /external/v8/tools/
consarray.js 37 * @constructor
87 * @constructor

Completed in 2315 milliseconds

1 2 3 45 6 7 8 91011