HomeSort by relevance Sort by last modified time
    Searched full:subclasses (Results 1 - 25 of 1918) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/300-package-override/
info.txt 1 Tests a dalvik bug where we'd allow subclasses to override package-protected
  /dalvik/tests/300-package-override/
info.txt 1 Tests a dalvik bug where we'd allow subclasses to override package-protected
  /art/test/301-abstract-protected/
info.txt 3 implementation in non-abstract subclasses.
  /dalvik/tests/301-abstract-protected/
info.txt 3 implementation in non-abstract subclasses.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_repr.py 4 subclasses = [] variable
10 subclasses.append(X)
15 # This test checks if the __repr__ is correct for subclasses of simple types
19 for typ in subclasses:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_repr.py 4 subclasses = [] variable
10 subclasses.append(X)
15 # This test checks if the __repr__ is correct for subclasses of simple types
19 for typ in subclasses:
  /external/proguard/src/proguard/classfile/visitor/
ConcreteClassDownTraveler.java 28 * travel to the first concrete subclasses down in its hierarchy of abstract
60 Clazz[] subClasses = programClass.subClasses;
61 if (subClasses != null)
63 for (int index = 0; index < subClasses.length; index++)
65 subClasses[index].accept(this);
85 Clazz[] subClasses = libraryClass.subClasses;
86 if (subClasses != null)
88 for (int index = 0; index < subClasses.length; index++
    [all...]
SubclassFilter.java 56 if (!present(programClass.subClasses))
65 if (!present(libraryClass.subClasses))
74 private boolean present(Clazz[] subclasses)
76 if (subclasses == null)
81 for (int index = 0; index < subclasses.length; index++)
83 if (subclasses[index].equals(subclass))
  /external/chromium/chrome/browser/ui/cocoa/
styled_text_field_cell.h 17 // The border and focus ring are modified, as is the font baseline. Subclasses
27 // Methods intended to be overridden by subclasses, not part of the public API
28 // and should not be called outside of subclasses.
32 // implementation returns the full |cellFrame|. Subclasses should override this
39 // Subclasses should override this method if they add any decorations.
42 // Baseline adjust for the text in this cell. Defaults to 0. Subclasses should
  /external/chromium_org/third_party/skia/include/images/
SkForceLinking.h 10 * SkImageDecoder subclasses just because we do not directly call them.
14 * that the linker includes the subclasses.
  /external/clang/test/SemaCXX/
warn-pure-virtual-call-from-ctor-dtor.cpp 3 A() { f(); } // expected-warning {{call to pure virtual member function 'f'; overrides of 'f' in subclasses are not available in the constructor of 'A'}}
4 ~A() { f(); } // expected-warning {{call to pure virtual member function 'f'; overrides of 'f' in subclasses are not available in the destructor of 'A'}}
  /external/skia/include/images/
SkForceLinking.h 10 * SkImageDecoder subclasses just because we do not directly call them.
14 * that the linker includes the subclasses.
  /external/chromium_org/tools/telemetry/unittest_data/discoverable_classes/
discover_dummyclass.py 5 """A dummy exception subclasses used by core/discover.py's unit tests."""
  /external/chromium_org/chrome/browser/ui/cocoa/
styled_text_field_cell.h 13 // The border and focus ring are modified, as is the drawing rect. Subclasses
23 // Methods intended to be overridden by subclasses, not part of the public API
24 // and should not be called outside of subclasses.
28 // implementation returns the full |cellFrame|. Subclasses should override this
35 // Subclasses should override this method if they add any decorations.
39 // Subclasses should
43 // Subclasses should
  /external/proguard/src/proguard/classfile/util/
ClassSubHierarchyInitializer.java 27 * This ClassVisitor adds all classes that it visits to the list of subclasses
39 // Add this class to the subclasses of its superclass.
42 // Add this class to the subclasses of its interfaces.
52 // Add this class to the subclasses of its superclass,
55 // Add this class to the subclasses of its interfaces.
61 // Add this class to the subclasses of the interface class.
  /external/proguard/src/proguard/classfile/
ProgramClass.java 54 * An extra field pointing to the subclasses of this class.
57 public Clazz[] subClasses;
176 if (subClasses == null)
178 subClasses = new Clazz[1];
183 Clazz[] temp = new Clazz[subClasses.length+1];
184 System.arraycopy(subClasses, 0, temp, 0, subClasses.length);
185 subClasses = temp;
188 subClasses[subClasses.length-1] = clazz
    [all...]
LibraryClass.java 55 * An extra field pointing to the subclasses of this class.
58 public Clazz[] subClasses;
142 if (subClasses == null)
144 subClasses = new Clazz[1];
149 Clazz[] temp = new Clazz[subClasses.length+1];
150 System.arraycopy(subClasses, 0, temp, 0, subClasses.length);
151 subClasses = temp;
154 subClasses[subClasses.length-1] = clazz
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
infobar_controller.h 17 // draw an icon, a text message, and a close button. Subclasses can
55 // Called when someone clicks on the OK or Cancel buttons. Subclasses
62 // NOTE: Subclasses should not call this to close the infobar as it will lead to
81 // Subclasses can override this method to add additional controls to
86 // Subclasses must override this method to perform cleanup just before the
102 // Closes and disables the provided menu. Subclasses should call this for each
108 // InfoBarController subclasses, one for each InfoBarDelegate
109 // subclass. Each of these subclasses overrides addAdditionalControls to
  /external/chromium_org/components/browser_context_keyed_service/
dependency_node.h 11 // This is intended to be used by the subclasses, not directly.
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingListenableFuture.java 25 * future. Subclasses should override one or more methods to modify the behavior
29 * <p>Most subclasses can just use {@link SimpleForwardingListenableFuture}.
39 /** Constructor for use by subclasses. */
55 * A simplified version of {@link ForwardingListenableFuture} where subclasses
  /external/icu4c/samples/translit/
unaccent.h 63 * <p>Concrete subclasses of Transliterator that wish clients to
72 * Subclasses that do not implement this method will have a
85 * Class identifier for subclasses of Transliterator that do not
86 * define their class (anonymous subclasses).
  /packages/apps/Email/emailsync/src/com/android/emailsync/
Request.java 20 * Requests for mailbox actions are handled by subclasses of this abstract class.
21 * Three subclasses are now defined: PartRequest (attachment load), MeetingResponseRequest
32 // Subclasses of Request may have different semantics regarding equality; therefore,
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_controller.h 18 // draw an icon, a text message, and a close button. Subclasses can
48 // Called when someone clicks on the OK or Cancel buttons. Subclasses
68 // Subclasses can override this method to add additional controls to
73 // Subclasses must override this method to perform cleanup just before the
90 // InfoBarController subclasses, one for each InfoBarDelegate
91 // subclass. Each of these subclasses overrides addAdditionalControls to
  /external/chromium_org/chrome/browser/ui/views/infobars/
infobar_view.h 52 // NOTE: Subclasses must ignore link clicks if we're unowned.
57 // NOTE: Subclasses must ignore button presses if we're unowned.
63 // NOTE: Subclasses must ignore button presses if we're unowned.
74 // NOTE: This must not be called if we're unowned. (Subclasses should ignore
84 // These return x coordinates delimiting the usable area for subclasses to lay
93 // NOTE: This must not be called if we're unowned. (Subclasses should ignore
  /external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
uperf.h 25 // Use the TESTCASE macro in subclasses of IntlTest. Define the
60 * Subclasses of PerfTest will need to create subclasses of
68 * Subclasses must implement this method to do the action to be
74 * Subclasses must implement this method to return positive
80 * Subclasses should override this method to return either positive

Completed in 747 milliseconds

1 2 3 4 5 6 7 8 91011>>