Lines Matching refs:content
1238 private string content; variable
1255 this(string content) @safe pure in this() argument
1259 if (content == "-" || content.indexOf("--") != -1) in this()
1260 throw new CommentException(content); in this()
1261 this.content = content; in this()
1277 return t !is null && content == t.content; in opEquals()
1296 return t !is null && (content != t.content in opCmp()
1297 ? (content < t.content ? -1 : 1 ) : 0 ); in opCmp()
1306 override size_t toHash() scope const nothrow { return hash(content); } in toHash()
1311 override string toString() scope const @safe pure nothrow { return "<!--" ~ content ~ "-->"; } in toString()
1320 assert(c.content == "==");
1329 private string content; variable
1345 this(string content) @safe pure in this() argument
1348 if (content.indexOf("]]>") != -1) throw new CDataException(content); in this()
1349 this.content = content; in this()
1365 return t !is null && content == t.content; in opEquals()
1384 return t !is null && (content != t.content in opCmp()
1385 ? (content < t.content ? -1 : 1 ) : 0 ); in opCmp()
1394 override size_t toHash() scope const nothrow { return hash(content); } in toHash()
1399 override string toString() scope const @safe pure nothrow { return cdata ~ content ~ "]]>"; } in toString()
1409 private string content; variable
1424 this(string content) @safe pure in this() argument
1426 this.content = encode(content); in this()
1442 return t !is null && content == t.content; in opEquals()
1462 && (content != t.content ? (content < t.content ? -1 : 1 ) : 0 ); in opCmp()
1471 override size_t toHash() scope const nothrow { return hash(content); } in toHash()
1476 override string toString() scope const @safe @nogc pure nothrow { return content; } in toString()
1481 …override @property @safe @nogc pure nothrow scope bool isEmptyXML() const { return content.length … in isEmptyXML()
1489 private string content; variable
1505 this(string content) @safe pure in this() argument
1508 if (content.indexOf(">") != -1) throw new XIException(content); in this()
1509 this.content = content; in this()
1525 return t !is null && content == t.content; in opEquals()
1545 && (content != t.content ? (content < t.content ? -1 : 1 ) : 0 ); in opCmp()
1554 override size_t toHash() scope const nothrow { return hash(content); } in toHash()
1559 override string toString() scope const @safe pure nothrow { return "<!" ~ content ~ ">"; } in toString()
1569 private string content; variable
1585 this(string content) @safe pure in this() argument
1588 if (content.indexOf("?>") != -1) throw new PIException(content); in this()
1589 this.content = content; in this()
1605 return t !is null && content == t.content; in opEquals()
1625 && (content != t.content ? (content < t.content ? -1 : 1 ) : 0 ); in opCmp()
1634 override size_t toHash() scope const nothrow { return hash(content); } in toHash()
1639 override string toString() scope const @safe pure nothrow { return "<?" ~ content ~ "?>"; } in toString()