/plugin/revealjs/ |
D | example_presentation.dokuwiki | 120 <nowiki><fragment>text</fragment></nowiki> 122 <fragment>Hit the next arrow...</fragment> 124 <fragment>... to step through ...</fragment> 126 <fragment>... a</fragment> <fragment>fragmented</fragment> <fragment>slide.</fragment> 135 <fragment> 137 </fragment> 139 <fragment> 141 </fragment> 143 <fragment> 145 </fragment> [all …]
|
/plugin/combo/grammar/ |
D | PageSql.g4 | 86 fragment Letter : 'a'..'z' | 'A'..'Z'; 88 fragment HexDigit : 'a'..'f' | 'A'..'F'; 90 fragment Digit : '0'..'9' ; 92 fragment Exponent : ('e' | 'E') ( PLUS|MINUS )? (Digit)+; 94 fragment RegexComponent : 151 fragment HEX_DIGIT: [0-9a-fA-F]; 152 fragment INTEGER_LITERAL: Digit+; 153 fragment NUMERIC_LITERAL: Digit+ ('.' Digit*)?; 154 fragment ALL_LITERAL_VALUE: StringLiteral | INTEGER_LITERAL | NUMERIC_LITERAL | NULL | TRUE 159 fragment ANY_NAME: SqlName | StringLiteral | LPAREN ANY_NAME RPAREN; [all …]
|
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/ |
D | Uri.php | 50 private $fragment = ''; variable in OAuth\\Common\\Http\\Uri\\Uri 110 $this->fragment = isset($uriParts['fragment']) ? $uriParts['fragment'] : ''; 205 return $this->fragment; 258 if (!empty($this->fragment)) { 259 $uri .= "#{$this->fragment}"; 301 if (!empty($this->fragment)) { 302 $uri .= "#{$this->fragment}"; 345 * @param string $fragment 347 public function setFragment($fragment) argument 349 $this->fragment = $fragment;
|
D | UriFactoryInterface.php | 37 * @param string $fragment 41 …unction createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = ''); argument
|
D | UriFactory.php | 53 * @param string $fragment 57 …function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '') argument 66 $uri->setFragment($fragment);
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/ |
D | Uri.php | 50 private $fragment = ''; variable in OAuth\\Common\\Http\\Uri\\Uri 110 $this->fragment = isset($uriParts['fragment']) ? $uriParts['fragment'] : ''; 205 return $this->fragment; 258 if (!empty($this->fragment)) { 259 $uri .= "#{$this->fragment}"; 301 if (!empty($this->fragment)) { 302 $uri .= "#{$this->fragment}"; 345 * @param string $fragment 347 public function setFragment($fragment) argument 349 $this->fragment = $fragment;
|
D | UriFactoryInterface.php | 37 * @param string $fragment 41 …unction createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = ''); argument
|
D | UriFactory.php | 53 * @param string $fragment 57 …function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '') argument 66 $uri->setFragment($fragment);
|
/plugin/combo/ComboStrap/ |
D | PermalinkTag.php | 55 $fragment = $attributes->getValueAndRemoveIfPresent(self::FRAGMENT_ATTRIBUTE); 75 if ($fragment !== null) { 76 $fragment = OutlineSection::textToHtmlSectionId($fragment); 77 $url->setFragment($fragment); 104 if ($fragment !== null) { 105 $fragment = OutlineSection::textToHtmlSectionId($fragment); 106 $canonicalUrl->setFragment($fragment);
|
D | MarkupRef.php | 188 $fragment = substr($ref, 1); 189 if ($fragment !== "") { 190 $fragment = OutlineSection::textToHtmlSectionId($fragment); 192 $this->url = Url::createEmpty()->setFragment($fragment); 237 $fragment = null; 247 $fragment = substr($ref, $hashTagPosition + 1); 299 if ($fragment !== null) { 300 $this->url->setFragment($fragment); 337 if ($fragment !== null) { 338 $fragment = OutlineSection::textToHtmlSectionId($fragment); [all …]
|
D | InterWiki.php | 27 private ?string $fragment = null; variable in ComboStrap\\InterWiki 48 $this->fragment = substr($hash, 1); 101 if ($this->fragment !== null) { 102 $interWikiUrlTemplate = "$interWikiUrlTemplate#$this->fragment"; 169 if ($this->fragment) $interWikiUrlTemplate .= '#' . rawurlencode($this->fragment);
|
D | FetcherPdf.php | 17 $fragment = $url->getFragment(); 18 $fragments = explode($fragment, "=");
|
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
D | URI.php | 46 public $fragment; variable in HTMLPurifier_URI 55 * @param string $fragment 58 public function __construct($scheme, $userinfo, $host, $port, $path, $query, $fragment) argument 66 $this->fragment = $fragment; 209 if (!is_null($this->fragment)) { 210 $this->fragment = $qf_encoder->encode($this->fragment); 254 if (!is_null($this->fragment)) { 255 $result .= '#' . $this->fragment;
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
D | Uri.php | 61 private $fragment = ''; variable in GuzzleHttp\\Psr7\\Uri 128 $this->fragment 152 * @param string $fragment 158 public static function composeComponents($scheme, $authority, $path, $query, $fragment) argument 177 if ($fragment != '') { 178 $uri .= '#' . $fragment; 469 return $this->fragment; 566 public function withFragment($fragment) argument 568 $fragment = $this->filterQueryAndFragment($fragment); 570 if ($this->fragment === $fragment) { [all …]
|
/plugin/aichat/vendor/vanderlee/php-sentence/src/ |
D | Sentence.php | 240 foreach ($fragments as $fragment) { 241 $is_abbreviation = self::isAbreviation($fragment); 245 $fragment = $previous_fragment . $fragment; 247 $return_fragment[$i] = $fragment; 250 $previous_fragment = $fragment; 268 private static function isAbreviation($fragment) argument 270 $words = mb_split('\s+', Multibyte::trim($fragment)); 276 $last_is_abbreviation = mb_substr(Multibyte::trim($fragment), -1) === '.';
|
/plugin/icalevents/vendor/sabre/uri/tests/ |
D | ParseTest.php | 54 'fragment' => 'test' 81 'fragment' => null, 95 'fragment' => 'test' 107 'fragment' => null, 171 'fragment' => null,
|
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/ |
D | Uri.php | 75 private $fragment = ''; variable in GuzzleHttp\\Psr7\\Uri 142 $this->fragment 167 …nents(?string $scheme, ?string $authority, string $path, ?string $query, ?string $fragment): string argument 190 if ($fragment != '') { 191 $uri .= '#'.$fragment; 415 return $this->fragment; 518 public function withFragment($fragment): UriInterface argument 520 $fragment = $this->filterQueryAndFragment($fragment); 522 if ($this->fragment === $fragment) { 527 $new->fragment = $fragment; [all …]
|
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/ |
D | backbone.js | 1526 Backbone.history.route(route, function(fragment) { argument 1527 var args = router._extractParameters(route, fragment); 1544 navigate: function(fragment, options) { argument 1545 Backbone.history.navigate(fragment, options); 1576 _extractParameters: function(route, fragment) { argument 1577 var params = route.exec(fragment).slice(1); 1641 decodeFragment: function(fragment) { argument 1642 return decodeURI(fragment.replace(/%25/g, '%2525')); 1668 getFragment: function(fragment) { argument 1669 if (fragment == null) { [all …]
|
/plugin/revealjs/css/ |
D | reveal.css | 30 .reveal .slides section .fragment { 34 .reveal .slides section .fragment.visible { 38 .reveal .slides section .fragment.grow { 41 .reveal .slides section .fragment.grow.visible { 45 .reveal .slides section .fragment.shrink { 48 .reveal .slides section .fragment.shrink.visible { 52 .reveal .slides section .fragment.zoom-in { 55 .reveal .slides section .fragment.zoom-in.visible { 59 .reveal .slides section .fragment.fade-out { 62 .reveal .slides section .fragment.fade-out.visible { [all …]
|
D | reveal.scss | 38 .reveal .slides section .fragment { class 49 .reveal .slides section .fragment.grow { class 58 .reveal .slides section .fragment.shrink { class 67 .reveal .slides section .fragment.zoom-in { class 75 .reveal .slides section .fragment.fade-out { class 85 .reveal .slides section .fragment.semi-fade-out { class 95 .reveal .slides section .fragment.strike { class 104 .reveal .slides section .fragment.fade-up { class 112 .reveal .slides section .fragment.fade-down { class 120 .reveal .slides section .fragment.fade-right { class [all …]
|
/plugin/openid/Auth/OpenID/ |
D | URINorm.php | 243 $fragment = $uri_matches[8]; 244 if ($fragment === null) { 245 $fragment = ''; 248 return $scheme . '://' . $authority . $path . $query . $fragment;
|
/plugin/fedauth/Auth/OpenID/ |
D | URINorm.php | 241 $fragment = $uri_matches[8]; 242 if ($fragment === null) { 243 $fragment = ''; 246 return $scheme . '://' . $authority . $path . $query . $fragment;
|
/plugin/authgooglesheets/vendor/psr/http-message/src/ |
D | UriInterface.php | 294 * @param string $fragment The fragment to use with the new instance. 297 public function withFragment($fragment); argument
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
D | json.worker.js | 1 …fragment=e.fragment||h):(this.scheme=function(e,t){return e||t?e:"file"}(e,o),this.authority=t||h,… property
|
/plugin/dirtylittlehelper/mermaid/editor/ |
D | json.worker.js | 1 …fragment=e.fragment||h):(this.scheme=function(e,t){return e||t?e:"file"}(e,o),this.authority=t||h,… property
|