OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MethodKey
(Results
1 - 5
of
5
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
ClassSection.java
48
FieldKey,
MethodKey
, AnnotationSetKey, EncodedValue> extends IndexSection<ClassKey> {
63
@Nonnull Collection<? extends
MethodKey
> getSortedDirectMethods(@Nonnull ClassKey key);
64
@Nonnull Collection<? extends
MethodKey
> getSortedVirtualMethods(@Nonnull ClassKey key);
65
@Nonnull Collection<? extends
MethodKey
> getSortedMethods(@Nonnull ClassKey key);
68
int getMethodAccessFlags(@Nonnull
MethodKey
key);
72
@Nullable AnnotationSetKey getMethodAnnotations(@Nonnull
MethodKey
key);
73
@Nullable List<? extends AnnotationSetKey> getParameterAnnotations(@Nonnull
MethodKey
key);
75
@Nullable Iterable<? extends DebugItem> getDebugItems(@Nonnull
MethodKey
key);
76
@Nullable Iterable<? extends StringKey> getParameterNames(@Nonnull
MethodKey
key);
78
int getRegisterCount(@Nonnull
MethodKey
key)
[
all
...]
MethodSection.java
40
MethodRefKey extends MethodReference,
MethodKey
>
42
@Nonnull MethodRefKey getMethodReference(@Nonnull
MethodKey
key);
45
@Nonnull ProtoRefKey getPrototype(@Nonnull
MethodKey
key);
47
int getMethodIndex(@Nonnull
MethodKey
key);
DexWriter.java
90
FieldKey,
MethodKey
,
97
MethodSectionType extends MethodSection<StringKey, TypeKey, ProtoRefKey, MethodRefKey,
MethodKey
>,
98
ClassSectionType extends ClassSection<StringKey, TypeKey, TypeListKey, ClassKey, FieldKey,
MethodKey
,
473
Collection<? extends
MethodKey
> directMethods = classSection.getSortedDirectMethods(key);
474
Collection<? extends
MethodKey
> virtualMethods = classSection.getSortedVirtualMethods(key);
517
private void writeEncodedMethods(@Nonnull DexDataWriter writer, @Nonnull Collection<? extends
MethodKey
> methods)
520
for (
MethodKey
key: methods) {
646
for (
MethodKey
methodKey
: classSection.getSortedMethods(classKey)) {
647
List<? extends AnnotationSetKey> parameterAnnotations = classSection.getParameterAnnotations(
methodKey
);
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMethodPool.java
71
return internMethod(new
MethodKey
(definingClass, name, parameters, returnType));
122
private static class
MethodKey
extends BaseMethodReference implements MethodReference {
128
public
MethodKey
(@Nonnull String definingClass, @Nonnull String name,
/art/libdexfile/dex/
test_dex_file_builder.h
78
MethodKey
method_key = {
273
MethodKey
method_key = { class_descriptor, name, &proto_key };
322
struct
MethodKey
{
328
bool operator()(const
MethodKey
& lhs, const
MethodKey
& rhs) const {
394
std::map<
MethodKey
, uint32_t, MethodKeyComparator> methods_;
Completed in 1507 milliseconds