/plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/happyworm/jPlayer/ |
H A D | JplayerEvent.as | 20 public static const JPLAYER_READY:String = "jPlayer_ready"; 24 public static const JPLAYER_CLICK:String = "jPlayer_click"; 25 public static const JPLAYER_ERROR:String = "jPlayer_error"; 28 public static const JPLAYER_LOADSTART:String = "jPlayer_loadstart"; 29 public static const JPLAYER_PROGRESS:String = "jPlayer_progress"; 34 public static const JPLAYER_PLAY:String = "jPlayer_play"; 35 public static const JPLAYER_PAUSE:String = "jPlayer_pause"; 42 public static const JPLAYER_SEEKING:String = "jPlayer_seeking"; 43 public static const JPLAYER_SEEKED:String = "jPlayer_seeked"; 45 public static const JPLAYER_ENDED:String = "jPlayer_ended"; [all …]
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/ |
H A D | WebDriverExpectedCondition.php | 41 * @return static Condition returns whether current page title equals given string. 43 public static function titleIs($title) 45 return new static( 56 * @return static Condition returns whether current page title contains given string. 58 public static function titleContains($title) 60 return new static( 71 * @return static Condition returns whether current page title matches the regular expression. 73 public static function titleMatches($titleRegexp) 75 return new static( 86 * @return static Conditio [all...] |
H A D | WebDriverBy.php | 50 * @return static 52 public static function className($class_name) 54 return new static('class name', $class_name); 61 * @return static 63 public static function cssSelector($css_selector) 65 return new static('css selector', $css_selector); 72 * @return static 74 public static function id($id) 76 return new static('id', $id); 83 * @return static [all...] |
/plugin/authgooglesheets/vendor/psr/http-message/src/ |
H A D | UriInterface.php | 188 * @return static A new instance with the specified scheme. 205 * @return static A new instance with the specified user information. 218 * @return static A new instance with the specified host. 237 * @return static A new instance with the specified port. 261 * @return static A new instance with the specified path. 278 * @return static A new instance with the specified query string. 295 * @return static A new instance with the specified fragment.
|
H A D | ServerRequestInterface.php | 83 * @return static 121 * @return static 147 * @return static 193 * @return static 242 * @return static 258 * @return static
|
H A D | MessageInterface.php | 39 * @return static 129 * @return static 147 * @return static 162 * @return static 183 * @return static
|
H A D | RequestInterface.php | 59 * @return static 82 * @return static 126 * @return static
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/ |
H A D | MethodDeclarationSniff.php | 72 $static = 0; 84 $static = $prefix; 128 if ($static !== 0 && $static < $visibility) { 130 $fix = $phpcsFile->addFixableError($error, $static, 'StaticBeforeVisibility'); 132 $fixes[$static] = ''; 133 $fixes[($static + 1)] = '';
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/ |
H A D | Method.php | 46 $static = false, argument 50 Assert::boolean($static); 59 $this->isStatic = $static; 125 list(, $static, $returnType, $methodName, $arguments, $description) = $matches; 127 $static = $static === 'static'; 158 return new static($methodName, $arguments, $returnType, $static, $description);
|
/plugin/syntaxhighlighter3/sxh3/tests/ |
H A D | tasks.coffee | 9 app.use express.static __dirname + '/' 11 app.use '/src', express.static __dirname + '/../src' 12 app.use '/pkg', express.static __dirname + '/../pkg' 13 app.use '/components', express.static __dirname + '/../components'
|
/plugin/authgooglesheets/vendor/psr/cache/src/ |
H A D | CacheItemInterface.php | 72 * @return static 86 * @return static 101 * @return static
|
/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/ |
H A D | Dsn.php | 38 * @return static 66 * @return static 77 * @return static
|
H A D | Url.php | 54 * @return static 70 * @return static 86 * @return static
|
H A D | UserPasswordTrait.php | 36 * @return static 52 * @return static
|
H A D | Path.php | 42 * @return static 59 * @return static
|
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/ |
H A D | EditorActions.java.bak | 221 public static class ExitAction extends AbstractAction { 311 public static class GridStyleAction extends AbstractAction { 368 public static class ScaleAction extends AbstractAction { 440 public static class PrintAction extends AbstractAction { 471 private static final String DIAGRAM_EXTENSION = ".mxe"; 482 public static class SaveAction extends AbstractAction { 1300 public static class NewAction extends AbstractAction { 1327 public static class OpenAction extends AbstractAction { 1383 public static class ToggleAction extends AbstractAction { 1644 public static class ColorAction extends AbstractAction { [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/ |
H A D | Integer.php | 167 * @return static 185 * @return static 203 * @return static 215 * @return static 228 * @return static 242 * @return static|false 305 * @return static
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/ |
H A D | README.md | 313 `public static function toString(MessageInterface $message): string` 334 `public static function rewindBody(MessageInterface $message): void` 344 `public static function parseMessage(string $message): array` 362 `public static function parseRequest(string $message): Request` 369 `public static function parseResponse(string $message): Response` 376 `public static function parse(string|array $header): array` 386 `public static function normalize(string|array $header): array` 606 `public static function isAbsolute(UriInterface $uri): bool` 645 `public static function isDefaultPort(UriInterface $uri): bool` 660 `public static function fromParts(array $parts): UriInterface` [all …]
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/ |
H A D | phpstan.neon | 5 - '#Unsafe usage of new static\(\)#' 6 - '#Call to static method performRequest\(\) on trait#'
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ |
H A D | MethodNode.php | 27 private $static = false; variable in Prophecy\\Doubler\\Generator\\Node\\MethodNode 79 public function setStatic($static = true) argument 81 $this->static = (bool) $static;
|
/plugin/routeplaner/ |
H A D | style.css | 17 background-image: url(http://static.lycos-europe.net/de/i_slim/button_left.gif); 20 div.button .btnright{background-image: url(http://static.lycos-europe.net/de/i_slim/button_right.gi… 24 background-image: url(http://static.lycos-europe.net/de/i_slim/button_center.gif);
|
/plugin/bureaucracy-au/_test/ |
H A D | input.txt | 16 static "HTML check 4 <bold>bang</bold>" 21 static "Some static text that could be an agreement"
|
/plugin/bureaucracyau/_test/ |
H A D | input.txt | 16 static "HTML check 4 <bold>bang</bold>" 21 static "Some static text that could be an agreement"
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/ |
H A D | FirefoxDriver.php | 20 * @return static 22 public static function start(DesiredCapabilities $capabilities = null) 26 return static::startUsingDriverService($service, $capabilities); 35 * @return static 37 public static function startUsingDriverService( 59 return new static($executor, $sessionId, $returnedCapabilities, true);
|
/plugin/combo/resources/theme/default/components/css/ |
H A D | position.css | 1 .position-static { 2 position: static!important
|