OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newMethod
(Results
1 - 25
of
110
) sorted by null
1
2
3
4
5
/external/jdiff/src/jdiff/
APIComparator.java
468
MethodAPI
newMethod
= methodArr[methodIdx];
469
if (oldMethod.compareTo(
newMethod
) == 0) {
494
MethodAPI
newMethod
= (MethodAPI)(newClass.methods_.get(startNew));
499
newMethod
.inheritedFrom_ == null) {
502
compareMethods(oldMethod,
newMethod
, classDiff);
520
MethodAPI
newMethod
= (MethodAPI)(iter.next());
522
if (
newMethod
.inheritedFrom_ != null)
529
if (
newMethod
.compareTo(oldMethod) == 0) {
535
// int idx = Collections.binarySearch(oldClass.methods_,
newMethod
);
538
int startOld = oldClass.methods_.indexOf(
newMethod
);
[
all
...]
MergeChanges.java
265
MethodAPI
newMethod
) {
267
if (oldMethod.isAbstract_ !=
newMethod
.isAbstract_) {
277
oldMethod.isNative_ !=
newMethod
.isNative_) {
287
oldMethod.isSynchronized_ !=
newMethod
.isSynchronized_) {
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
AbstractFakeCommandHandlerTestCase.groovy
249
* @param
newMethod
- the Closure representing the new method for this single instance
251
protected void overrideMethod(object, String methodName, Closure
newMethod
) {
254
emc."$methodName" =
newMethod
264
def
newMethod
= {String path -> throw new FileSystemException("Error thrown by method [$methodName]", ERROR_MESSAGE_KEY) }
265
overrideMethod(fileSystem, methodName,
newMethod
)
/external/javassist/src/main/javassist/
CodeConverter.java
384
* @param
newMethod
the method with the new name.
388
CtMethod
newMethod
)
392
= new TransformCall(transformers, oldMethodName,
newMethod
);
/prebuilts/gradle-plugin/com/android/tools/jaxb-inheritance-plugin/1/
jaxb-inheritance-plugin-1.jar
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java
312
CtMethod
newMethod
= makeNewMethod(ctClass, ctMethod, returnCtClass, methodName, paramTypes, "{\n" + methodBody + generateCallToSuper(methodName, paramTypes) + "\n}");
313
newMethod
.setModifiers(newModifiers);
317
ctClass.addMethod(
newMethod
);
320
CtMethod
newMethod
= makeNewMethod(ctClass, ctMethod, returnCtClass, methodName, paramTypes, "{\n" + methodBody + "\n}");
321
ctMethod.setBody(
newMethod
, null);
/external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java
209
OAuthSignatureMethod signer =
newMethod
(message.getSignatureMethod(),
216
public static OAuthSignatureMethod
newMethod
(String name,
242
* Subsequently,
newMethod
(name) will attempt to instantiate the given
/external/guava/guava/lib/
jdiff.jar
/external/guice/lib/build/jdiff/
jdiff.jar
/external/javassist/src/main/javassist/bytecode/
ClassFile.java
668
private static boolean isDuplicated(MethodInfo
newMethod
, String newName,
688
return notBridgeMethod(minfo) && notBridgeMethod(
newMethod
);
/external/jarjar/lib/
asm-4.0.jar
/external/owasp/sanitizer/tools/findbugs/lib/
asm-3.3.jar
/prebuilts/devtools/tools/lib/
asm-4.0.jar
asm-5.0.3.jar
asm-5.0.4.jar
/prebuilts/tools/common/asm-tools/
asm-3.3.1.jar
asm-4.0.jar
/prebuilts/tools/common/m2/repository/asm/asm/3.3/
asm-3.3.jar
/prebuilts/tools/common/m2/repository/asm/asm/3.3.1/
asm-3.3.1.jar
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm/4.0/
asm-4.0.jar
/external/guice/lib/build/
asm-5.0.3.jar
/prebuilts/misc/common/asm/
asm-5.2.jar
/prebuilts/misc/common/robolectric/lib/
asm-5.0.1.jar
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm/4.1/
asm-4.1.jar
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm/5.0.1/
asm-5.0.1.jar
Completed in 155 milliseconds
1
2
3
4
5