HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 176 - 200 of 524) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/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)); \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
global.h 82 void __SND_DLSYM_VERSION(snd_dlsym_constructor_, name, version) (void) __attribute__ ((constructor)); \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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/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.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 53 import java.lang.reflect.Constructor;
196 Constructor<? extends LintFix> constructor = clazz.getDeclaredConstructor( local
198 constructor.setAccessible(true);
199 LintFix fix = constructor.newInstance(id, marker);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationTest.java 29 import java.lang.reflect.Constructor;
38 // a constructor marked with @NonNull, so the test won't compile.
39 Constructor<Configuration> constructor = local
41 constructor.setAccessible(true);
43 return constructor.newInstance(chooser);
  /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 65 import java.lang.reflect.Constructor;
333 * Instantiate a class object, using a specific constructor and parameters.
335 * @param constructorSignature the signature of the constructor to use
336 * @param constructorParameters the parameters to use in the constructor.
337 * @return A new class object, created using a specific constructor and parameters.
344 Constructor<?> constructor = null; local
347 constructor = clazz.getConstructor(constructorSignature);
354 // The 3-parameter constructor takes the following arguments:
359 // There is no parameter-less constructor. Nobody should ask for one
    [all...]
  /external/v8/src/
type-info.cc 522 Object* constructor = NULL; local
524 constructor = map->constructor();
525 if (!constructor->IsNull()) {
526 // If the constructor is not null or a JSFunction, we have to
528 if (!constructor->IsJSFunction()) return true;
529 // Check if the constructor directly references a foreign context.
530 if (CanRetainOtherContext(JSFunction::cast(constructor),
537 constructor = map->constructor();
    [all...]
log.h 249 void HeapSampleJSConstructorEvent(const char* constructor,
251 void HeapSampleJSRetainersEvent(const char* constructor,
253 void HeapSampleJSProducerEvent(const char* constructor,
  /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;
507 // Constructor information
508 Constructor<?>[] constructors = cl.getDeclaredConstructors();
512 Comparator<Constructor<?>> constructorComparator = new Comparator<Constructor<?>>() {
513 public int compare(Constructor<?> ctr1, Constructor<?> ctr2)
525 Constructor<?> constructor = constructors[i]; local
681 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
SimpleSignatureTest.java 49 private static final String TAG_CONSTRUCTOR = "constructor";
184 JDiffConstructor constructor = loadConstructorInfo(parser, currentClass); local
185 currentClass.addConstructor(constructor);
186 currentMethod = constructor;
233 * Load constructor information from xml to memory.
237 * @return the new constructor
  /external/webkit/Source/WebCore/bridge/
runtime_object.cpp 272 JSObject* constructor = exec->callee(); local
273 ASSERT(constructor->inherits(&RuntimeObject::s_info));
281 return JSValue::encode(result.isObject() ? static_cast<JSObject*>(result.asCell()) : constructor);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VCardVerifier.java 245 final VCardEntryConstructor constructor = new VCardEntryConstructor(mVCardType); local
246 constructor.addEntryHandler(mContentValuesVerifier);
247 parser.addInterpreter(constructor);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognitionException.js 32 org.antlr.runtime.RecognitionException.superclass.constructor.call(this);
TokenRewriteStream.js 69 sup.constructor.apply(this, arguments);
109 trs.InsertBeforeOp.superclass.constructor.call(this, index, text);
122 trs.ReplaceOp.superclass.constructor.call(this, from, text);
135 trs.DeleteOp.superclass.constructor.call(this, from, to);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js 24 org.antlr.runtime.tree.CommonTree.superclass.constructor.call(this, node);
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 25 See the constructor llvm::DataLayout::DataLayout. *)
35 See the constructor llvm::DataLayout::DataLayout. *)
  /external/v8/test/mjsunit/
debug-evaluate-bool-constructor.js 70 // Add set constructor field to a non-function value.
71 var a = {constructor:true};
  /external/v8/tools/
consarray.js 37 * @constructor
87 * @constructor
  /external/webkit/Source/JavaScriptCore/API/
JSValueRef.h 157 @abstract Tests whether a JavaScript value is an object constructed by a given constructor, as compared by the JS instanceof operator.
160 @param constructor The constructor to test against.
162 @result true if value is an object constructed by constructor, as compared by the JS instanceof operator, otherwise false.
164 JS_EXPORT bool JSValueIsInstanceOfConstructor(JSContextRef ctx, JSValueRef value, JSObjectRef constructor, JSValueRef* exception);

Completed in 502 milliseconds

1 2 3 4 5 6 78 91011>>