Searched refs:subclass (Results 1 - 25 of 28) sorted by relevance

12

/external/proguard/src/proguard/classfile/editor/
H A DSubclassAdder.java35 private final Clazz subclass; field in class:SubclassAdder
39 * Creates a new SubclassAdder that will add the given subclass.
41 public SubclassAdder(Clazz subclass) argument
43 this.subclass = subclass;
51 programClass.addSubClass(subclass);
57 libraryClass.addSubClass(subclass);
/external/proguard/src/proguard/classfile/visitor/
H A DSubclassFilter.java28 * direct subclass.
34 private final Clazz subclass; field in class:SubclassFilter
40 * @param subclass the class whose superclasses will not be visited.
44 public SubclassFilter(Clazz subclass, argument
47 this.subclass = subclass;
83 if (subclasses[index].equals(subclass))
/external/kernel-headers/original/linux/
H A Drwsem.h76 extern void down_read_nested(struct rw_semaphore *sem, int subclass);
77 extern void down_write_nested(struct rw_semaphore *sem, int subclass);
87 # define down_read_nested(sem, subclass) down_read(sem)
88 # define down_write_nested(sem, subclass) down_write(sem)
H A Dmutex.h127 extern void mutex_lock_nested(struct mutex *lock, unsigned int subclass);
129 # define mutex_lock_nested(lock, subclass) mutex_lock(lock)
H A Dspinlock.h177 # define spin_lock_nested(lock, subclass) _spin_lock_nested(lock, subclass)
179 # define spin_lock_nested(lock, subclass) _spin_lock(lock)
H A Dspinlock_api_smp.h23 void __lockfunc _spin_lock_nested(spinlock_t *lock, int subclass)
H A Dspinlock_api_up.h52 #define _spin_lock_nested(lock, subclass) __LOCK(lock)
H A Dlockdep.h87 unsigned int subclass; member in struct:lock_class
233 extern void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
/external/proguard/src/proguard/classfile/util/
H A DClassSubHierarchyInitializer.java28 * of their superclass. These subclass lists make it more convenient to travel
70 private void addSubclass(Clazz subclass, Clazz clazz) argument
74 clazz.addSubClass(subclass);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DFieldTest.java307 SupportSubClass subclass = new SupportSubClass();
350 subclass.setField(type, subclass, field,
354 subclass.setField(type, subclass, field, null, value);
355 subclass.setField(type, otherSubclass, field, null, value);
356 subclass.setField(type, parentClass, field, illegalAccessExceptionClass, value);
357 subclass.setField(type, plainObject, field, illegalAccessExceptionClass, value);
364 subclass.setField(type, subclass, fiel
[all...]
/external/javassist/sample/vector/
H A DVectorAssistant.java60 CtClass subclass;
63 subclass = makeSubclass2(pool, elementType);
65 subclass = makeSubclass(pool, elementType);
67 CtClass[] results = { subclass, pool.get(vec) };
/external/kernel-headers/original/asm-arm/arch/
H A Dcpu.h93 #define IS_OMAP_SUBCLASS(subclass, id) \
94 static inline int is_omap ##subclass (void) \
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmulticommandtool.py229 for subclass in class_to_crawl.__subclasses__():
230 if subclass not in seen_classes:
231 seen_classes.add(subclass)
232 cls._add_all_subclasses(subclass, seen_classes)
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonErrorNode.as55 // people should subclass if they alter the tree type so this
H A DBaseTreeAdaptor.as30 * You don't have to subclass CommonErrorNode; you will likely need to
31 * subclass your own tree node class to avoid class cast exception.
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java411 * Expects any {@code java.lang.Object} (or subclass) argument as a parameter to a mocked method.
2631 Class<T> subclass;
2639 subclass = (Class<T>) Class.forName(className);
2647 Constructor<T> constructor = getConstructorFor(subclass, args);
2652 throw new RuntimeException("Internal error instantiating new mock subclass"
2653 + subclass.getName(), e);
2656 "Internal error - the new mock subclass' constructor was inaccessible", e);
2660 Method[] methods = subclass.getMethods();
2663 setMethod = subclass.getMethod("setDelegate___AndroidMock", delegateInterface);
2666 + subclass
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtoken.rb223 By default, ANTLR generated ruby code will provide a customized subclass of
227 subclass named XYZ::Token.
415 TokenScheme is a subclass of Module. Thus, it has the method
478 When a TokenScheme is created, it will define a subclass of ANTLR3::CommonToken
488 and a grammar-specific subclass of ANTLR3::CommonToken assigned to the constant
495 dynamically-created CommonToken subclass.
H A Ddfa.rb165 | provided in the DFA subclass constants.
H A Derror.rb62 - not a subclass of RecognitionError
/external/libvorbis/doc/
H A D07-floor1.tex104 'subclass' value representing the number of alternate entropy books
106 [subclass] books and a master book used to encode which alternate
108 master/subclass mechanism is meant to be used as a flexible
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as62 * matching lexer rule(s). If you subclass to allow multiple token
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py1025 def _toStringSubclass(self, text, subclass):
1027 subclass."""
1030 self.soup.endData(subclass)
1493 BeautifulStoneSoup before writing your own subclass."""
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas529 /// A generic tree implementation with no payload. You must subclass to
609 /// extra fields, it's easy to cut them out in your own BaseTree subclass.
678 /// use your subclass.
792 /// a -> rewrite rule. We need to subclass to fill in the next() method,
879 /// A parser for a stream of tree nodes. "tree grammars" result in a subclass
1172 /// <summary>Override in a subclass to change the impl of children list </summary>
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js59 var subclass = function() { }; class
60 subclass.prototype = parent.prototype;
61 klass.prototype = new subclass;
H A Dconcat-jquery-mootools-prototype.js8438 var subclass = function() { };
8439 subclass.prototype = parent.prototype;
8440 klass.prototype = new subclass;

Completed in 2973 milliseconds

12