Searched defs:itemFactory (Results 1 - 5 of 5) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/utils/
H A DMainDexList.java25 public static Set<DexType> parse(Path path, DexItemFactory itemFactory) throws IOException { argument
27 return parse(closer.register(Files.newInputStream(path)), itemFactory);
31 public static Set<DexType> parse(InputStream input, DexItemFactory itemFactory) { argument
46 result.add(itemFactory.createType(descriptor));
H A DInternalOptions.java22 public final DexItemFactory itemFactory; field in class:InternalOptions
25 itemFactory = new DexItemFactory();
30 itemFactory = factory;
/external/r8/src/main/java/com/android/tools/r8/dex/
H A DApplicationReader.java52 final DexItemFactory itemFactory; field in class:ApplicationReader
58 itemFactory = options.itemFactory;
75 final DexApplication.Builder builder = new DexApplication.Builder(itemFactory, timing);
153 builder.addToMainDexList(MainDexList.parse(input, itemFactory));
188 fileReaders.add(new DexFileReader(file, classKind, itemFactory));
/external/r8/src/main/java/com/android/tools/r8/naming/
H A DNamingState.java22 private final DexItemFactory itemFactory; field in class:NamingState
26 DexItemFactory itemFactory, List<String> dictionary) {
27 return new NamingState<>(null, itemFactory, dictionary);
30 private NamingState(NamingState<T> parent, DexItemFactory itemFactory, List<String> dictionary) { argument
32 this.itemFactory = itemFactory;
37 return new NamingState<>(this, itemFactory, dictionary);
56 result = new InternalState(itemFactory, null, dictionary);
112 protected final DexItemFactory itemFactory; field in class:NamingState.InternalState
119 private InternalState(DexItemFactory itemFactory, InternalStat argument
25 createRoot( DexItemFactory itemFactory, List<String> dictionary) argument
128 InternalState(DexItemFactory itemFactory, InternalState parentInternalState, List<String> dictionary) argument
[all...]
/external/r8/src/main/java/com/android/tools/r8/graph/
H A DDexEncodedMethod.java270 public DexEncodedMethod toMethodThatLogsError(DexItemFactory itemFactory) { argument
273 DexString message = itemFactory.createString(
276 DexString tag = itemFactory.createString("TOIGHTNESS");
277 DexType[] args = {itemFactory.stringType, itemFactory.stringType};
278 DexProto proto = itemFactory.createProto(itemFactory.intType, args);
279 DexMethod logMethod = itemFactory
280 .createMethod(itemFactory.createType("Landroid/util/Log;"), proto,
281 itemFactory
334 toForwardingMethod(DexClass holder, DexItemFactory itemFactory) argument
[all...]

Completed in 1972 milliseconds