Home
last modified time | relevance | path

Searched full:base (Results 1 – 25 of 2969) sorted by relevance

12345678910>>...119

/plugin/asciidocjs/node_modules/acorn/dist/
Dwalk.es.js15 // The base argument can be used to pass a custom (recursive)
19 function simple(node, visitors, base, state, override) { argument
20 if (!base) base = exports.base
23 base[type](node, st, c)
31 function ancestor(node, visitors, base, state) { argument
32 if (!base) base = exports.base
38 base[type](node, st, c)
49 function recursive(node, state, funcs, base, override) { argument
50 var visitor = funcs ? exports.make(funcs, base) : base
70 function findNodeAt(node, start, end, test, base, state) { argument
[all …]
Dwalk.js21 // The base argument can be used to pass a custom (recursive)
25 function simple(node, visitors, base, state, override) { argument
26 if (!base) base = exports.base
29 base[type](node, st, c)
37 function ancestor(node, visitors, base, state) { argument
38 if (!base) base = exports.base
44 base[type](node, st, c)
55 function recursive(node, state, funcs, base, override) { argument
56 var visitor = funcs ? exports.make(funcs, base) : base
76 function findNodeAt(node, start, end, test, base, state) { argument
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dwalk.es.js15 // The base argument can be used to pass a custom (recursive)
19 function simple(node, visitors, base, state, override) { argument
20 if (!base) base = exports.base
23 base[type](node, st, c)
31 function ancestor(node, visitors, base, state) { argument
32 if (!base) base = exports.base
38 base[type](node, st, c)
49 function recursive(node, state, funcs, base, override) { argument
50 var visitor = funcs ? exports.make(funcs, base) : base
70 function findNodeAt(node, start, end, test, base, state) { argument
[all …]
Dwalk.js21 // The base argument can be used to pass a custom (recursive)
25 function simple(node, visitors, base, state, override) { argument
26 if (!base) base = exports.base
29 base[type](node, st, c)
37 function ancestor(node, visitors, base, state) { argument
38 if (!base) base = exports.base
44 base[type](node, st, c)
55 function recursive(node, state, funcs, base, override) { argument
56 var visitor = funcs ? exports.make(funcs, base) : base
76 function findNodeAt(node, start, end, test, base, state) { argument
[all …]
/plugin/asciidocjs/node_modules/acorn/src/walk/
Dindex.js15 // The base argument can be used to pass a custom (recursive)
19 export function simple(node, visitors, base, state, override) { argument
20 if (!base) base = exports.base
23 base[type](node, st, c)
31 export function ancestor(node, visitors, base, state) { argument
32 if (!base) base = exports.base
38 base[type](node, st, c)
49 export function recursive(node, state, funcs, base, override) { argument
50 let visitor = funcs ? exports.make(funcs, base) : base
72 export function findNodeAt(node, start, end, test, base, state) { argument
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/walk/
Dindex.js15 // The base argument can be used to pass a custom (recursive)
19 export function simple(node, visitors, base, state, override) { argument
20 if (!base) base = exports.base
23 base[type](node, st, c)
31 export function ancestor(node, visitors, base, state) { argument
32 if (!base) base = exports.base
38 base[type](node, st, c)
49 export function recursive(node, state, funcs, base, override) { argument
50 let visitor = funcs ? exports.make(funcs, base) : base
72 export function findNodeAt(node, start, end, test, base, state) { argument
[all …]
/plugin/jquery-syntax/jquery-syntax/base/
Djquery.syntax.core.css1 .syntax-theme-base .syntax {
4 .syntax-theme-base .syntax .function {
6 .syntax-theme-base .syntax .keyword, .syntax-theme-base .syntax .access {
8 .syntax-theme-base .syntax .type {
10 .syntax-theme-base .syntax .comment {
12 .syntax-theme-base .syntax .constant {
14 .syntax-theme-base .syntax .string, .syntax-theme-base .syntax .symbol {
16 .syntax-theme-base .syntax .string .escape {
18 .syntax-theme-base .syntax .operator {
20 .syntax-theme-base .syntax .href {
[all …]
Djquery.syntax.brush.xml.css1 .syntax-theme-base .syntax .xml .cdata-content {
4 .syntax-theme-base .syntax .xml .xml-tag, .syntax-theme-base .syntax .xml .cdata {
6 .syntax-theme-base .syntax .xml .tag-name, .syntax-theme-base .syntax .xml .cdata-tag {
9 .syntax-theme-base .syntax .xml .namespace {
11 .syntax-theme-base .syntax .xml .attribute {
13 .syntax-theme-base .syntax .xml .instruction {
15 .syntax-theme-base .syntax .xml .entity, .syntax-theme-base .syntax .xml .percent-escape {
Djquery.syntax.brush.diff.css1 .syntax-theme-base .syntax .add {
3 .syntax-theme-base .syntax .del {
5 .syntax-theme-base .syntax .insert {
7 .syntax-theme-base .syntax .insert-line {
9 .syntax-theme-base .syntax .remove {
11 .syntax-theme-base .syntax .remove-line {
13 .syntax-theme-base .syntax .offset {
15 .syntax-theme-base .syntax .offset-line {
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DUriResolver.php8 * Resolves a URI reference in the context of a base URI and the opposite way.
56 * Converts the relative URI into a new URI that is resolved against the base URI.
58 * @param UriInterface $base Base URI
65 public static function resolve(UriInterface $base, UriInterface $rel) argument
68 // we can simply return the same base URI instance for this same-document reference
69 return $base;
81 $targetAuthority = $base->getAuthority();
83 $targetPath = $base->getPath();
84 $targetQuery = $rel->getQuery() != '' ? $rel->getQuery() : $base->getQuery();
89 if ($targetAuthority != '' && $base->getPath() === '') {
[all …]
/plugin/asciidocjs/node_modules/fs.realpath/
Dold.js72 // result is [base_with_slash, base], e.g. ['somedir/', 'somedir']
103 var base;
114 base = m[0];
118 if (isWindows && !knownHard[base]) {
119 fs.lstatSync(base);
120 knownHard[base] = true;
133 base = previous + result[1];
137 if (knownHard[base] || (cache && cache[base] === base)) {
142 if (cache && Object.prototype.hasOwnProperty.call(cache, base)) {
144 resolvedLink = cache[base];
[all …]
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DUriResolver.php10 * Resolves a URI reference in the context of a base URI and the opposite way.
54 * Converts the relative URI into a new URI that is resolved against the base URI.
58 public static function resolve(UriInterface $base, UriInterface $rel): UriInterface argument
61 // we can simply return the same base URI instance for this same-document reference
62 return $base;
74 $targetAuthority = $base->getAuthority();
76 $targetPath = $base->getPath();
77 $targetQuery = $rel->getQuery() != '' ? $rel->getQuery() : $base->getQuery();
82 if ($targetAuthority != '' && $base->getPath() === '') {
85 $lastSlashPos = strrpos($base->getPath(), '/');
[all …]
/plugin/jquery-syntax/jquery-syntax/
Djquery.syntax.cache.js5base/jquery.syntax.layout.table.css"];Syntax.styles["jquery.syntax.layout.editor"]=["base/jquery.s…
6 Syntax.themes["bright"]=["base"]
7 Syntax.themes["modern"]=["base"]
Djquery.syntax.min.js9 …:{},lib:{},defaultOptions:{cacheScripts:true,cacheStyleSheets:true,theme:"base"},brushes:new Resou…
19base/jquery.syntax.layout.table.css"];Syntax.styles["jquery.syntax.layout.editor"]=["base/jquery.s…
20 Syntax.themes["bright"]=["base"]
21 Syntax.themes["modern"]=["base"]
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
DClientTrait.php18 * Use an absolute path to override the base path of the client, or a
19 * relative path to append to the base path of the client. The URL can
33 * Use an absolute path to override the base path of the client, or a
34 * relative path to append to the base path of the client. The URL can
50 * Use an absolute path to override the base path of the client, or a
51 * relative path to append to the base path of the client. The URL can
67 * Use an absolute path to override the base path of the client, or a
68 * relative path to append to the base path of the client. The URL can
84 * Use an absolute path to override the base path of the client, or a
85 * relative path to append to the base path of the client. The URL can
[all …]
/plugin/html2pdf/html2pdf/html2ps/
Dvalue.margin.class.php11 function calc($base, $base_font_size = 0) { argument
13 return $base * $this->percentage / 100;
19 function calcPercentage($base) { argument
24 $this->value = $base * $this->percentage / 100;
59 function units2pt($base) { argument
61 $this->value = $this->_units->toPt($base);
120 function units2pt($base) { argument
121 $this->top->units2pt($base);
122 $this->bottom->units2pt($base);
123 $this->left->units2pt($base);
[all …]
Dparser.xhtml.class.php15 * Detect the base URI for this document.
18 …* User agents must calculate the base URI according to the following precedences (highest priority…
20 * 1. The base URI is set by the BASE element.
21 …* 2. The base URI is given by meta data discovered during a protocol interaction, such as an HTTP …
22base URI is that of the current document. Not all HTML documents have a base URI (e.g., a valid HT…
26 * Check if BASE element present; use its first occurrence
58 if ($root->tagname() === 'base') {
61 …* href - this attribute specifies an absolute URI that acts as the base URI for resolving relative…
64 * we should replace it with the value of 'href' attribute of the BASE tag
68 * if it is missing or is relative, we'll get more of less usable value base on current
Dvalue.padding.class.php11 function calcPercentage($base) { argument
16 $this->value = $base * $this->percentage / 100;
54 function units2pt($base) { argument
56 $this->value = $this->_units->toPt($base);
115 function units2pt($base) { argument
116 $this->top->units2pt($base);
117 $this->bottom->units2pt($base);
118 $this->left->units2pt($base);
119 $this->right->units2pt($base);
122 function calcPercentages($base) { argument
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/
DMakeAbsolute.php15 protected $base; variable in HTMLPurifier_URIFilter_MakeAbsolute
29 $this->base = $def->base;
30 if (is_null($this->base)) {
33 'value for URI.Base configuration',
38 $this->base->fragment = null; // fragment is invalid for base URI
39 $stack = explode('/', $this->base->path);
54 if (is_null($this->base)) {
60 $uri = clone $this->base;
84 $uri->path = $this->base->path;
89 if ($new_stack[0] !== '' && !is_null($this->base->host)) {
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/src/skin/pink.flag/scss/
Djplayer.pink.flag.scss16 $jplayer-images-base-url: "../image/" !default;
122 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0 0 no-repeat;
163 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0px -40px no-repeat;
167 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") -100px -40px no-repeat;
171 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0px -120px no-repeat;
175 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") -100px -120px no-repeat;
185 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0px -80px no-repeat;
189 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") -100px -80px no-repeat;
201 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") -24px -40px no-repeat;
205 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") -124px -40px no-repeat;
[all …]
/plugin/authucenter/lib/uc_client/model/
Duser.php15 var $base; variable in usermodel
17 function __construct(&$base) { argument
18 $this->usermodel($base);
21 function usermodel(&$base) { argument
22 $this->base = $base;
23 $this->db = $base->db;
70 …"SELECT count(*) FROM ".UC_DBTABLEPRE."mergemembers WHERE appid='".$this->base->app['appid']."' AN…
75 $_CACHE['badwords'] = $this->base->cache('badwords');
76 $censorusername = $this->base->get_setting('censorusername');
97 $setting = $this->base->get_setting(array('accessemail', 'censoremail'));
[all …]
Ddomain.php15 var $base; variable in domainmodel
17 function __construct(&$base) { argument
18 $this->domainmodel($base);
21 function domainmodel(&$base) { argument
22 $this->base = $base;
23 $this->db = $base->db;
39 $start = $this->base->page_get_start($page, $ppp, $totalnum);
45 $domainids = $this->base->implode($arr);
/plugin/cleanup/
Dhelper.php140 public function cb_check_cache(&$data, $base, $file, $type, $lvl, $opts) { argument
148 $time = $opts['useatime'] ? fileatime($base . $file) : filemtime($base . $file);
151 $this->delete($base.$file, 'cache');
159 public function cb_check_attic(&$data, $base, $file, $type, $lvl, $opts) { argument
164 $time = filemtime($base . $file);
173 $this->delete($base.$file, 'attic');
181 public function cb_check_mediaattic(&$data, $base, $file, $type, $lvl, $opts) { argument
186 $time = filemtime($base . $file);
198 $this->delete($base.$file, 'mediattic');
206 public function cb_check_meta(&$data, $base, $file, $type, $lvl, $opts) { argument
[all …]
/plugin/siteexport/_test/
Dplugin_siteexport_functions_getrelativeurl.test.php31 'base' => "test/test.html",
36 // Same directory at base
38 'base' => "test.html",
45 'base' => "test.html",
51 'base' => "test/test.html",
57 'base' => "test/test.html",
64 $result = $functions->getRelativeURL($test['relative'], $test['base']);
65 …t '{$result}' did not match expected result '{$test['expected']}' (base: '{$test['base']}', relati…
/plugin/openid/Auth/OpenID/
DBigMath.php178 * @param int $base
181 abstract protected function init($number, $base = 10); argument
212 * @param int $base
216 abstract protected function mod($base, $modulus); argument
219 * @param int $base
223 abstract protected function pow($base, $exponent); argument
248 function pow($base, $exponent) argument
250 return bcpow($base, $exponent);
258 function init($number, $base = 10) argument
263 function mod($base, $modulus) argument
[all …]

12345678910>>...119