OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:returnCtClass
(Results
1 - 2
of
2
) sorted by null
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
Type.java
43
String nonPrimitiveClassName(CtClass
returnCtClass
) {
44
return nonPrimitiveClassName == null ?
returnCtClass
.getName() : nonPrimitiveClassName;
AndroidTranslator.java
288
CtClass
returnCtClass
= ctMethod.getReturnType();
289
Type returnType = Type.find(
returnCtClass
);
309
String methodBody = generateMethodBody(ctClass, ctMethod, wasNative, wasAbstract,
returnCtClass
, returnType, isStatic, !wasFoundInClass);
312
CtMethod newMethod = makeNewMethod(ctClass, ctMethod,
returnCtClass
, methodName, paramTypes, "{\n" + methodBody + generateCallToSuper(methodName, paramTypes) + "\n}");
320
CtMethod newMethod = makeNewMethod(ctClass, ctMethod,
returnCtClass
, methodName, paramTypes, "{\n" + methodBody + "\n}");
330
private CtMethod makeNewMethod(CtClass ctClass, CtMethod ctMethod, CtClass
returnCtClass
, String methodName, CtClass[] paramTypes, String methodBody) throws CannotCompileException, NotFoundException {
333
returnCtClass
,
357
private String generateMethodBody(CtClass ctClass, CtMethod ctMethod, boolean wasNative, boolean wasAbstract, CtClass
returnCtClass
, Type returnType, boolean aStatic, boolean shouldGenerateCallToSuper) throws NotFoundException {
362
methodBody = generateMethodBody(ctClass, ctMethod,
returnCtClass
, returnType, aStatic, shouldGenerateCallToSuper);
371
public String generateMethodBody(CtClass ctClass, CtMethod ctMethod, CtClass
returnCtClass
, Type returnType, boolean isStatic, boolean shouldGenerateCallToSuper) throws NotFoundException
[
all
...]
Completed in 71 milliseconds