bugged stringlengths 6 599k | fixed stringlengths 6 40.8M | __index_level_0__ int64 0 3.24M |
|---|---|---|
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,178 |
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,179 |
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,180 |
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,181 |
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,182 |
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,183 |
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,184 |
private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | private int readCharData(String prefix) throws IOException, XMLStreamException { boolean white = true; buf.setLength(0); if (prefix != null) buf.append(prefix); boolean done = false; boolean entities = false; //System.out.println("readCharData input="+input.name+" line="+input.line+" col="+... | 21,185 |
private char[] readCharacterRef(int base) throws IOException, XMLStreamException { StringBuffer b = new StringBuffer(); for (char c = readCh(); c != ';' && c != '\uffff'; c = readCh()) b.append(c); try { int ord = Integer.parseInt(b.toString(), base); if ((ord < 0x20 && !(ord == 0... | private char[] readCharacterRef(int base) throws IOException, XMLStreamException { StringBuffer b = new StringBuffer(); for (char c = readCh(); c != ';' && c != '\uffff'; c = readCh()) b.append(c); try { int ord = Integer.parseInt(b.toString(), base); if ((ord < 0x20 && !(ord == 0... | 21,186 |
private char[] readCharacterRef(int base) throws IOException, XMLStreamException { StringBuffer b = new StringBuffer(); for (char c = readCh(); c != ';' && c != '\uffff'; c = readCh()) b.append(c); try { int ord = Integer.parseInt(b.toString(), base); if ((ord < 0x20 && !(ord == 0... | private char[] readCharacterRef(int base) throws IOException, XMLStreamException { StringBuffer b = new StringBuffer(); for (char c = readCh(); c != ';' && c != '\uffff'; c = readCh()) b.append(c); try { int ord = Integer.parseInt(b.toString(), base); if ((ord < 0x20 && !(ord == 0... | 21,187 |
private void readComment() throws IOException, XMLStreamException { boolean saved = expandPE; expandPE = false; buf.setLength(0); readUntil(TEST_END_COMMENT); require('>'); expandPE = saved; } | private void readComment(boolean inDTD) throws IOException, XMLStreamException { boolean saved = expandPE; expandPE = false; buf.setLength(0); readUntil(TEST_END_COMMENT); require('>'); expandPE = saved; } | 21,189 |
private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { case... | private ContentParticle readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { ... | 21,191 |
private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { case... | private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); cp.content = readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { ... | 21,192 |
private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { case... | private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { String name = readNmtoken(true); acc.append(name); cp.content = name; mark(1); char c = readCh(); ... | 21,193 |
private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { case... | private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); int c = readCh(); switch (c) { case ... | 21,194 |
private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { case... | private void readContentParticle(StringBuffer acc) throws IOException, XMLStreamException { if (tryRead('(')) { acc.append('('); readElements(acc); } else { acc.append(readNmtoken(true)); mark(1); char c = readCh(); switch (c) { case... | 21,195 |
private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY", new EmptyContentModel()); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new S... | 21,197 |
private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY", new AnyContentModel()); else { StringBuffer acc = new Str... | 21,198 |
private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | 21,199 |
private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | 21,200 |
private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | private void readContentspec(String elementName) throws IOException, XMLStreamException { if (tryRead("EMPTY")) doctype.addElementDecl(elementName, "EMPTY"); else if (tryRead("ANY")) doctype.addElementDecl(elementName, "ANY"); else { StringBuffer acc = new StringBuffer(); req... | 21,201 |
private void readDefault(String elementName, String name, String type, String enumeration) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved = expandPE; ... | private void readDefault(String elementName, String name, String type, String enumeration, HashSet values) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved =... | 21,202 |
private void readDefault(String elementName, String name, String type, String enumeration) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved = expandPE; ... | private void readDefault(String elementName, String name, String type, String enumeration) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved = expandPE; ... | 21,203 |
private void readDefault(String elementName, String name, String type, String enumeration) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved = expandPE; ... | private void readDefault(String elementName, String name, String type, String enumeration) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved = expandPE; ... | 21,204 |
private void readDefault(String elementName, String name, String type, String enumeration) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved = expandPE; ... | private void readDefault(String elementName, String name, String type, String enumeration) throws IOException, XMLStreamException { int valueType = ATTRIBUTE_DEFAULT_SPECIFIED; int flags = LIT_ATTRIBUTE; String value = null, defaultType = null; boolean saved = expandPE; ... | 21,205 |
private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | 21,206 |
private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | 21,207 |
private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | 21,208 |
private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | 21,209 |
private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | 21,210 |
private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | privatevoidreadDoctypeDecl()throwsIOException,XMLStreamException{if(!supportDTD)error("parserwasconfigurednottosupportDTDs");requireWhitespace();StringrootName=readNmtoken(true);skipWhitespace();ExternalIdsids=readExternalIds(false,true);doctype=this.newDoctype(rootName,ids.publicId,ids.systemId);//Parseinternalsubsetf... | 21,211 |
private void readDoctypeDecl() throws IOException, XMLStreamException { if (!supportDTD) error("parser was configured not to support DTDs"); requireWhitespace(); String rootName = readNmtoken(true); skipWhitespace(); ExternalIds ids = readExternalIds(false, true); doctype = this.new Do... | privatevoidreadDoctypeDecl()throwsIOException,XMLStreamException{if(!supportDTD)error("parserwasconfigurednottosupportDTDs");requireWhitespace();StringrootName=readNmtoken(true);skipWhitespace();ExternalIdsids=readExternalIds(false,true);doctype=this.newDoctype(rootName,ids.publicId,ids.systemId);//Parseinternalsubsetf... | 21,212 |
private void readElementDecl() throws IOException, XMLStreamException { requireWhitespace(); String name = readNmtoken(true); requireWhitespace(); readContentspec(name); skipWhitespace(); require('>'); //System.out.println("ElementDecl "+name); } | privatevoidreadElementDecl()throwsIOException,XMLStreamException{requireWhitespace();Stringname=readNmtoken(true);requireWhitespace();readContentspec(name);skipWhitespace();require('>');//System.out.println("ElementDecl"+name);} | 21,214 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private ElementContentModel readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': ... | 21,215 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { int separator; ElementContentModel model = new ElementContentModel(); // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); ... | 21,216 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); model.addContentParticle(readContentParticle(acc)); // End or separator skipWhitespace(); char c = readCh(); switch (c) { cas... | 21,217 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); int c = readCh(); switch (c) { case ')': acc.append(')... | 21,218 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case 0x29: acc.append(... | 21,219 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,220 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,221 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,222 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,223 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); model.addContentParticle(readContentParticle(acc)); // End or separator skipWhitespace(); char c = readCh(); switch (c) { cas... | 21,224 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,225 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,226 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,227 |
private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | private void readElements(StringBuffer acc) throws IOException, XMLStreamException { char separator; // Parse first content particle skipWhitespace(); readContentParticle(acc); // End or separator skipWhitespace(); char c = readCh(); switch (c) { case ')': acc.append('... | 21,228 |
private void readEndElement() throws IOException, XMLStreamException { //System.err.println("readEndElement"); // pop element off stack String expected = (String) stack.removeLast(); require(expected); skipWhitespace(); require('>'); // Make element name available buf.setLength(0); buf.... | privatevoidreadEndElement()throwsIOException,XMLStreamException{//System.err.println("readEndElement");//popelementoffstackStringexpected=(String)stack.removeLast();require(expected);skipWhitespace();require('>');//Makeelementnameavailablebuf.setLength(0);buf.append(expected);} | 21,230 |
private void readEntityDecl(boolean inExternalSubset) throws IOException, XMLStreamException { int flags = 0; // Check if parameter entity boolean peFlag = false; expandPE = false; requireWhitespace(); if (tryRead('%')) { peFlag = true; requireWhitespace(); } expandPE ... | private void readEntityDecl(boolean inExternalSubset) throws IOException, XMLStreamException { int flags = 0; // Check if parameter entity boolean peFlag = false; expandPE = false; requireWhitespace(); if (tryRead('%')) { peFlag = true; requireWhitespace(); } expandPE ... | 21,232 |
private void readEntityDecl(boolean inExternalSubset) throws IOException, XMLStreamException { int flags = 0; // Check if parameter entity boolean peFlag = false; expandPE = false; requireWhitespace(); if (tryRead('%')) { peFlag = true; requireWhitespace(); } expandPE ... | private void readEntityDecl(boolean inExternalSubset) throws IOException, XMLStreamException { int flags = 0; // Check if parameter entity boolean peFlag = false; expandPE = false; requireWhitespace(); if (tryRead('%')) { peFlag = true; requireWhitespace(); } expandPE ... | 21,233 |
private void readEntityDecl(boolean inExternalSubset) throws IOException, XMLStreamException { int flags = 0; // Check if parameter entity boolean peFlag = false; expandPE = false; requireWhitespace(); if (tryRead('%')) { peFlag = true; requireWhitespace(); } expandPE ... | private void readEntityDecl(boolean inExternalSubset) throws IOException, XMLStreamException { int flags = 0; // Check if parameter entity boolean peFlag = false; expandPE = false; requireWhitespace(); if (tryRead('%')) { peFlag = true; requireWhitespace(); } expandPE ... | 21,234 |
private void readEnumeration(boolean isNames, StringBuffer acc) throws IOException, XMLStreamException { acc.append('('); // first token skipWhitespace(); acc.append(readNmtoken(isNames)); // subsequent tokens skipWhitespace(); while (!tryRead(')')) { require('|'); acc.appe... | private void readEnumeration(boolean isNames, StringBuffer acc, HashSet values) throws IOException, XMLStreamException { acc.append('('); // first token skipWhitespace(); acc.append(readNmtoken(isNames)); // subsequent tokens skipWhitespace(); while (!tryRead(')')) { require('|');... | 21,235 |
private void readEnumeration(boolean isNames, StringBuffer acc) throws IOException, XMLStreamException { acc.append('('); // first token skipWhitespace(); acc.append(readNmtoken(isNames)); // subsequent tokens skipWhitespace(); while (!tryRead(')')) { require('|'); acc.appe... | private void readEnumeration(boolean isNames, StringBuffer acc) throws IOException, XMLStreamException { acc.append('('); // first token skipWhitespace(); String token = readNmtoken(isNames); acc.append(token); values.add(token); // subsequent tokens skipWhitespace(); while (!tryRead(')')) ... | 21,236 |
private void readEnumeration(boolean isNames, StringBuffer acc) throws IOException, XMLStreamException { acc.append('('); // first token skipWhitespace(); acc.append(readNmtoken(isNames)); // subsequent tokens skipWhitespace(); while (!tryRead(')')) { require('|'); acc.appe... | private void readEnumeration(boolean isNames, StringBuffer acc) throws IOException, XMLStreamException { acc.append('('); // first token skipWhitespace(); token = readNmtoken(isNames); if (validating && values.contains(token)) error("duplicate token", token); acc.append(token); values.add(token); ... | 21,237 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { int c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.publ... | 21,238 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,239 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,240 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,241 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,242 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,243 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,244 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,245 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,246 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,247 |
private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | private ExternalIds readExternalIds(boolean inNotation, boolean isSubset) throws IOException, XMLStreamException { char c; int flags = LIT_DISABLE_CREF | LIT_DISABLE_PE | LIT_DISABLE_EREF; ExternalIds ids = new ExternalIds(); if (tryRead("PUBLIC")) { requireWhitespace(); ids.pub... | 21,248 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags, boolean recognizePEs) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) ... | 21,249 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,250 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,251 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,252 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,253 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,254 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,255 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,256 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,257 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,258 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,259 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,260 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,261 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,262 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,263 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,264 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,265 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,266 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,267 |
private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | private String readLiteral(int flags) throws IOException, XMLStreamException { boolean saved = expandPE; char delim = readCh(); if (delim != '\'' && delim != '"') error("expected '\"' or \"'\"", new Character(delim)); literalBuf.setLength(0); if ((flags & LIT_DISABLE_PE) != 0) expandPE = ... | 21,268 |
private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | 21,269 |
private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | 21,270 |
private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | 21,271 |
private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | 21,272 |
private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | 21,273 |
private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | 21,274 |
private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | private void readMarkupdecl(boolean inExternalSubset) throws IOException, XMLStreamException { boolean saved = expandPE; mark(1); require('<'); reset(); expandPE = false; if (tryRead(TEST_ELEMENT_DECL)) { expandPE = saved; readElementDecl(); } else if (tryRead(TEST_ATT... | 21,275 |
private String readNmtoken(boolean isName) throws IOException, XMLStreamException { nmtokenBuf.setLength(0); char c = readCh(); if (isName) { if (!isNameStartCharacter(c)) error("not a name start character", "U+" + Integer.toHexString(c)); } else { ... | private String readNmtoken(boolean isName) throws IOException, XMLStreamException { nmtokenBuf.setLength(0); char c = readCh(); if (isName) { if (!isNameStartCharacter(c)) error("not a name start character", "U+" + Integer.toHexString(c)); } else { ... | 21,276 |
private void readNotationType(StringBuffer acc) throws IOException, XMLStreamException { requireWhitespace(); require('('); readEnumeration(true, acc); } | private void readNotationType(StringBuffer acc, HashSet values) throws IOException, XMLStreamException { requireWhitespace(); require('('); readEnumeration(true, acc); } | 21,278 |
private void readNotationType(StringBuffer acc) throws IOException, XMLStreamException { requireWhitespace(); require('('); readEnumeration(true, acc); } | private void readNotationType(StringBuffer acc) throws IOException, XMLStreamException { requireWhitespace(); require('('); readEnumeration(true, acc, values); } | 21,279 |
private void readPI() throws IOException, XMLStreamException { boolean saved = expandPE; expandPE = false; piTarget = readNmtoken(true); if (piTarget.indexOf(':') != -1) error("illegal character in PI target", new Character(':')); if ("xml".equalsIgnoreCase(piTarget)) error("illegal PI ta... | private void readPI(boolean inDTD) throws IOException, XMLStreamException { boolean saved = expandPE; expandPE = false; piTarget = readNmtoken(true); if (piTarget.indexOf(':') != -1) error("illegal character in PI target", new Character(':')); if ("xml".equalsIgnoreCase(piTarget)) error("... | 21,280 |
private int readStartElement() throws IOException, XMLStreamException { //System.err.println("readStartElement"); // Read element name String elementName = readNmtoken(true); attrs.clear(); // Push namespace context if (namespaceAware) { if (":".equals(elementName)) error("X... | privateintreadStartElement()throwsIOException,XMLStreamException{//System.err.println("readStartElement");//ReadelementnameStringelementName=readNmtoken(true);attrs.clear();//Pushnamespacecontextif(namespaceAware){if(":".equals(elementName))error("XMLNamespacesforbidsnamesconsistingofasinglecolon");namespaces.addFirst(... | 21,282 |
private int readStartElement() throws IOException, XMLStreamException { //System.err.println("readStartElement"); // Read element name String elementName = readNmtoken(true); attrs.clear(); // Push namespace context if (namespaceAware) { if (":".equals(elementName)) error("X... | private int readStartElement() throws IOException, XMLStreamException { //System.err.println("readStartElement"); // Read element name String elementName = readNmtoken(true); attrs.clear(); // Push namespace context if (namespaceAware) { if (":".equals(elementName)) error("X... | 21,283 |
private int readStartElement() throws IOException, XMLStreamException { //System.err.println("readStartElement"); // Read element name String elementName = readNmtoken(true); attrs.clear(); // Push namespace context if (namespaceAware) { if (":".equals(elementName)) error("X... | private int readStartElement() throws IOException, XMLStreamException { //System.err.println("readStartElement"); // Read element name String elementName = readNmtoken(true); attrs.clear(); // Push namespace context if (namespaceAware) { if (":".equals(elementName)) error("X... | 21,284 |
private int readStartElement() throws IOException, XMLStreamException { //System.err.println("readStartElement"); // Read element name String elementName = readNmtoken(true); attrs.clear(); // Push namespace context if (namespaceAware) { if (":".equals(elementName)) error("X... | private int readStartElement() throws IOException, XMLStreamException { //System.err.println("readStartElement"); // Read element name String elementName = readNmtoken(true); attrs.clear(); // Push namespace context if (namespaceAware) { if (":".equals(elementName)) error("X... | 21,285 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.