HomeSort by relevance Sort by last modified time
    Searched refs:constructors (Results 26 - 50 of 186) sorted by null

12 3 4 5 6 7 8

  /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 39 const ConstructorMap &constructors() const { return Constructors; } function in class:clang::ast_matchers::dynamic::__anon21578::RegistryMaps
43 ConstructorMap Constructors;
48 assert(Constructors.find(MatcherName) == Constructors.end());
49 Constructors[MatcherName] = Callback;
318 for (ConstructorMap::iterator it = Constructors.begin(),
319 end = Constructors.end();
332 RegistryData->constructors().find(MatcherName);
333 return it == RegistryData->constructors().end(
    [all...]
  /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 112 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods,
121 // mAllConstructors will not contain *all* constructors. Only the constructors that pass
123 mAllConstructors = constructors;
356 public ArrayList<MethodInfo> constructors() { method in class:ClassInfo
597 * @param allCtors all constructors regardless of access levels.
598 * But only the public/protected removed constructors will be stored by the method.
599 * Removed constructors should never be deleted from source code because
669 * @return all public constructors that are removed.
670 * removed constructors should never be deleted from source code because the
    [all...]
Converter.java 122 Converter.convertMethods(c.constructors(false)))),
141 new ArrayList<MethodInfo>(Converter.convertAllMethods(c.constructors(false))));
149 c.constructors(false)))));
360 * because the filtering doesn't seem to be working in the ClassDoc.constructors(boolean) call.
  /external/mockito/src/org/mockito/internal/creation/jmock/
ClassImposterizer.java 92 protected void filterConstructors(Class sc, List constructors) {
  /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 516 * Normally constructors come before methods (because <init> <
528 Constructor<?>[] constructors = cl.getDeclaredConstructors(); local
529 if (constructors.length > 1) {
534 // All constructors have same name, so we sort based on
540 Arrays.sort(constructors, constructorComparator);
544 for (int i = 0; i < constructors.length; i++) {
545 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),
  /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/chromium_org/third_party/WebKit/Source/bindings/templates/
interface_base.cpp 106 {# Constructors #}
107 {% for constructor in constructors %}
interface.h 57 {% if constructors or has_custom_constructor or has_event_constructor %}
methods.cpp 485 {# Overloaded constructors have length checked during overload resolution #}
487 {# FIXME: remove UNLIKELY: constructors are expensive, so no difference. #}
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java     [all...]
  /system/extras/tests/bionic/libc/
Android.mk 164 # This test tries to see if the static constructors in a
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 

Completed in 858 milliseconds

12 3 4 5 6 7 8