Lines Matching refs:ConfigIndex
187 static class ConfigIndex {
263 Optional<ConfigIndex> optionalConfigIndex = loadBaseConfig(byteBuf, configCount);
279 static Optional<ConfigIndex> loadBaseConfig(ByteBuffer bufBuf, int count) {
281 ConfigIndex cfg = new ConfigIndex();
309 static String readBaseItem(int resId, ConfigIndex configIndex, ByteBuffer buf) {
343 List<ConfigIndex> cfg = loadConfig(byteBuf, configCount);
355 static List<ConfigIndex> loadConfig(ByteBuffer bufBuf, int count) {
356 List<ConfigIndex> configList = new ArrayList<>(count);
358 ConfigIndex cfg = new ConfigIndex();
385 static List<String> readAllItem(int resId, List<ConfigIndex> configs, ByteBuffer buf) {
387 for (ConfigIndex index : configs) {
443 List<ConfigIndex> cfg = loadConfig(byteBuf, configCount);
481 static List<ResourceIndexResult> readDataAllItem(List<ConfigIndex> configs, ByteBuffer buf) {
483 for (ConfigIndex index : configs) {
564 static String convertConfigIndexToString(ConfigIndex configIndex) {