| /plugin/asciidocjs/node_modules/clean-css/lib/options/ |
| D | optimization-level.js | 67 function optimizationLevelFrom(source) { argument 74 if (undefined === source) { 79 if (typeof source == 'string') { 80 source = parseInt(source); 83 if (typeof source == 'number' && source === parseInt(Two)) { 87 if (typeof source == 'number' && source === parseInt(One)) { 92 if (typeof source == 'number' && source === parseInt(Zero)) { 98 if (typeof source == 'object') { 99 source = covertValuesToHashes(source); 102 if (One in source && 'roundingPrecision' in source[One]) { [all …]
|
| D | rounding-precision.js | 10 function roundingPrecisionFrom(source) { argument 11 return override(defaults(DEFAULT_PRECISION), buildPrecisionFrom(source)); 35 function buildPrecisionFrom(source) { argument 36 if (source === null || source === undefined) { 40 if (typeof source == 'boolean') { 44 if (typeof source == 'number' && source == -1) { 48 if (typeof source == 'number') { 49 return defaults(source); 52 if (typeof source == 'string' && INTEGER_PATTERN.test(source)) { 53 return defaults(parseInt(source)); [all …]
|
| D | format.js | 83 function formatFrom(source) { argument 84 if (source === undefined || source === false) { 88 if (typeof source == 'object' && 'breakWith' in source) { 89 source = override(source, { breakWith: mapBreakWith(source.breakWith) }); 92 if (typeof source == 'object' && 'indentBy' in source) { 93 source = override(source, { indentBy: parseInt(source.indentBy) }); 96 if (typeof source == 'object' && 'indentWith' in source) { 97 source = override(source, { indentWith: mapIndentWith(source.indentWith) }); 100 if (typeof source == 'object') { 101 return override(DEFAULTS, source); [all …]
|
| D | compatibility.js | 138 function compatibilityFrom(source) { argument 139 return merge(DEFAULTS['*'], calculateSource(source)); 142 function merge(source, target) { argument 143 for (var key in source) { 144 if (Object.prototype.hasOwnProperty.call(source, key)) { 145 var value = source[key]; 158 function calculateSource(source) { argument 159 if (typeof source == 'object') 160 return source; 162 if (!/[,\+\-]/.test(source)) [all …]
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/ |
| D | FileAsset.php | 24 private $source; variable in Assetic\\Asset\\FileAsset 29 * @param string $source An absolute path 37 …public function __construct($source, $filters = array(), $sourceRoot = null, $sourcePath = null, a… argument 40 $sourceRoot = dirname($source); 42 $sourcePath = basename($source); 45 if (0 !== strpos($source, $sourceRoot)) { 46 …umentException(sprintf('The source "%s" is not in the root directory "%s"', $source, $sourceRoot)); 49 $sourcePath = substr($source, strlen($sourceRoot) + 1); 52 $this->source = $source; 59 $source = VarUtils::resolve($this->source, $this->getVars(), $this->getValues()); [all …]
|
| /plugin/zip/pear/File/ |
| D | Archive.php | 257 function readSource(&$source, $URL, $symbolic = null, argument 260 return File_Archive::_readSource($source, $URL, $reachable, $baseDir, 274 $source =& File_Archive::_convertToReader($toConvert); 275 if (PEAR::isError($source)) { 276 return $source; 325 $result = File_Archive::_readSource($source, $baseFile, 334 if ((empty($URL) || is_dir($URL)) && $source === null) { 372 } else if (is_file($URL) && substr($URL, -1)!='/' && $source === null) { 404 (is_dir($file) && $source==null))); 409 if ($source === null) { [all …]
|
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Relay.php | 46 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(); } 60 function getFilename() { return $this->source->getFilename(); } 64 function getStat() { return $this->source->getStat(); } 68 function getMime() { return $this->source->getMime(); } 72 function getDataFilename() { return $this->source->getDataFilename(); } 76 function getData($length = -1) { return $this->source->getData($length); } 80 function skip($length = -1) { return $this->source->skip($length); } [all …]
|
| D | Concat.php | 40 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(); 69 if (PEAR::isError($error) || PEAR::isError($source->close())) { 81 return $this->opened = $this->source->next(); 112 $sourceData = $this->source->getData( 121 $error = $this->source->next(); 142 $sourceSkipped = $this->source->skip($length); [all …]
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | _mergeData.js | 35 function mergeData(data, source) { argument 37 srcBitmask = source[1], 43 …((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || 44 …((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask … 52 data[2] = source[2]; 57 var value = source[3]; 60 data[3] = partials ? composeArgs(partials, value, source[4]) : value; 61 data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; 64 value = source[5]; 67 data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; [all …]
|
| D | template.js | 175 source = "__p += '"; 179 (options.escape || reNoMatch).source + '|' + 180 interpolate.source + '|' + 181 (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + '|' + 182 (options.evaluate || reNoMatch).source + '|$' 199 source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar); 204 source += "' +\n__e(" + escapeValue + ") +\n'"; 208 source += "';\n" + evaluateValue + ";\n__p += '"; 211 source += "' +\n((__t = (" + interpolateValue + ")) == null ? '' : __t) +\n'"; 220 source += "';\n"; [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/lib/ |
| D | source-map-generator.js | 56 if (mapping.source != null) { 57 newMapping.source = mapping.source; 59 newMapping.source = util.relative(sourceRoot, newMapping.source); 97 var source = util.getArg(aArgs, 'source', null); 101 this._validateMapping(generated, original, source, name); 104 if (source != null) { 105 source = String(source); 106 if (!this._sources.has(source)) { 107 this._sources.add(source); 123 source: source, property [all …]
|
| D | source-map-consumer.js | 143 var source = mapping.source === null ? null : this._sources.at(mapping.source); 144 if (source != null && sourceRoot != null) { 145 source = util.join(sourceRoot, source); 148 source: source, 186 source: util.getArg(aArgs, 'source'), property 192 needle.source = util.relative(this.sourceRoot, needle.source); 194 if (!this._sources.has(needle.source)) { 197 needle.source = this._sources.indexOf(needle.source); 314 .map(function (source) { argument 315 return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source) [all …]
|
| /plugin/asciidocjs/node_modules/source-map/lib/ |
| D | source-map-generator.js | 56 if (mapping.source != null) { 57 newMapping.source = mapping.source; 59 newMapping.source = util.relative(sourceRoot, newMapping.source); 106 var source = util.getArg(aArgs, 'source', null); 110 this._validateMapping(generated, original, source, name); 113 if (source != null) { 114 source = String(source); 115 if (!this._sources.has(source)) { 116 this._sources.add(source); 132 source: source, property [all …]
|
| /plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/ |
| D | Event.php | 70 $source = new \Mock\Hoa\Event\Source() 72 ->when($result = SUT::register($eventId, $source)) 85 $source = 'Mock\Hoa\Event\Source' 87 ->when($result = SUT::register($eventId, $source)) 100 $source = new \Mock\Hoa\Event\Source(), 101 SUT::register($eventId, $source) 103 ->exception(function () use ($eventId, $source) { 104 SUT::register($eventId, $source); 114 $source = new \StdClass() 116 ->exception(function () use ($eventId, $source) { [all …]
|
| D | Listener.php | 57 $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']), 95 $source = new \Mock\Hoa\Event\Listenable(), 97 $listener = new SUT($source, ['foo', 'baz']), 110 $source = new \Mock\Hoa\Event\Listenable(), 112 $listener = new SUT($source, ['foo', 'bar']), 130 $source = new \Mock\Hoa\Event\Listenable(), 132 $listener = new SUT($source, ['foo', 'baz']), [all …]
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/ |
| D | ClientBuilder.asciidoc | 51 [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,php] [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/ |
| D | README.md | 3 …uild Status](https://travis-ci.org/mozilla/source-map.png?branch=master)](https://travis-ci.org/mo… 5 [](https://www.npmjs.co… 7 This is a library to generate and consume the source map format 14 $ npm install source-map 18 …<script src="https://raw.githubusercontent.com/mozilla/source-map/master/dist/source-map.min.js" d… 29 - [Consuming a source map](#consuming-a-source-map) 30 - [Generating a source map](#generating-a-source-map) 41 …- [SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing])](#sourcemapconsumer… 51 …- [new SourceNode([line, column, source[, chunk[, name]]])](#new-sourcenodeline-column-source-chun… 67 ### Consuming a source map [all …]
|
| /plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/ |
| H A D | Helpers.php | 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 436 * @param string $source part of template that is wrapped [all …]
|
| /plugin/revealjs/lib/font/source-sans-pro/ |
| D | source-sans-pro.css | 3 src: url('source-sans-pro-regular.eot'); 4 src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'), 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'); 14 src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'), 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'); 24 src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'), [all …]
|
| /plugin/asciidocjs/node_modules/source-map/ |
| D | README.md | 3 …uild Status](https://travis-ci.org/mozilla/source-map.png?branch=master)](https://travis-ci.org/mo… 5 [](https://www.npmjs.co… 7 This is a library to generate and consume the source map format 14 $ npm install source-map 18 …<script src="https://raw.githubusercontent.com/mozilla/source-map/master/dist/source-map.min.js" d… 29 - [Consuming a source map](#consuming-a-source-map) 30 - [Generating a source map](#generating-a-source-map) 41 …- [SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing])](#sourcemapconsumer… 51 …- [new SourceNode([line, column, source[, chunk[, name]]])](#new-sourcenodeline-column-source-chun… 67 ### Consuming a source map [all …]
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | CommonToken.php | 56 protected $source; variable in Antlr\\Antlr4\\Runtime\\CommonToken 94 ?Pair $source = null, argument 99 if ($source !== null && !$source->a instanceof TokenSource) { 103 if ($source !== null && !$source->b instanceof CharStream) { 107 $this->source = $source ?? self::emptySource(); 113 $tokenSource = $this->source->a; 127 static $source; 129 return $source = $source ?? new Pair(null, null); 145 $token = new self($this->type, $this->source, $this->channel, $this->start, $this->stop); 263 $source = $this->source->a; [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/ |
| D | Action.php | 41 …unction __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_upsert'] ? 'true' : 'false'); 62 $string .= '{"doc": '.$source['doc'].$docAsUpsert.'}'; 64 $string .= JSON::stringify($source, \JSON_UNESCAPED_UNICODE); [all …]
|
| /plugin/codemirror/dist/modes/ |
| D | elm.min.js.map | 1 …source","setState","f","lowerRE","upperRE","innerRE","digitRE","hexRE","symbolRE","specialRE","spa…
|
| /plugin/asciidocjs/node_modules/jake/lib/ |
| D | rule.js | 68 this.source = opts.source; 85 let source; 98 source = this.source; 100 if (typeof source == 'string') { 101 src = Rule.getSource(name, pattern, source); 104 src = source(name); 158 createdTask.source = src.split(':').pop(); 257 static getSource(name, pattern, source) { argument 268 if (typeof source == 'function') { 269 src = source(name); [all …]
|
| /plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/ |
| D | code-gen.js | 66 this.source = []; property in CodeGen 71 return !this.source.length; 73 prepend: function(source, loc) { argument 74 this.source.unshift(this.wrap(source, loc)); 76 push: function(source, loc) { argument 77 this.source.push(this.wrap(source, loc)); 81 let source = this.empty(); 83 source.add([' ', line, '\n']); 85 return source; 89 for (let i = 0, len = this.source.length; i < len; i++) { [all …]
|