Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 2030) sorted by relevance

12345678910>>...82

/plugin/asciidocjs/node_modules/acorn/dist/
Dwalk.js25 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
78 if (!base) base = exports.base
[all …]
Dwalk.es.js19 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
72 if (!base) base = exports.base
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dwalk.js25 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
78 if (!base) base = exports.base
[all …]
Dwalk.es.js19 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
72 if (!base) base = exports.base
[all …]
/plugin/asciidocjs/node_modules/acorn/src/walk/
Dindex.js19 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
74 if (!base) base = exports.base
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/walk/
Dindex.js19 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
74 if (!base) base = exports.base
[all …]
/plugin/asciidocjs/node_modules/fs.realpath/
Dold.js103 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];
146 var stat = fs.lstatSync(base);
[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.php58 * @param UriInterface $base Base URI
65 public static function resolve(UriInterface $base, UriInterface $rel) argument
69 return $base;
81 $targetAuthority = $base->getAuthority();
83 $targetPath = $base->getPath();
84 $targetQuery = $rel->getQuery() != '' ? $rel->getQuery() : $base->getQuery();
89 if ($targetAuthority != '' && $base->getPath() === '') {
92 $lastSlashPos = strrpos($base->getPath(), '/');
96 … $targetPath = substr($base->getPath(), 0, $lastSlashPos + 1) . $rel->getPath();
106 $base->getScheme(),
[all …]
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DUriResolver.php58 public static function resolve(UriInterface $base, UriInterface $rel): UriInterface argument
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(), '/');
89 … $targetPath = substr($base->getPath(), 0, $lastSlashPos + 1).$rel->getPath();
99 $base->getScheme(),
128 public static function relativize(UriInterface $base, UriInterface $target): UriInterface argument
[all …]
/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 …]
/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);
Dtag.php15 var $base; variable in tagmodel
17 function __construct(&$base) { argument
18 $this->tagmodel($base);
21 function tagmodel(&$base) { argument
22 $this->base = $base;
23 $this->db = $base->db;
40 $this->base->load('app');
53 …$this->db->query("UPDATE ".UC_DBTABLEPRE."tags SET data='$datanew', expiration='".$this->base->tim…
55 …ame, appid, data, expiration) VALUES ('$data[0]', '$appid', '$datanew', '".$this->base->time."')");
Dapp.php15 var $base; variable in appmodel
17 function __construct(&$base) { argument
18 $this->appmodel($base);
21 function appmodel(&$base) { argument
22 $this->base = $base;
23 $this->db = $base->db;
/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/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 …]
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)) {
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)) {
99 $uri->scheme = $this->base->scheme;
[all …]
/plugin/fedauth/Auth/OpenID/
DBigMath.php203 function pow($base, $exponent) argument
205 return bcpow($base, $exponent);
213 function init($number, $base = 10) argument
218 function mod($base, $modulus) argument
220 return bcmod($base, $modulus);
238 function _powmod($base, $exponent, $modulus) argument
240 $square = $this->mod($base, $modulus);
252 function powmod($base, $exponent, $modulus) argument
255 return bcpowmod($base, $exponent, $modulus);
257 return $this->_powmod($base, $exponent, $modulus);
[all …]
/plugin/s5reloaded/
Drenderer.php21 var $base=''; variable in renderer_plugin_s5reloaded
49 $this->base = DOKU_BASE.'lib/plugins/s5reloaded/ui/';
105 <link rel="stylesheet" href="'.$this->base.$this->tpl.'/slides.css" type="text/css" media="projecti…
106 <link rel="stylesheet" href="'.$this->base.$this->tpl.'/outline.css" type="text/css" media="screen"…
107 <link rel="stylesheet" href="'.$this->base.$this->tpl.'/print.css" type="text/css" media="print" id…
108 <link rel="stylesheet" href="'.$this->base.$this->tpl.'/opera.css" type="text/css" media="projectio…
109 <link rel="stylesheet" href="'.$this->base.$this->tpl.'/wrap.css" type="text/css" />
110 <link rel="stylesheet" href="'.$this->base.'../../../styles/style.css" type="text/css" />
123 <script src="'.$this->base.$this->tpl.'/slides.js" type="text/javascript"></script>
126 <script src="'.$this->base.'effects_support/prototype.js" type="text/javascript"></script>
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
DIndic.php452 $base = $end;
473 $base = $start;
481 $base = $start;
498 $base = $i;
515 $base = $i;
524 $base = $i;
540 $base = $limit;
550 $base = $i;
556 for ($i = $base + 1; $i < $end; $i++) {
573 if ($has_reph && $base == $start && $limit - $base <= 2) {
[all …]
/plugin/explorertree/
Dhelper.php128 function htmlExplorer($name,$base = '',$current = null){ argument
130 if ($base == '' || $base == '*') $base = ':';
134 $data = $this->getTree($base);
136 if ($base == ':'){
151 if ($base == ':'){
153 …uery('#{$id}').explorerTree(".$this->_treeOpts($name,$current === null ? $base : $current).")});</…
196 $base = $item['label'];
198 $base = ':'.$item['id'];
199 $base = substr($base,strrpos($base,':')+1);
212 $ret .= $base;

12345678910>>...82