Lines Matching refs:prototype

136 Markdown_Parser.prototype.init = function() {
199 Markdown_Parser.prototype.__wrapSTXETX__ = function(text) {
209 Markdown_Parser.prototype.__unwrapSTXETX__ = function(text) {
218 Markdown_Parser.prototype._php_preg_quote = function(text) {
225 Markdown_Parser.prototype._php_str_repeat = function(str, n) {
233 Markdown_Parser.prototype._php_trim = function(target, charlist) {
240 Markdown_Parser.prototype._php_rtrim = function(target, charlist) {
247 Markdown_Parser.prototype._php_htmlspecialchars_ENT_NOQUOTES = function(str) {
256 Markdown_Parser.prototype.setup = function() {
269 Markdown_Parser.prototype.teardown = function() {
279 Markdown_Parser.prototype.transform = function(text) {
320 Markdown_Parser.prototype.hashHTMLBlocks = function(text) {
476 Markdown_Parser.prototype.hashPart = function(text, boundary) {
496 Markdown_Parser.prototype.hashBlock = function(text) {
504 Markdown_Parser.prototype.stripLinkDefinitions = function(text) {
546 Markdown_Parser.prototype.runBlockGamut = function(text) {
561 Markdown_Parser.prototype.runBasicBlockGamut = function(text) {
579 Markdown_Parser.prototype.doHorizontalRules = function(text) {
599 Markdown_Parser.prototype.runSpanGamut = function(text) {
615 Markdown_Parser.prototype.doHardBreaks = function(text) {
627 Markdown_Parser.prototype.doAnchors = function(text) {
767 Markdown_Parser.prototype.doImages = function(text) {
869 Markdown_Parser.prototype.doHeaders = function(text) {
917 Markdown_Parser.prototype.doLists = function(text) {
1000 Markdown_Parser.prototype.processListItems = function(list_str, marker_any_re) {
1070 Markdown_Parser.prototype.doCodeBlocks = function(text) {
1105 Markdown_Parser.prototype.makeCodeSpan = function(code) {
1114 Markdown_Parser.prototype.prepareItalicsAndBold = function() {
1141 Markdown_Parser.prototype.doItalicsAndBold = function(text) {
1287 Markdown_Parser.prototype.doBlockQuotes = function(text) {
1323 Markdown_Parser.prototype.formParagraphs = function(text) {
1407 Markdown_Parser.prototype.encodeAttribute = function(text) {
1418 Markdown_Parser.prototype.encodeAmpsAndAngles = function(text) {
1432 Markdown_Parser.prototype.doAutoLinks = function(text) {
1484 Markdown_Parser.prototype.encodeEmailAddress = function(addr) {
1565 Markdown_Parser.prototype.parseSpan = function(str) {
1627 Markdown_Parser.prototype.handleSpanToken = function(token, str) {
1649 Markdown_Parser.prototype.outdent = function(text) {
1661 Markdown_Parser.prototype.detab = function(text) {
1685 Markdown_Parser.prototype.unhash = function(text) {
1775 MarkdownExtra_Parser.prototype = new Markdown_Parser();
1780 MarkdownExtra_Parser.prototype.setup = function() {
1781 this.constructor.prototype.setup.call(this);
1802 MarkdownExtra_Parser.prototype.teardown = function() {
1808 this.constructor.prototype.teardown.call(this);
1827 MarkdownExtra_Parser.prototype.hashHTMLBlocks = function(text) {
1862 MarkdownExtra_Parser.prototype._hashHTMLBlocks_inMarkdown = function(text, indent, enclosing_tag_re…
2089 MarkdownExtra_Parser.prototype._hashHTMLBlocks_inHTML = function(text, hash_method, md_attr) {
2268 MarkdownExtra_Parser.prototype.hashClean = function(text) {
2276 MarkdownExtra_Parser.prototype.doHeaders = function(text) {
2337 MarkdownExtra_Parser.prototype.doTables = function(text) {
2473 MarkdownExtra_Parser.prototype.doDefLists = function(text) {
2539 MarkdownExtra_Parser.prototype.processDefListItems = function(list_str) {
2619 MarkdownExtra_Parser.prototype.doFencedCodeBlocks = function(text) {
2663 MarkdownExtra_Parser.prototype.formParagraphs = function(text) {
2710 MarkdownExtra_Parser.prototype.stripFootnotes = function(text) {
2743 MarkdownExtra_Parser.prototype.doFootnotes = function(text) {
2753 MarkdownExtra_Parser.prototype.appendFootnotes = function(text) {
2847 MarkdownExtra_Parser.prototype.stripAbbreviations = function(text) {
2871 MarkdownExtra_Parser.prototype.doAbbreviations = function(text) {