/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/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/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
|
/dalvik/dx/src/junit/extensions/ |
TestDecorator.java | 7 * for defining new test decorators. Test decorator 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
|
/external/junit/src/junit/extensions/ |
TestDecorator.java | 9 * for defining new test decorators. Test decorator subclasses
|
/libcore/junit/src/main/java/junit/extensions/ |
TestDecorator.java | 7 * for defining new test decorators. Test decorator subclasses
|
/packages/apps/Camera/ |
proguard.flags | 1 # ctors of subclasses of CameraPreference are called with Java reflection.
|
/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/emailcommon/src/org/apache/james/mime4j/field/address/ |
Address.java | 39 * overridden by subclasses.
48 * concrete subclasses.
|
/external/icu4c/common/ |
servnotf.h | 63 * <p>Subclasses override acceptsListener and notifyListener 107 * Subclasses implement this to return TRUE if the listener is 113 * Subclasses implement this to notify the listener.
|
/external/icu4c/i18n/unicode/ |
format.h | 56 * Many of the concrete subclasses of Format employ the notion of 65 * Even though many subclasses use patterns, the notion of a pattern 90 * <em>User subclasses are not supported.</em> While clients may write 91 * subclasses, such code will not necessarily work and will not be 104 * Objects of different subclasses are considered unequal. 107 * Objects of different subclasses are considered unequal. 145 * subclasses must implement. This method allows polymorphic formatting 164 * Format an object to produce a string. Subclasses should override this 186 * method which subclasses must implement. This method allows 205 * Subclasses will typically supply specific parse methods tha [all...] |