Home
last modified time | relevance | path

Searched refs:oldMethod (Results 1 – 4 of 4) sorted by relevance

/external/jdiff/src/jdiff/
DAPIComparator.java463 MethodAPI oldMethod = (MethodAPI)(iter.next()); in compareAllMethods() local
469 if (oldMethod.compareTo(newMethod) == 0) { in compareAllMethods()
487 int startOld = oldClass.methods_.indexOf(oldMethod); in compareAllMethods()
488 int endOld = oldClass.methods_.lastIndexOf(oldMethod); in compareAllMethods()
489 int startNew = newClass.methods_.indexOf(oldMethod); in compareAllMethods()
490 int endNew = newClass.methods_.lastIndexOf(oldMethod); in compareAllMethods()
498 if (oldMethod.inheritedFrom_ == null || in compareAllMethods()
502 compareMethods(oldMethod, newMethod, classDiff); in compareAllMethods()
505 } else if (oldMethod.inheritedFrom_ == null) { in compareAllMethods()
508 System.out.println(" Method " + oldMethod.name_ + in compareAllMethods()
[all …]
DMergeChanges.java263 MethodAPI oldMethod, in diffMethods() argument
266 if (oldMethod.isAbstract_ != newMethod.isAbstract_) { in diffMethods()
268 if (oldMethod.isAbstract_) in diffMethods()
276 oldMethod.isNative_ != newMethod.isNative_) { in diffMethods()
278 if (oldMethod.isNative_) in diffMethods()
286 oldMethod.isSynchronized_ != newMethod.isSynchronized_) { in diffMethods()
288 if (oldMethod.isSynchronized_) in diffMethods()
/external/javassist/src/main/javassist/util/proxy/
DProxyFactory.java1038 Method oldMethod = (Method)hash.put(key, methods[i]); in getMethods() local
1041 if (null != oldMethod && Modifier.isPublic(oldMethod.getModifiers()) in getMethods()
1045 hash.put(key, oldMethod); in getMethods()
/external/clang/lib/Sema/
DSemaDecl.cpp2949 ObjCMethodDecl *oldMethod) { in mergeObjCMethodDecls() argument
2955 mergeDeclAttributes(newMethod, oldMethod, MergeKind); in mergeObjCMethodDecls()
2958 ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(), in mergeObjCMethodDecls()
2959 oe = oldMethod->param_end(); in mergeObjCMethodDecls()
2965 CheckObjCMethodOverride(newMethod, oldMethod); in mergeObjCMethodDecls()
7805 CXXMethodDecl *oldMethod = cast<CXXMethodDecl>(OldDecl); in CheckFunctionDeclaration() local
7806 NewFD->setAccess(oldMethod->getAccess()); in CheckFunctionDeclaration()
7814 oldMethod = cast<CXXMethodDecl>(oldMethod->getFirstDecl()); in CheckFunctionDeclaration()
7815 if (oldMethod->isVirtual()) { in CheckFunctionDeclaration()
7816 Context.setNonKeyFunction(oldMethod); in CheckFunctionDeclaration()