Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 1527) sorted by relevance

12345678910>>...62

/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DFileAsset.php24 private $source; variable in Assetic\\Asset\\FileAsset
29 * @param string $source An absolute path
40 $sourceRoot = dirname($source);
42 $sourcePath = basename($source);
45 if (0 !== strpos($source, $sourceRoot)) {
52 $this->source = $source;
59 $source = VarUtils::resolve($this->source, $this->getVars(), $this->getValues());
61 if (!is_file($source)) {
70 $source = VarUtils::resolve($this->source, $this->getVars(), $this->getValues());
72 if (!is_file($source)) {
[all …]
/plugin/zip/pear/File/
H A DArchive.php276 return $source;
476 $source = null;
552 return $source;
579 return $source;
649 return $source;
756 return $source;
1316 $source = null;
1359 $source = null;
1385 $source->close();
1388 $source,
[all …]
/plugin/zip/pear/File/Archive/Reader/
H A DRelay.php46 var $source; variable in File_Archive_Reader_Relay
48 function File_Archive_Reader_Relay(&$source) argument
50 $this->source =& $source;
56 function next() { return $this->source->next(); }
64 function getStat() { return $this->source->getStat(); }
68 function getMime() { return $this->source->getMime(); }
88 function tell() { return $this->source->tell(); }
95 if ($this->source !== null) {
96 return $this->source->close();
104 $writer = $this->source->makeAppendWriter();
[all …]
H A DConcat.php40 var $source; variable in File_Archive_Reader_Concat
47 function File_Archive_Reader_Concat(&$source, $filename, argument
50 $this->source =& $source;
57 while (($error = $source->next()) === true) {
58 $sourceStat = $source->getStat();
81 return $this->opened = $this->source->next();
112 $sourceData = $this->source->getData(
121 $error = $this->source->next();
142 $sourceSkipped = $this->source->skip($length);
175 return $this->source->close();
[all …]
H A DDirectory.php104 while ($this->source === null ||
105 ($error = $this->source->next()) !== true) {
107 if ($this->source !== null) {
108 $this->source->close();
144 if ($source !== null && $pred->isTrue($this)) {
171 if ($this->source === null ||
172 is_a($this->source, 'File_Archive_Reader_File')) {
173 return $this->source;
175 return $this->source->getLastSource();
207 if ($this->source === null ||
[all …]
H A DArchive.php44 var $source = null; variable in File_Archive_Reader_Archive
68 if (!$this->sourceOpened && ($error = $this->source->next()) !== true) {
77 function File_Archive_Reader_Archive(&$source, $sourceOpened = false) argument
79 $this->source =& $source;
91 if ($this->source !== null) {
92 return $this->source->close();
H A DZip.php91 $error = $this->source->skip($toSkip);
101 $header = $this->source->getData(4);
107 $header = $this->source->getData(26);
423 $nbSkipped = $this->source->skip();
425 $nbSkipped -= $this->source->rewind(22) - 4;
459 $this->source->skip(12);
460 $offset = $this->source->getData(4);
469 $current = $this->source->tell();
475 $this->source->skip(12);
476 $header = $this->source->getData(16);
[all …]
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DEvent.php70 $source = new \Mock\Hoa\Event\Source()
85 $source = 'Mock\Hoa\Event\Source'
100 $source = new \Mock\Hoa\Event\Source(),
101 SUT::register($eventId, $source)
104 SUT::register($eventId, $source);
114 $source = new \StdClass()
127 $source = 'StdClass'
141 SUT::register($eventId, $source)
155 SUT::register($eventId, $source),
242 SUT::register($eventId, $source),
[all …]
H A DListener.php57 $source = new \Mock\Hoa\Event\Listenable(),
60 ->when($result = new SUT($source, $ids))
76 $source = new \Mock\Hoa\Event\Listenable(),
78 $listener = new SUT($source, ['foo', 'bar']),
175 $source = new \Mock\Hoa\Event\Listenable(),
177 $listener = new SUT($source, $ids)
198 $source = new \Mock\Hoa\Event\Listenable(),
200 $listener = new SUT($source, $ids),
213 ->isIdenticalTo($source);
231 $source = new \Mock\Hoa\Event\Listenable(),
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc51 [source,php]
64 [source,php]
77 [source,php]
90 [source,php]
103 [source,php]
118 [source,php]
131 [source,php]
144 [source,php]
157 [source,php]
170 [source,ph
[all...]
/plugin/revealjs/lib/font/source-sans-pro/
H A Dsource-sans-pro.css3 src: url('source-sans-pro-regular.eot');
5 url('source-sans-pro-regular.woff') format('woff'),
6 url('source-sans-pro-regular.ttf') format('truetype');
13 src: url('source-sans-pro-italic.eot');
15 url('source-sans-pro-italic.woff') format('woff'),
16 url('source-sans-pro-italic.ttf') format('truetype');
23 src: url('source-sans-pro-semibold.eot');
25 url('source-sans-pro-semibold.woff') format('woff'),
26 url('source-sans-pro-semibold.ttf') format('truetype');
33 src: url('source-sans-pro-semibolditalic.eot');
[all …]
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php50 "raw", // Return the source as is without converting
218 * @param string $source part of template that is wrapped
223 public function helperIf($template, $context, $args, $source) argument
225 $tpl = $template->getEngine()->loadString('{{#if ' . $args . '}}' . $source . '{{/if}}');
291 * @param string $source part of template that is wrapped
296 public function helperEach($template, $context, $args, $source) argument
386 * @param string $source part of template that is wrapped
391 public function helperUnless($template, $context, $args, $source) argument
413 * @param string $source part of template that is wrapped
418 public function helperWith($template, $context, $args, $source) argument
441 helperBindAttr($template, $context, $args, $source) global() argument
459 helperUpper($template, $context, $args, $source) global() argument
477 helperLower($template, $context, $args, $source) global() argument
495 helperCapitalize($template, $context, $args, $source) global() argument
513 helperCapitalizeWords($template, $context, $args, $source) global() argument
531 helperReverse($template, $context, $args, $source) global() argument
549 helperFormatDate($template, $context, $args, $source) global() argument
581 helperInflect($template, $context, $args, $source) global() argument
605 helperDefault($template, $context, $args, $source) global() argument
627 helperTruncate($template, $context, $args, $source) global() argument
653 helperRaw($template, $context, $args, $source) global() argument
674 helperRepeat($template, $context, $args, $source) global() argument
703 helperDefine($template, $context, $args, $source) global() argument
730 helperInvoke($template, $context, $args, $source) global() argument
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/
H A DAction.php41 public function __construct(string $opType = self::OP_TYPE_INDEX, array $metadata = [], array $source = []) argument
45 $this->setSource($source);
53 $source = $this->getSource();
54 if (\is_string($source)) {
55 $string .= $source;
56 } elseif (\is_array($source) && \array_key_exists('doc', $source) && \is_string($source['doc'])) {
57 if (isset($source['doc_as_upsert'])) {
58 $docAsUpsert = ', "doc_as_upsert": '.($source['doc_as_upser
112 setSource($source) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DCommonToken.php51 * the same source and input stream share a reference to the same
56 protected $source; variable in Antlr\\Antlr4\\Runtime\\CommonToken
94 ?Pair $source = null, argument
99 if ($source !== null && !$source->a instanceof TokenSource) {
100 throw new \RuntimeException('Unexpected token source type.');
103 if ($source !== null && !$source->b instanceof CharStream) {
107 $this->source = $source
[all...]
/plugin/codemirror/dist/modes/
H A Delm.min.js.map1source","setState","f","lowerRE","upperRE","innerRE","digitRE","hexRE","symbolRE","specialRE","spa…
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DTokenStream.php30 private $source; variable in Twig\\TokenStream
35 * @param string|null $source The source code associated with the tokens
37 public function __construct(array $tokens, $name = null, $source = null) argument
40 if (null !== $name || null !== $source) {
43 $this->source = new Source($source, $name);
45 $this->source = $name;
51 $this->filename = $this->source->getName();
105 $this->source
168 return $this->source->getName();
184 return $this->source->getCode();
[all …]
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DComponentResizer.java246 Component source = e.getComponent(); in mouseMoved() local
265 source.setCursor(sourceCursor); in mouseMoved()
270 source.setCursor(cursor); in mouseMoved()
278 sourceCursor = source.getCursor(); in mouseEntered()
286 source.setCursor(sourceCursor); in mouseExited()
305 bounds = source.getBounds(); in mousePressed()
310 if (source instanceof JComponent) { in mousePressed()
325 source.setCursor(sourceCursor); in mouseReleased()
327 if (source instanceof JComponent) { in mouseReleased()
404 source.validate(); in changeBounds()
[all …]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DEngine.php631 … 'key' => ($source instanceof Mustache_Source) ? $source->getKey() : 'source',
642 $key .= "\n" . $source;
698 * @param string $source
706 $source = $delims . "\n" . $source;
760 * @param string $source
764 private function tokenize($source) argument
774 * @param string $source
778 private function parse($source) argument
795 private function compile($source) argument
806 $source = $source->getSource();
[all …]
/plugin/zip/pear/File/Archive/Predicate/
H A DDuplicate.php59 * @param File_Archive_Reader $source The source will be inspected to find
64 function File_Archive_Predicate_Duplicate(&$source) argument
67 $source->close();
69 while ($source->next()) {
70 $filename = $source->getFilename();
71 $stat = $source->getStat();
97 function isTrue(&$source) argument
99 $filename = $source->getFilename();
100 $stat = $source->getStat();
/plugin/source/
H A Dstyle.css2 * source plugin extension - style additions
7 /* source plugin extensions */
10 div.source {
17 div.source p {
23 div.source p span {
27 div.source pre.code {
32 div.source {
37 div.source p {
41 div.source pre.code {
/plugin/farmsync/meta/
H A DMediaUpdates.php8 public function updateEntity($medium, $source, $target) { argument
10 $sourceModTime = $this->farm_util->getRemoteFilemtime($source, $medium, true);
14 $this->farm_util->saveRemoteMedia($source, $target, $medium);
25 …($this->farm_util->remoteMediaExists($source, $medium, $targetModTime) && $this->farm_util->readRe…
26 $this->farm_util->saveRemoteMedia($source, $target, $medium);
36 $result = new MediaConflict($medium, $target, $source);
44 $media = array_merge($media, $this->getDocumentsFromLine($this->source, $line));
60 * @param string $source
66 public function getDocumentsFromLine($source, $line) { argument
70 … $documentdir = dirname($this->farm_util->getRemoteMediaFilename($source, $cleanline, 0, false));
[all …]
H A DEntityUpdates.php7 protected $source; variable in dokuwiki\\plugin\\farmsync\\meta\\EntityUpdates
18 public function __construct($source, $targets, $entities) { argument
19 $this->source = $source;
32 $this->updateEntity($entity, $this->source, $target);
78 abstract protected function updateEntity($entity, $source, $target); argument
95 protected function handleStartpage($source, $page) { argument
97 if ($this->farm_util->remotePageExists($source, $page . $conf['start'])) {
100 } elseif ($this->farm_util->remotePageExists($source, $page . noNS(cleanID($page)))) {
103 } elseif ($this->farm_util->remotePageExists($source, $page)) {
/plugin/src/
H A Dstyle.css4 * source plugin extension - style additions
8 /* source plugin extensions */
11 div.source {
18 div.source p {
24 div.source p span {
28 div.source pre.code {
33 div.source {
38 div.source p {
42 div.source pre.code {
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/Action/
H A DUpdateDocument.php22 $source = ['doc' => $document->getData()];
25 $source['doc_as_upsert'] = true;
30 $source['upsert'] = $upsert;
34 $this->setSource($source);
47 $source = $script->toArray();
53 $source['upsert'] = $upsert;
56 $source['scripted_upsert'] = true;
61 $this->setSource($source);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DPumpStream.php19 private $source; variable in GuzzleHttp\\Stream\\PumpStream
34 * @param callable $source Source of the stream data. The callable MAY
43 public function __construct(callable $source, array $options = []) argument
45 $this->source = $source;
64 $this->source = null;
84 return !$this->source;
149 if ($this->source) {
151 $data = call_user_func($this->source, $length);
153 $this->source
[all...]

12345678910>>...62