blob: bacc7e0837e8ebd0885af3b3483dee6eab06b7e3 [file] [log] [blame]
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.naming;
import com.android.tools.r8.graph.DexClass;
import com.android.tools.r8.graph.DexEncodedField;
import com.android.tools.r8.graph.DexEncodedMethod;
import com.android.tools.r8.graph.DexField;
import com.android.tools.r8.graph.DexMethod;
import com.android.tools.r8.graph.DexString;
import java.util.function.BiPredicate;
public interface MemberNamingStrategy {
DexString next(
DexMethod method,
InternalNamingState internalState,
BiPredicate<DexString, DexMethod> isAvailable);
DexString next(
DexField field,
InternalNamingState internalState,
BiPredicate<DexString, DexField> isAvailable);
DexString getReservedName(DexEncodedMethod method, DexClass holder);
DexString getReservedName(DexEncodedField field, DexClass holder);
boolean allowMemberRenaming(DexClass holder);
}