Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 2575) sorted by relevance

12345678910>>...103

/plugin/findologicxmlexport/vendor/sebastian/diff/tests/LCS/
DLongestCommonSubsequenceTest.php52 $from = array();
54 $common = $this->implementation->calculate($from, $to);
61 $from = array(
65 $to = $from;
66 $common = $this->implementation->calculate($from, $to);
68 $this->assertEquals($from, $common);
80 $common = $this->implementation->calculate($from, $to);
89 $from = $range;
91 $common = $this->implementation->calculate($from, $to);
99 $from = array('A');
[all …]
/plugin/pgn4web/pgn4web/libs/garbochess/
Dgarbochess.js77 var from = move & 0xFF;
83 var pieceType = g_board[from] & 0x7;
93 if (moveFrom != from &&
97 if ((moveFrom & 0xF0) == (from & 0xF0)) {
100 if ((moveFrom & 0x0F) == (from & 0x0F)) {
108 result += FormatSquare(from).charAt(0);
110 result += FormatSquare(from).charAt(1);
112 result += FormatSquare(from);
115 result += FormatSquare(from).charAt(0);
329 var from = g_pieceList[pieceIdx++];
[all …]
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
DDiffer.php45 * @param array|string $from
51 public function diff($from, $to, LongestCommonSubsequence $lcs = null) argument
53 $from = $this->validateDiffInput($from);
55 $diff = $this->diffToArray($from, $to, $lcs);
198 * @param array|string $from
204 public function diffToArray($from, $to, LongestCommonSubsequence $lcs = null) argument
206 if (\is_string($from)) {
207 $fromMatches = $this->getNewLineMatches($from);
208 $from = $this->splitStringByLines($from);
209 } elseif (\is_array($from)) {
[all …]
DDiff.php18 private $from; variable in SebastianBergmann\\Diff\\Diff
31 * @param string $from
35 public function __construct($from, $to, array $chunks = array()) argument
37 $this->from = $from;
47 return $this->from;
/plugin/amcharts/assets/amcharts/plugins/dataloader/examples/data/
DMSFT_events.csv2 2014-06-05,A,Analyst opinion change,Upgrade by FBR Capital from Mkt Perform to Outperform
5 2014-01-23,A,Analyst opinion change,Upgrade from Deutsche Bank from Hold to Buy
6 2014-01-10,A,Analyst opinion change,Upgrade from Barclays from Equal weight to Overweight
9 2013-08-13,A,Analyst opinion change,Downgrade from Stifel from Buy to Hold
11 2013-04-30,A,Analyst opinion change,Downgrade from Standpoint Research from Buy to Hold
13 2013-01-04,A,Analyst opinion change,Downgrade from Argus from Buy to Hold
15 2012-12-12,A,Analyst opinion change,Upgrade from Standpoint Research from Hold to Buy
22 2012-03-16,A,Analyst opinion change,Upgrade from Argus from Hold to Buy
26 2011-09-09,A,Analyst opinion change,Downgrade from Standpoint Research from Buy to Hold
31 2011-01-07,A,Analyst opinion change,Downgrade from Standpoint Research from Buy to Hold
[all …]
/plugin/statistics/
DQuery.php16 protected string $from; variable in dokuwiki\\plugin\\statistics\\Query
36 * @param string $from The start date as YYYY-MM-DD
39 public function setTimeFrame(string $from, string $to): void argument
42 $from = new \DateTime($from);
45 $from = new \DateTime();
48 $from->setTime(0, 0);
51 $this->from = $from->format('Y-m-d H:i:s');
69 $dateTime = new \DateTime($this->from, new \DateTimeZone($timezoneId));
126 $result = $this->db->queryAll($sql, [$this->tz, $this->from, $this->tz, $this->to]);
156 … $result = $this->db->queryRecord($sql, [$this->tz, $this->tz, $this->from, $this->tz, $this->to]);
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dindex.js22 import {Parser} from "./state"
29 export {Parser, plugins} from "./state"
30 export {defaultOptions} from "./options"
31 export {Position, SourceLocation, getLineInfo} from "./locutil"
32 export {Node} from "./node"
33 export {TokenType, types as tokTypes} from "./tokentype"
34 export {TokContext, types as tokContexts} from "./tokencontext"
35 export {isIdentifierChar, isIdentifierStart} from "./identifier"
36 export {Token} from "./tokenize"
37 export {isNewLine, lineBreak, lineBreakG} from "./whitespace"
/plugin/struct/meta/
H A DQueryBuilder.php16 protected $from = []; variable in dokuwiki\\plugin\\struct\\meta\\QueryBuilder
46 if (!isset($this->from[$tablealias])) {
94 if (isset($this->from[$alias])) {
97 $this->from[$alias] = "$table AS $alias";
112 if (!isset($this->from[$leftalias])) {
115 if (isset($this->from[$rightalias])) {
119 $pos = array_search($leftalias, array_keys($this->from));
121 $this->from = $this->arrayInsert($this->from, [$rightalias => $statement], $pos + 1);
153 if (!isset($this->from[$tablealias])) {
212 $from = '';
[all …]
H A DDateFormatConverter.php133 $from = array_map(
143 $date = preg_replace($from, $to, $date);
169 $from = array_keys(self::$date);
170 $from = array_map(
172 $from
177 array_unshift($from, '/%/');
181 $strftime = preg_replace($from, $to, $date);
187 $from = array_map(
191 $strftime = preg_replace($from, $datekeys, $strftime);
/plugin/asciidocjs/node_modules/acorn/src/
Dindex.js22 import {Parser} from "./state"
29 export {Parser, plugins} from "./state"
30 export {defaultOptions} from "./options"
31 export {Position, SourceLocation, getLineInfo} from "./locutil"
32 export {Node} from "./node"
33 export {TokenType, types as tokTypes, keywords as keywordTypes} from "./tokentype"
34 export {TokContext, types as tokContexts} from "./tokencontext"
35 export {isIdentifierChar, isIdentifierStart} from "./identifier"
36 export {Token} from "./tokenize"
37 export {isNewLine, lineBreak, lineBreakG} from "./whitespace"
/plugin/asciidocjs/node_modules/ejs/lib/
Dutils.js133 exports.shallowCopy = function (to, from) { argument
134 from = from || {};
136 for (var p in from) {
137 if (!hasOwn(from, p)) {
143 to[p] = from[p];
161 exports.shallowCopyFromList = function (to, from, list) { argument
163 from = from || {};
167 if (typeof from[p] != 'undefined') {
168 if (!hasOwn(from, p)) {
174 to[p] = from[p];
/plugin/davcal/syntax/
H A Dtable.php144 $from = $data['startdate'];
148 if($from === 'today')
150 $from = new \DateTime();
152 elseif(strpos($from, 'today-') === 0)
154 $days = intval(str_replace('today-', '', $from));
155 $from = new \DateTime();
156 $from->sub(new \DateInterval('P'.$days.'D'));
158 elseif(strpos($from, 'today+') === 0)
160 $days = intval(str_replace('today+', '', $from));
161 $from = new \DateTime();
[all …]
/plugin/findologicxmlexport/vendor/sebastian/diff/src/LCS/
DMemoryEfficientLongestCommonSubsequenceImplementation.php21 * @param array $from
26 public function calculate(array $from, array $to) argument
28 $cFrom = \count($from);
36 if (\in_array($from[0], $to, true)) {
37 return array($from[0]);
44 $fromStart = \array_slice($from, 0, $i);
45 $fromEnd = \array_slice($from, $i);
70 * @param array $from
75 private function length(array $from, array $to) argument
78 $cFrom = \count($from);
[all …]
/plugin/findologicxmlexport/vendor/sebastian/diff/tests/
DDifferTest.php45 * @param string|array $from
49 …ayRepresentationOfDiffCanBeRenderedUsingTimeEfficientLcsImplementation(array $expected, $from, $to) argument
51 …$this->assertEquals($expected, $this->differ->diffToArray($from, $to, new TimeEfficientImplementat…
56 * @param string $from
60 …testTextRepresentationOfDiffCanBeRenderedUsingTimeEfficientLcsImplementation($expected, $from, $to) argument
62 … $this->assertEquals($expected, $this->differ->diff($from, $to, new TimeEfficientImplementation));
67 * @param string|array $from
71 …RepresentationOfDiffCanBeRenderedUsingMemoryEfficientLcsImplementation(array $expected, $from, $to) argument
73 …$this->assertEquals($expected, $this->differ->diffToArray($from, $to, new MemoryEfficientImplement…
78 * @param string $from
[all …]
/plugin/ipban/ip-lib/src/
DFactory.php85 public static function rangeFromBoundaries($from, $to) argument
103 $result = static::rangeFromBoundaryAddresses($from, $to);
115 …protected static function rangeFromBoundaryAddresses(AddressInterface $from = null, AddressInterfa… argument
117 if ($from === null && $to === null) {
120 $result = Range\Single::fromAddress($from);
121 } elseif ($from === null) {
125 $addressType = $from->getAddressType();
127 $cmp = strcmp($from->getComparableString(), $to->getComparableString());
129 $result = Range\Single::fromAddress($from);
132 list($from, $to) = array($to, $from);
[all …]
/plugin/asciidocjs/node_modules/core-js/modules/
D_array-copy-within.js11 var from = toAbsoluteIndex(start, len); variable
13 var count = Math.min((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to);
15 if (from < to && to < from + count) {
17 from += count - 1;
21 if (from in O) O[to] = O[from];
24 from += inc;
/plugin/asciidocjs/node_modules/core-js/library/modules/
D_array-copy-within.js11 var from = toAbsoluteIndex(start, len); variable
13 var count = Math.min((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to);
15 if (from < to && to < from + count) {
17 from += count - 1;
21 if (from in O) O[to] = O[from];
24 from += inc;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DRangeTransition.php14 public $from; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RangeTransition
19 public function __construct(ATNState $target, int $from, int $to) argument
23 $this->from = $from;
29 return IntervalSet::fromRange($this->from, $this->to);
34 return $symbol >= $this->from && $symbol <= $this->to;
49 && $this->from === $other->from
58 StringUtils::char($this->from),
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/
Dhelpers.js1 import registerBlockHelperMissing from './helpers/block-helper-missing';
2 import registerEach from './helpers/each';
3 import registerHelperMissing from './helpers/helper-missing';
4 import registerIf from './helpers/if';
5 import registerLog from './helpers/log';
6 import registerLookup from './helpers/lookup';
7 import registerWith from './helpers/with';
/plugin/asciidocjs/node_modules/yargs/lib/platform-shims/
Desm.mjs3 import { notStrictEqual, strictEqual } from 'assert'
4 import cliui from 'cliui'
5 import escalade from 'escalade/sync'
6 import { inspect } from 'util'
7 import { readFileSync } from 'fs'
8 import { fileURLToPath } from 'url';
9 import Parser from 'yargs-parser'
10 import { basename, dirname, extname, relative, resolve } from 'path'
11 import { getProcessArgvBin } from '../../build/lib/utils/process-argv.js'
12 import { YError } from '../../build/lib/yerror.js'
[all …]
/plugin/asciidocjs/node_modules/object-assign/
Dindex.js66 var from; variable
71 from = Object(arguments[s]);
73 for (var key in from) {
74 if (hasOwnProperty.call(from, key)) {
75 to[key] = from[key];
80 symbols = getOwnPropertySymbols(from);
82 if (propIsEnumerable.call(from, symbols[i])) {
83 to[symbols[i]] = from[symbols[i]];
/plugin/asciidocjs/node_modules/with/node_modules/acorn/bin/
Dgenerate-identifier-regex.js33 var from = chars[i], to = from;
39 if (from == to) re += esc(from);
40 else if (from + 1 == to) re += esc(from) + esc(to);
41 else re += esc(from) + "-" + esc(to);
43 astral.push(from - at, to - from);
/plugin/asciidocjs/node_modules/babylon/bin/
Dgenerate-identifier-regex.js38 const from = chars[i];
39 let to = from;
45 if (from == to) re += esc(from);
46 else if (from + 1 == to) re += esc(from) + esc(to);
47 else re += esc(from) + "-" + esc(to);
49 astral.push(from - at, to - from);
/plugin/icalendar/
Dsyntax.php70 $from = time();
73 $from = mktime(0, 0, 0, $fromDate[1], $fromDate[2], $fromDate[3]);
75 $from = $params['from'];
144 …return array($icsURL, $from, $to, $previewDays, $numberOfEntries, $showEndDates, $template, $sort_…
151 …list($url, $from, $to, $previewDays, $numberOfEntries, $showEndDates, $template, $sort_descending)…
156 $entries = $this->_parseIcs($url, $from, $to, $previewDays, $numberOfEntries, $sort_descending);
262 * @param from unix timestamp in seconds (may be null)
269 function _parseIcs($url, $from, $to, $previewDays, $numberOfEntries, $sort_descending ) { argument
304 if ($from && $entry['endunixdate']) {
305 if ($entry['endunixdate'] < $from) { continue; }
[all …]
/plugin/asciidocjs/node_modules/handlebars/lib/
Dhandlebars.js1 import runtime from './handlebars.runtime';
4 import AST from './handlebars/compiler/ast';
9 } from './handlebars/compiler/base';
10 import { Compiler, compile, precompile } from './handlebars/compiler/compiler';
11 import JavaScriptCompiler from './handlebars/compiler/javascript-compiler';
12 import Visitor from './handlebars/compiler/visitor';
14 import noConflict from './handlebars/no-conflict';

12345678910>>...103