Home
last modified time | relevance | path

Searched refs:aMatch (Results 1 – 9 of 9) sorted by relevance

/plugin/diff/
Dsyntax.php315 function handle($aMatch, $aState, $aPos, &$aHandler) { argument
317 $aMatch = explode('>', $aMatch, 2);
318 if ("\n" != $aMatch[1]{0}) {
321 $aMatch[1] = "\n" . $aMatch[1];
326 $aMatch[0] = strtolower(trim($aMatch[0])) . '?';
327 switch ($aMatch[0] = $aMatch[0]{0}) {
336 $aMatch[0] = 'n';
341 $aMatch[1])) {
342 $aMatch[0] = 'c';
345 $aMatch[1])) {
[all …]
/plugin/lang/
Dsyntax.php160 function handle($aMatch, $aState, $aPos, &$aHandler) { argument
165 if (preg_match('|\s+([a-z]{2,3})\s*>|i', $aMatch, $hits)) {
170 $aMatch, $hits)) {
174 if (preg_match('|\s+([ix]\-[a-z0-9]{2,})\s*>|i', $aMatch, $hits)) {
178 if (preg_match('|\s+([a-z]{2,3})\-.*\s*>|i', $aMatch, $hits)) {
185 return array($aState, $aMatch);
/plugin/code2/
Dsyntax.php576 $aMatch[1] = '';
580 $aMatch[1] .= @fread($handle, 0x8000);
584 $aMatch = array($l,
589 $aMatch = array($l,
594 $aMatch = array($l, 'Invalid URL: ' . $n[1]);
597 $aMatch = array($l, 'Missing URL: ' . $aMatch[1]);
602 $aMatch[1] = preg_replace(
607 str_replace("\t", ' ', $aMatch[1])));
679 $aMatch[0], $hits)) {
735 if ("\n" != $aMatch[1]{0}) {
[all …]
/plugin/tip/
Dsyntax.php217 function handle($aMatch, $aState, $aPos, &$aHandler) { argument
224 $aMatch = preg_split('|\s+|', substr($aMatch, 4),
226 while (list($i, $arg) = each($aMatch)) {
249 return array(DOKU_LEXER_UNMATCHED, $aMatch);
/plugin/lists/
Dsyntax.php207 if (preg_match('|\n*((\s*)(.))|', $aMatch, $hits)) {
211 return array($aState, $aMatch);
214 if (preg_match('|^\s*\x3C$|', $aMatch, $hits)) {
217 if (preg_match('|(.*?)\s+\x3C$|s', $aMatch, $hits)) {
222 if (preg_match('|(.*[^\x5C])\x3C$|s', $aMatch, $hits)) {
229 str_replace('\<', '<', $aMatch)), -1);
/plugin/fckg/fckeditor/editor/dialog/fck_link/
Dfck_link.js140 var aMatch = sParams.match( /(^|^\?|&)subject=([^&]+)/i ) ;
141 if ( aMatch ) oEMailParams.Subject = decodeURIComponent( aMatch[2] ) ;
143 aMatch = sParams.match( /(^|^\?|&)body=([^&]+)/i ) ;
144 if ( aMatch ) oEMailParams.Body = decodeURIComponent( aMatch[2] ) ;
219 var aMatch = rFunc.exec( aLinkInfo[2] ) ;
220 if ( aMatch )
223 for ( var i = 1 ; i < aMatch.length ; i ++ )
226 aInfo[k[1]] = aMatch[i].replace(/###SINGLE_QUOTE###/g, '\'') ;
243 …var aMatch = aLinkInfo[2].match( /^(?:void\()?location\.href='mailto:'\+(String\.fromCharCode\([\d…
244 if ( aMatch )
[all …]
/plugin/ckgdoku/ckeditor/plugins/image/dialogs/
Dimage.js.unc26 aMatch = value.match( regexGetSize ); // Check value
27 if ( aMatch ) {
28 if ( aMatch[ 2 ] == '%' ) // % is allowed - > unlock ratio.
30 value = aMatch[ 1 ];
219 var aMatch = size.match( regexGetSize );
220 if ( aMatch ) {
221 if ( aMatch[ 2 ] == '%' ) // % is allowed.
223 aMatch[ 1 ] += '%';
226 return aMatch[ 1 ];
654 var aMatch = this.getValue().match( regexGetSizeOrEmpty ),
[all …]
/plugin/ckgedit/ckeditor/plugins/image/dialogs/
Dimage.js.unc27 aMatch = value.match( regexGetSize ); // Check value
28 if ( aMatch ) {
29 if ( aMatch[ 2 ] == '%' ) // % is allowed - > unlock ratio.
31 value = aMatch[ 1 ];
220 var aMatch = size.match( regexGetSize );
221 if ( aMatch ) {
222 if ( aMatch[ 2 ] == '%' ) // % is allowed.
224 aMatch[ 1 ] += '%';
227 return aMatch[ 1 ];
655 var aMatch = this.getValue().match( regexGetSizeOrEmpty ),
[all …]
/plugin/bomfix/
Dsyntax.php183 function handle($aMatch, $aState, $aPos, &$aHandler) { argument