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

1 2 3 4 5 6 7 8 91011>>

  /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))
BottomClassFilter.java 29 * have any subclasses.
54 if (programClass.subClasses == null)
64 if (libraryClass.subClasses == null)
  /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/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/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/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
ForwardingFuture.java 29 * Subclasses should override one or more methods to modify the behavior of
33 * <p>Most subclasses can just use {@link SimpleForwardingFuture}.
41 /** Constructor for use by subclasses. */
77 * A simplified version of {@link ForwardingFuture} where subclasses
ForwardingListeningExecutorService.java 23 * listening executor service. Subclasses should override one or more methods to
32 /** Constructor for use by 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/Exchange/exchange2/src/com/android/exchange/
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/icu4c/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
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CharStream.js 3 * This class should not be instantiated directly. Instead, use one of its subclasses.
  /external/chromium/chrome/browser/extensions/
external_extension_loader.h 16 // Base class for gathering a list of external extensions. Subclasses
20 // the UI thread. Some subclasses introduce new methods that are executed on the
24 // 2.) Load() - implemented in subclasses
46 // Subclasses that want this behavior should override this method to
  /packages/apps/LegacyCamera/
proguard.flags 1 # ctors of subclasses of CameraPreference are called with Java reflection.
  /external/guava/guava/src/com/google/common/collect/
ForwardingIterator.java 25 * Subclasses should override one or more methods to modify the behavior of the
36 /** Constructor for use by subclasses. */
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPStackTimerTask.java 15 * avoid killing the SIPTransactionStack timer thread. Note: subclasses MUST not
25 // / The run() method is final to ensure that all subclasses inherit the
  /external/proguard/src/proguard/
SubclassedClassFilter.java 48 if (programClass.subClasses != null)
57 if (libraryClass.subClasses != null)
  /external/proguard/src/proguard/classfile/editor/
SubclassToAdder.java 27 * This ClassVisitor adds all classes that it visits to the list of subclasses
39 * Creates a new SubclassAdder that will add subclasses to the given
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
queueengine.py 46 raise NotImplementedError, "subclasses must implement"
49 raise NotImplementedError, "subclasses must implement"
52 raise NotImplementedError, "subclasses must implement"
55 raise NotImplementedError, "subclasses must implement"
58 raise NotImplementedError, "subclasses must implement"
62 raise NotImplementedError, "subclasses must implement"
65 raise NotImplementedError, "subclasses must implement"
68 raise NotImplementedError, "subclasses must implement"
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractOwnableSynchronizer.java 14 * use this information. However, subclasses and tools may use
28 * Empty constructor for use by subclasses.
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Address.java 39 * overridden by subclasses.
48 * concrete subclasses.

Completed in 572 milliseconds

1 2 3 4 5 6 7 8 91011>>