Lines Matching defs:nextChar

298     char nextChar() {
380 poolIdx = new int[nextChar()];
388 int len = nextChar();
1032 Object v = readPool(nextChar());
1086 int nexceptions = nextChar();
1089 thrown = thrown.prepend(readClassSymbol(nextChar()).type);
1120 int numEntries = nextChar();
1122 int start_pc = nextChar();
1123 int length = nextChar();
1124 int nameIndex = nextChar();
1125 int sigIndex = nextChar();
1126 int register = nextChar();
1147 Name n = readName(nextChar());
1185 ct1.typarams_field = readTypeParams(nextChar());
1195 sym.type = readType(nextChar());
1291 int nameIndex = nextChar();
1292 int flags = nextChar();
1312 Name moduleName = readModuleName(nextChar());
1317 msym.flags.addAll(readModuleFlags(nextChar()));
1318 msym.version = readName(nextChar());
1321 int nrequires = nextChar();
1323 ModuleSymbol rsym = syms.enterModule(readModuleName(nextChar()));
1324 Set<RequiresFlag> flags = readRequiresFlags(nextChar());
1325 nextChar(); // skip compiled version
1332 int nexports = nextChar();
1334 Name n = readName(nextChar());
1336 Set<ExportsFlag> flags = readExportsFlags(nextChar());
1337 int nto = nextChar();
1344 lb.append(syms.enterModule(readModuleName(nextChar())));
1352 int nopens = nextChar();
1357 Name n = readName(nextChar());
1359 Set<OpensFlag> flags = readOpensFlags(nextChar());
1360 int nto = nextChar();
1367 lb.append(syms.enterModule(readModuleName(nextChar())));
1378 int nuses = nextChar();
1380 Name srvc = readClassName(nextChar());
1386 int nprovides = nextChar();
1388 Name srvc = readClassName(nextChar());
1389 int nimpls = nextChar();
1392 impls.append(readClassName(nextChar()));
1409 msym.resolutionFlags.addAll(readModuleResolutionFlags(nextChar()));
1425 ClassSymbol c = readClassSymbol(nextChar());
1426 NameAndType nt = readNameAndType(nextChar());
1533 char ac = nextChar();
1535 Name attrName = readName(nextChar());
1559 nextChar(); // max_stack
1560 nextChar(); // max_locals
1563 final char exception_table_length = nextChar();
1576 int numAttributes = nextChar();
1636 int numAttributes = nextChar();
1689 int index = poolIdx[nextChar()];
1692 t = readTypeOrClassSymbol(nextChar());
1694 int numFields = nextChar();
1697 Name name = readName(nextChar());
1722 final int offset = nextChar();
1730 final int offset = nextChar();
1738 final int offset = nextChar();
1745 final int offset = nextChar();
1753 final int table_length = nextChar();
1759 newLvarOffset[i] = nextChar();
1760 newLvarLength[i] = nextChar();
1761 newLvarIndex[i] = nextChar();
1773 final int table_length = nextChar();
1779 newLvarOffset[i] = nextChar();
1780 newLvarLength[i] = nextChar();
1781 newLvarIndex[i] = nextChar();
1793 final int exception_index = nextChar();
1830 final int type_index = nextChar();
1836 final int type_index = nextChar();
1848 final int offset = nextChar();
1857 final int offset = nextChar();
1865 final int offset = nextChar();
1873 final int offset = nextChar();
1881 final int offset = nextChar();
1914 return new Attribute.Constant(syms.byteType, readPool(nextChar()));
1916 return new Attribute.Constant(syms.charType, readPool(nextChar()));
1918 return new Attribute.Constant(syms.doubleType, readPool(nextChar()));
1920 return new Attribute.Constant(syms.floatType, readPool(nextChar()));
1922 return new Attribute.Constant(syms.intType, readPool(nextChar()));
1924 return new Attribute.Constant(syms.longType, readPool(nextChar()));
1926 return new Attribute.Constant(syms.shortType, readPool(nextChar()));
1928 return new Attribute.Constant(syms.booleanType, readPool(nextChar()));
1930 return new Attribute.Constant(syms.stringType, readPool(nextChar()).toString());
1932 return new EnumAttributeProxy(readEnumType(nextChar()), readName(nextChar()));
1934 return new ClassAttributeProxy(readTypeOrClassSymbol(nextChar()));
1936 int n = nextChar();
2340 long flags = adjustFieldFlags(nextChar());
2341 Name name = readName(nextChar());
2342 Type type = readType(nextChar());
2351 long flags = adjustMethodFlags(nextChar());
2352 Name name = readName(nextChar());
2353 Type type = readType(nextChar());
2523 char ac = nextChar();
2532 int n = nextChar();
2534 nextChar();
2535 nextChar();
2536 nextChar();
2537 nextChar();
2580 long f = nextChar();
2586 ClassSymbol self = readClassSymbol(nextChar());
2599 int this_class = nextChar();
2606 nextChar();
2607 char interfaceCount = nextChar();
2609 char fieldCount = nextChar();
2611 char methodCount = nextChar();
2622 int n = nextChar();
2630 n = nextChar();
2633 Type _inter = readClassSymbol(nextChar()).erasure(types);
2639 Assert.check(fieldCount == nextChar());
2641 Assert.check(methodCount == nextChar());
2651 int n = nextChar();
2653 nextChar(); // skip inner class symbol
2654 ClassSymbol outer = readClassSymbol(nextChar());
2655 Name name = readName(nextChar());
2657 long flags = adjustClassFlags(nextChar());
2682 minorVersion = nextChar();
2683 majorVersion = nextChar();