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

1 2 3 4 56 7 8 91011>>

  /external/bluetooth/glib/gio/
glocalfilemonitor.c 78 obj = parent_class->constructor (type,
119 gobject_class->constructor = g_local_file_monitor_constructor;
  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 18 * @constructor
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 18 * @constructor
  /external/chromium/testing/gtest/test/
gtest_catch_exceptions_test.py 78 'in the test fixture\'s constructor'
113 'in the test fixture\'s constructor'
136 self.assert_('CxxExceptionInSetUpTestCaseTest constructor '
  /external/webkit/Source/WebKit/android/jni/
CacheManager.cpp 99 jmethodID constructor = env->GetMethodID(cacheResultClass, "<init>", "()V"); local
113 jobject javaResult = env->NewObject(cacheResultClass, constructor);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
AnnotationsTest.java 24 import java.lang.reflect.Constructor;
43 Constructor<Type> constructor = Type.class.getConstructor(); local
44 assertAnnotatedElement(constructor, AnnotationA.class, AnnotationC.class);
  /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/libnl-headers/netlink/cli/
utils.h 56 #define __init __attribute__((constructor))
  /external/llvm/include/llvm/
DefaultPasses.h 157 static void RegisterDefaultPass(PassInfo::NormalCtor_t constructor,
  /external/v8/test/mjsunit/
debug-constructed-by.js 32 // Simple constructor.
35 // Create mirror for the constructor.
  /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/valgrind/main/coregrind/
vg_preloaded.c 140 static void vg_cleanup_env(void) __attribute__((constructor));
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.cpp 230 jmethodID constructor = env->GetMethodID(clazz, "<init>", "(D)V"); local
231 jobject javaDouble = env->functions->NewObject(env, clazz, constructor, doubleValue);
237 jmethodID constructor = env->GetMethodID(clazz, "<init>", "(Z)V"); local
238 jobject javaBoolean = env->functions->NewObject(env, clazz, constructor, boolValue);
  /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/javassist/src/main/javassist/
SerialVersionUID.java 146 CtConstructor constructor = constructors[i]; local
147 int mods = constructor.getModifiers();
151 out.writeUTF(constructor.getMethodInfo2()
  /external/v8/src/
heap-profiler.cc 72 String* constructor = GetConstructorNameForHeapProfile( local
75 if (fine_grain && (constructor == HEAP->Object_symbol() ||
76 constructor == HEAP->Array_symbol())) {
77 return JSObjectsCluster(constructor, obj);
79 return JSObjectsCluster(constructor);
773 String* constructor = GetConstructorNameForHeapProfile(JSObject::cast(obj));
775 constructor->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL));
921 cluster.constructor());
941 reinterpret_cast<HeapObject*>(cluster.instance()) : cluster.constructor();
950 String* constructor = GetConstructorNameForHeapProfile local
    [all...]
log.h 246 void HeapSampleJSConstructorEvent(const char* constructor,
248 void HeapSampleJSRetainersEvent(const char* constructor,
250 void HeapSampleJSProducerEvent(const char* constructor,
top.cc 403 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor()); local
404 if (!constructor->shared()->IsApiFunction()) return;
406 constructor->shared()->get_api_func_data()->access_check_info();
467 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
468 if (!constructor->shared()->IsApiFunction()) return false;
471 constructor->shared()->get_api_func_data()->access_check_info();
510 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptFunctionCall.cpp 168 JSObject* constructor = asObject(thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name)))); local
178 ConstructType constructType = constructor->getConstructData(constructData);
182 JSValue result = JSC::construct(m_exec, constructor, constructType, constructData, m_arguments);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 27 import java.lang.reflect.Constructor;
227 // from Constructor<T>[] to Constructor<?>[]
228 Constructor<? extends TestCase>[] constructors
229 = (Constructor<? extends TestCase>[]) aClass.getConstructors();
230 for (Constructor<? extends TestCase> constructor : constructors) {
231 if (Modifier.isPublic(constructor.getModifiers())) {
232 java.lang.Class[] parameterTypes = constructor.getParameterTypes();
240 "TestCase class %s is missing a public constructor with no parameters "
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java 27 import java.lang.reflect.Constructor;
131 /** Calls the private constructor of the parser */
134 Constructor<AndroidTargetParser> constructor = local
136 constructor.setAccessible(true);
137 return constructor.newInstance(osJarPath);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactoryTest.java 5 import java.lang.reflect.Constructor;
458 Constructor<T> constructor = null; local
461 constructor = keySpec.getConstructor(TestPrivateKey.class);
469 constructor = keySpec.getConstructor(TestPublicKey.class);
477 if (constructor == null) {
482 return constructor.newInstance(key);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ProjectCallback.java 58 import java.lang.reflect.Constructor;
308 * Instantiate a class object, using a specific constructor and parameters.
310 * @param constructorSignature the signature of the constructor to use
311 * @param constructorParameters the parameters to use in the constructor.
312 * @return A new class object, created using a specific constructor and parameters.
319 Constructor<?> constructor = null; local
322 constructor = clazz.getConstructor(constructorSignature);
329 // The 3-parameter constructor takes the following arguments:
334 // There is no parameter-less constructor. Nobody should ask for one
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 21 import java.lang.reflect.Constructor;
177 // MethodID for deserialization constructor
178 private transient long constructor = CONSTRUCTOR_IS_NOT_RESOLVED; field in class:ObjectStreamClass
181 constructor = newConstructor;
185 return constructor;
509 // Constructor information
510 Constructor<?>[] constructors = cl.getDeclaredConstructors();
514 Comparator<Constructor<?>> constructorComparator = new Comparator<Constructor<?>>() {
515 public int compare(Constructor<?> ctr1, Constructor<?> ctr2)
527 Constructor<?> constructor = constructors[i]; local
683 Constructor<?> constructor = null; 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

Completed in 2634 milliseconds

1 2 3 4 56 7 8 91011>>