Home
last modified time | relevance | path

Searched refs:tagStartPos (Results 1 – 8 of 8) sorted by relevance

/dports/www/jericho-html/jericho-html-3.2/test/src/net/htmlparser/jericho/
H A DStreamedParseTextTest.java24 int tagStartPos=streamedParseText.indexOf('<',0); in testExpandableBuffer() local
25 streamedText.setMinRequiredBufferBegin(tagStartPos); in testExpandableBuffer()
26 assertEquals(26,tagStartPos); in testExpandableBuffer()
80 int tagStartPos=streamedParseText.indexOf('<',15); in testCharBuffer() local
81 assertEquals(-1,tagStartPos); in testCharBuffer()
94 tagStartPos=streamedParseText.indexOf('<',15); in testCharBuffer()
95 assertEquals(26,tagStartPos); in testCharBuffer()
96 streamedText.setMinRequiredBufferBegin(tagStartPos); in testCharBuffer()
/dports/www/mediawiki135/mediawiki-1.35.5/includes/parser/
H A DPreprocessor_Hash.php404 $tagStartPos = $i;
433 substr( $text, $tagStartPos, $tagEndPos + 1 - $tagStartPos ) );
442 $accum[] = [ 'ignore', [ substr( $text, $tagStartPos, $i - $tagStartPos ) ] ];
/dports/www/mediawiki137/mediawiki-1.37.1/includes/parser/
H A DPreprocessor_Hash.php418 $tagStartPos = $i;
447 substr( $text, $tagStartPos, $tagEndPos + 1 - $tagStartPos ) );
456 $accum[] = [ 'ignore', [ substr( $text, $tagStartPos, $i - $tagStartPos ) ] ];
/dports/www/mediawiki136/mediawiki-1.36.3/includes/parser/
H A DPreprocessor_Hash.php418 $tagStartPos = $i;
447 substr( $text, $tagStartPos, $tagEndPos + 1 - $tagStartPos ) );
456 $accum[] = [ 'ignore', [ substr( $text, $tagStartPos, $i - $tagStartPos ) ] ];
/dports/www/mediawiki135/mediawiki-1.35.5/vendor/wikimedia/remex-html/RemexHtml/Tokenizer/
H A DTokenizer.php1564 $tagStartPos = $startPos + $textLength;
1568 $this->appropriateEndTag, true, $tagStartPos );
/dports/www/mediawiki136/mediawiki-1.36.3/vendor/wikimedia/remex-html/RemexHtml/Tokenizer/
H A DTokenizer.php1564 $tagStartPos = $startPos + $textLength;
1568 $this->appropriateEndTag, true, $tagStartPos );
/dports/www/mediawiki137/mediawiki-1.37.1/vendor/wikimedia/remex-html/src/Tokenizer/
H A DTokenizer.php1564 $tagStartPos = $startPos + $textLength;
1568 $this->appropriateEndTag, true, $tagStartPos );
/dports/editors/xmlcopyeditor/xmlcopyeditor/src/
H A Dxmlctrl.cpp649 int tagStartPos = getTagStartPos ( pos ); in handleSpace() local
650 if ( !proceed || tagStartPos == -1 ) in handleSpace()
663 wxString tag = GetTextRange ( tagStartPos, pos ); in handleSpace()