/frameworks/base/test-runner/src/android/test/suitebuilder/ |
TestGrouping.java | 228 Constructor<? extends TestCase>[] constructors local 230 for (Constructor<? extends TestCase> constructor : constructors) {
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Registry.cpp | 38 const ConstructorMap &constructors() const { return Constructors; } function in class:clang::ast_matchers::dynamic::__anon18461::RegistryMaps 42 ConstructorMap Constructors; 47 assert(Constructors.find(MatcherName) == Constructors.end()); 48 Constructors[MatcherName] = Callback; 396 for (ConstructorMap::iterator it = Constructors.begin(), 397 end = Constructors.end(); 413 RegistryData->constructors().find(MatcherName); 414 if (it == RegistryData->constructors().end()) [all...] |
/dalvik/vm/native/ |
java_lang_Class.cpp | 235 ArrayObject* constructors; local 237 constructors = dvmGetDeclaredConstructors(clazz, publicOnly); 238 dvmReleaseTrackedAlloc((Object*) constructors, NULL); 240 RETURN_PTR(constructors);
|
/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
interface_base.cpp | 122 {# Constructors #} 123 {% for constructor in constructors %}
|
interface.h | 81 {% if constructors or has_custom_constructor or has_event_constructor %}
|
/external/doclava/src/com/google/doclava/ |
FederationTagger.java | 129 for (MethodInfo constructor : localClass.constructors()) {
|
Proofread.java | 147 // constructors 148 for (MethodInfo m : cl.constructors()) {
|
TodoFile.java | 93 for (MethodInfo m : cl.constructors()) {
|
ClassInfo.java | 111 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods, 120 mAllConstructors = constructors; 345 public ArrayList<MethodInfo> constructors() { method in class:ClassInfo 624 // constructors too 625 for (MethodInfo m : constructors()) { 742 ArrayList<MethodInfo> ctors = constructors(); 769 // public constructors 777 // protected constructors 787 // package private constructors 797 // private constructors [all...] |
/external/chromium_org/v8/test/intl/overrides/ |
security.js | 28 // Test that we always use original Intl.Constructors for toLocaleString calls. 40 // Make sure constructors actually throw now.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
property-static.js | 55 // Test for inlined constructors.
|
inline-construct.js | 158 // Regression test: Inlined constructors called as functions do not get their
|
alloc-object-huge.js | 32 // Test that huge constructors (more than 256 this assignments) are
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2931.js | 28 // Typed array constructors should be immune from changes to
|
/cts/tools/signature-tools/src/signature/converter/dex/ |
DexToSigConverter.java | 361 // constructors 362 Set<SigConstructor> constructors = convertConstructors(dexClass local 364 for (SigConstructor constructor : constructors) { 367 sigClass.setConstructors(new HashSet<IConstructor>(constructors)); 556 * constructors. 563 Set<SigConstructor> constructors = new HashSet<SigConstructor>(); local 566 constructors.add(convertConstructor(method)); 569 return constructors; 574 * {@link DexMethod}. This method ignores methods which are constructors. 649 // remove first parameter of non static inner class constructors [all...] |
/cts/tools/signature-tools/test/signature/converter/ |
ConvertClassTest.java | 606 Set<IConstructor> constructors = innerClass.getConstructors(); local 607 assertEquals(1, constructors.size()); 640 Set<IConstructor> constructors = innerClass.getConstructors(); local 641 IConstructor first = constructors.iterator().next(); 660 Set<IConstructor> constructors = innerClass.getConstructors(); local [all...] |
/libcore/luni/src/main/java/java/io/ |
ObjectStreamClass.java | 496 * Normally constructors come before methods (because <init> < 508 Constructor<?>[] constructors = cl.getDeclaredConstructors(); local 509 if (constructors.length > 1) { 514 // All constructors have same name, so we sort based on 520 Arrays.sort(constructors, constructorComparator); 524 for (int i = 0; i < constructors.length; i++) { 525 Constructor<?> constructor = constructors[i]; [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PrintCustomContent.java | 492 String[] constructors = getResources().getStringArray(R.array.motogp_constructors); local 501 item.constructor = constructors[i];
|
/external/chromium_org/v8/test/mjsunit/ |
builtins.js | 31 // constructors (recognized by having properties on their .prototype object),
|
/external/v8/test/mjsunit/ |
builtins.js | 31 // constructors (recognized by having properties on their .prototype object),
|
/cts/tools/signature-tools/src/signature/converter/doclet/ |
DocletToSigConverter.java | 178 Set<IConstructor> constructors = new HashSet<IConstructor>();
local 179 for (ConstructorDoc constructor : classDoc.constructors()) {
180 constructors.add(convertConstructor(constructor));
182 c.setConstructors(constructors);
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
Futures.java | [all...] |
/external/v8/test/mjsunit/compiler/ |
inline-construct.js | 145 // Regression test: Inlined constructors called as functions do not get their
|
/prebuilts/devtools/tools/lib/ |
monkeyrunner.jar | |
/external/android-mock/src/com/google/android/testing/mocking/ |
AndroidMock.java | 2739 Constructor<T>[] constructors = (Constructor<T>[]) clazz.getConstructors(); local [all...] |