HomeSort by relevance Sort by last modified time
    Searched full:superclass (Results 201 - 225 of 1078) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCMissingSuperCallChecker.cpp 40 // FindSuperCallVisitor - Identify specific calls to the superclass.
86 /// \brief Determine whether the given class has a superclass that we want
87 /// to check. The name of the found superclass is stored in SuperclassName.
90 /// \param[out] SuperclassName On return, the found superclass name.
177 // Find out whether this class has a superclass that we are supposed to check.
194 // Check if the method calls its superclass implementation.
207 const char *Name = "Missing call to superclass";
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 134 * notable one being that it fails to serialize state inherited from the proxy's superclass.
153 private Class superClass;
334 superClass = null;
350 superClass = clazz;
360 public Class getSuperclass() { return superClass; }
439 public String getKey(Class superClass, Class[] interfaces, byte[] signature, boolean useWriteReplace)
442 if (superClass != null){
443 sbuf.append(superClass.getName());
465 String key = getKey(superClass, interfaces, signature, factoryWriteReplace);
592 if (superClass != null && !superClass.getName().equals("java.lang.Object")
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 88 template_class.superclass.should equal Template::Context
135 | class <%= @name %><% if @superclass %> < <%= @superclass %><% end %>
185 :superclass => 'Food',
229 :superclass => 'Food',
  /external/chromium_org/chrome/browser/resources/net_internals/
dns_view.js 24 var superClass = DivView;
32 // Call superclass's constructor.
33 superClass.call(this, DnsView.MAIN_BOX_ID);
69 // Inherit the superclass's methods.
70 __proto__: superClass.prototype,
logs_view.js 22 var superClass = DivView;
30 // Call superclass's constructor.
31 superClass.call(this, LogsView.MAIN_BOX_ID);
76 // Inherit the superclass's methods.
77 __proto__: superClass.prototype,
  /external/junit/src/junit/framework/
TestSuite.java 146 Class<?> superClass= theClass;
148 while (Test.class.isAssignableFrom(superClass)) {
149 for (Method each : superClass.getDeclaredMethods())
151 superClass= superClass.getSuperclass();
  /cts/tools/cts-java-scanner-doclet/src/com/android/cts/javascannerdoclet/
CtsJavaScannerDoclet.java 80 for (; clazz != null; clazz = clazz.superclass()) {
115 while((clazz = clazz.superclass()) != null) {
  /cts/tools/utils/
DescriptionGenerator.java 167 while((clazz = clazz.superclass()) != null) {
596 ClassDoc superClass = clazz.superclass();
597 while (superClass != null) {
598 for (MethodDoc method : superClass.methods()) {
602 superClass = superClass.superclass();
  /external/chromium_org/chrome/browser/net/spdyproxy/
data_reduction_proxy_settings_android.h 44 // JNI wrapper interfaces to the indentically-named superclass methods.
66 // passed in to the superclass method.
  /external/clang/test/Index/
subclass-comment.mm 16 @interface SuperClass
23 @interface SubClass : SuperClass
  /external/doclava/src/com/google/doclava/
FederationTagger.java 118 for (ClassInfo superclass : federatedClass.hierarchy()) {
119 if (superclass.allMethods().containsKey(method.getHashableName())) {
  /external/emma/core/java12/com/vladium/util/exception/
IThrowableWrapper.java 41 * first superclass not implementing IThrowableWrapper. This is used by
50 * first superclass not implementing IThrowableWrapper. This is used by
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhoneticNameEditorView.java 131 // Call into the superclass to update the field and rebuild the underlying
137 // from onRestoreInstanceState() from hidden fields. Always call into the superclass
  /dalvik/vm/mterp/mips/
OP_INVOKE_SUPER.S 48 bgeu a2, a3, .L${opcode}_nsm # method not present in superclass
  /dalvik/vm/oo/
TypeCheck.cpp 62 * Y[][] instanceof X[][] --> true (element superclass)
118 * that the superclass of an array is always Object, so we
152 * The superclass of an array is always java.lang.Object, so just
177 * All interfaces implemented directly and by our superclass, and
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTParser.java 10 * code because of the superClass optoin in the .g file.
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3intstream.c 2 /// Implementation of superclass elements of an ANTLR3 int stream.
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.js 2 var sup = org.antlr.runtime.tree.RewriteRuleSubtreeStream.superclass;
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t001lexer.html 17 TLexer.superclass.constructor.apply(this, arguments);
t002lexer.html 17 TLexer.superclass.constructor.apply(this, arguments);
t003lexer.html 17 TLexer.superclass.constructor.apply(this, arguments);
t006lexer.html 17 TLexer.superclass.constructor.apply(this, arguments);
t007lexer.html 17 TLexer.superclass.constructor.apply(this, arguments);
t018llstar.html 19 TestParser.superclass.constructor.apply(this, arguments);
t032subrulePredict.html 20 TParser.superclass.constructor.apply(this, arguments);

Completed in 1020 milliseconds

1 2 3 4 5 6 7 891011>>