Searched defs:builderMethod (Results 1 - 2 of 2) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderMethodPool.java85 @Nonnull @Override public BuilderProtoReference getPrototype(@Nonnull BuilderMethod builderMethod) { argument
86 return builderMethod.methodReference.proto;
93 @Override public int getMethodIndex(@Nonnull BuilderMethod builderMethod) { argument
94 return builderMethod.methodReference.index;
H A DBuilderClassPool.java207 @Override public int getMethodAccessFlags(@Nonnull BuilderMethod builderMethod) { argument
208 return builderMethod.accessFlags;
225 @Nullable @Override public BuilderAnnotationSet getMethodAnnotations(@Nonnull BuilderMethod builderMethod) { argument
226 if (builderMethod.annotations.isEmpty()) {
229 return builderMethod.annotations;
268 public Iterable<? extends DebugItem> getDebugItems(@Nonnull BuilderMethod builderMethod) { argument
269 MethodImplementation impl = builderMethod.getImplementation();
285 @Override public int getRegisterCount(@Nonnull BuilderMethod builderMethod) { argument
286 MethodImplementation impl = builderMethod.getImplementation();
294 public Iterable<? extends Instruction> getInstructions(@Nonnull BuilderMethod builderMethod) { argument
303 getTryBlocks(@onnull BuilderMethod builderMethod) argument
316 makeMutableMethodImplementation(@onnull BuilderMethod builderMethod) argument
340 setAnnotationSetRefListOffset(@onnull BuilderMethod builderMethod, int offset) argument
344 getAnnotationSetRefListOffset(@onnull BuilderMethod builderMethod) argument
348 setCodeItemOffset(@onnull BuilderMethod builderMethod, int offset) argument
352 getCodeItemOffset(@onnull BuilderMethod builderMethod) argument
[all...]

Completed in 110 milliseconds