Home
last modified time | relevance | path

Searched refs:flags (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/plugin/translation/
Ddeleted.files6 flags/ad.gif
7 flags/ae.gif
8 flags/af.gif
9 flags/ag.gif
10 flags/ai.gif
11 flags/al.gif
12 flags/am.gif
13 flags/an.gif
14 flags/ao.gif
15 flags/ar.gif
[all …]
/plugin/statistics/
Ddeleted.files5 flags/README
6 flags/ad.png
7 flags/ae.png
8 flags/af.png
9 flags/ag.png
10 flags/ai.png
11 flags/al.png
12 flags/am.png
13 flags/an.png
14 flags/ao.png
[all …]
/plugin/charter/
Dhelper.php37 'desc' => 'sets the flags to use',
39 'flags' => 'array',
185 * @param flags flags to set
189 function setFlags($flags = array()) { argument
190 foreach ($flags as $key => $val) {
192 unset($flags[$key]);
197 $flags[$key] = array(
201 if (!file_exists($flags[$key]['name']))
202 unset($flags[$key]);
206 $flags[$key] = array(
[all …]
/plugin/include/
H A Dhelper.php71 $flags = $this->defaults;
79 $flags['footer'] = 1;
82 $flags['footer'] = 0;
86 $flags['firstsec'] = 1;
89 $flags['firstsec'] = 0;
93 $flags['noheader'] = 0;
96 $flags['noheader'] = 1;
100 $flags['editbtn'] = 1;
104 $flags['editbtn'] = 0;
107 $flags['permalink'] = 1;
[all …]
/plugin/mediasyntax/
Dhelper.php61 $flags = array();
62 $flags = $this->defaults;
66 $flags['footer'] = 1;
69 $flags['footer'] = 0;
73 $flags['firstsec'] = 1;
76 $flags['firstsec'] = 0;
79 $flags['noheader'] = 1;
83 $flags['editbtn'] = 1;
87 $flags['editbtn'] = 0;
90 $flags['permalink'] = 1;
[all …]
/plugin/icons/syntax/
Dicon.php21 protected $flags = array(); variable in syntax_plugin_icons_icon
61 $flags = array();
104 list($match, $flags) = array_pad(explode('?', trim($match), 2), 2, null);
107 $flags .= "&$align_flag";
109 … return array($pack, $icon, explode('&', rtrim($flags, '&')), $title, $url, $match, $state, $pos);
127 list($pack, $icon, $flags, $title, $url) = $data;
128 $this->parseFlags($pack, $icon, $flags);
232 return (isset($this->flags[$name]) ? $this->flags[$name] : null);
236 return $this->flags;
239 protected function parseFlags($pack, $icon, $flags) { argument
[all …]
/plugin/tagfilter/helper/
Dsyntax.php36 $flags = $opt['tagfilterFlags'];
50 if (!empty($flags['withTags']) && !in_array($tag, $flags['withTags'])) {
53 if (!empty($flags['excludeTags']) && in_array($tag, $flags['excludeTags'])) {
87 * @param array $flags with
102 public function prepareList($pageids, $flags) argument
110 if (!isset($flags['tagcolumn'])) {
111 $flags['tagcolumn'] = [];
123 $cache_key = implode('_', ['plugin_tagfilter', $ID, $page, $flags['sortbypageid']]);
131 'tmp_id' => $flags['sortbypageid']
136 foreach ($flags['tagcolumn'] as $tagcolumn) {
[all …]
/plugin/translation/lang/
Dflags.txt16 be https://flagicons.lipis.dev/flags/4x3/by.svg
17 bg https://flagicons.lipis.dev/flags/4x3/bg.svg
30 cs https://flagicons.lipis.dev/flags/4x3/cz.svg
34 da https://flagicons.lipis.dev/flags/4x3/dk.svg
35 de https://flagicons.lipis.dev/flags/4x3/de.svg
39 el https://flagicons.lipis.dev/flags/4x3/gr.svg
40 en https://flagicons.lipis.dev/flags/4x3/gb.svg
42 es https://flagicons.lipis.dev/flags/4x3/es.svg
43 et https://flagicons.lipis.dev/flags/4x3/ee.svg
47 fi https://flagicons.lipis.dev/flags/4x3/fi.svg
[all …]
/plugin/include/_test/
H A Dnamespace_includes.test.php68 $flags = $this->helper->get_flags(array());
69 $pages = $this->helper->_get_included_pages('namespace', 'inclhidden:', '', '', $flags);
79 $flags = $this->helper->get_flags(array());
80 $pages = $this->helper->_get_included_pages('namespace', 'incltest:', '', '', $flags);
84 $flags = $this->helper->get_flags(array('depth=2'));
85 $pages = $this->helper->_get_included_pages('namespace', 'incltest:', '', '', $flags);
90 $flags = $this->helper->get_flags(array('depth=2'));
91 $pages = $this->helper->_get_included_pages('namespace', 'incltest:ns', '', '', $flags);
96 $flags = $this->helper->get_flags(array('depth=0'));
97 $pages = $this->helper->_get_included_pages('namespace', 'incltest:', '', '', $flags);
[all …]
/plugin/asciidocjs/node_modules/yargs-parser/build/lib/
Dyargs-parser.js70 const flags = { variable
98 flags[assignment][key] = true;
100 flags.arrays[key] = true;
101 flags.keys.push(key);
104 flags.bools[key] = true;
105 flags.keys.push(key);
108 flags.strings[key] = true;
109 flags.keys.push(key);
112 flags.numbers[key] = true;
113 flags.keys.push(key);
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DSdFlagsControl.php53 protected $flags; variable in FreeDSx\\Ldap\\Control\\Ad\\SdFlagsControl
56 * @param int $flags
58 public function __construct(int $flags) argument
60 $this->flags = $flags;
69 return $this->flags;
73 * @param int $flags
76 public function setFlags(int $flags) argument
78 $this->flags = $flags;
85 $this->controlValue = Asn1::sequence(Asn1::integer($this->flags));
H A DDirSyncRequestControl.php66 protected $flags; variable in FreeDSx\\Ldap\\Control\\Ad\\DirSyncRequestControl
79 * @param int $flags
83 …public function __construct(int $flags = self::FLAG_INCREMENTAL_VALUES, string $cookie = '', int $… argument
85 $this->flags = $flags;
96 return $this->flags;
100 * @param int $flags
103 public function setFlags(int $flags) argument
105 $this->flags = $flags;
160 $flags = $request->getChild(0);
163 if (!$flags instanceof IntegerType) {
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
Dmodule.audio.lpac.php45 $flags['audio_type'] = getid3_lib::BigEndian2Int(substr($LPACheader, 5, 1));
47 $flags['parameters'] = getid3_lib::BigEndian2Int(substr($LPACheader, 10, 4));
49 $info['lpac']['flags']['is_wave'] = (bool) ($flags['audio_type'] & 0x40);
50 $info['lpac']['flags']['stereo'] = (bool) ($flags['audio_type'] & 0x04);
51 $info['lpac']['flags']['24_bit'] = (bool) ($flags['audio_type'] & 0x02);
52 $info['lpac']['flags']['16_bit'] = (bool) ($flags['audio_type'] & 0x01);
58 $info['lpac']['flags']['fast_compress'] = (bool) ($flags['parameters'] & 0x40000000);
59 $info['lpac']['flags']['random_access'] = (bool) ($flags['parameters'] & 0x08000000);
60 …$info['lpac']['block_length'] = pow(2, (($flags['parameters'] & 0x07000000) …
61 $info['lpac']['flags']['adaptive_prediction_order'] = (bool) ($flags['parameters'] & 0x00800000);
[all …]
/plugin/combo/vendor/symfony/yaml/
H A DInline.php37 …public static function initialize(int $flags, int $parsedLineNumber = null, string $parsedFilename… argument
39 self::$exceptionOnInvalidType = (bool) (Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE & $flags);
40 self::$objectSupport = (bool) (Yaml::PARSE_OBJECT & $flags);
41 self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags);
42 self::$constantSupport = (bool) (Yaml::PARSE_CONSTANT & $flags);
54 …* @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML pars…
61 public static function parse(string $value = null, int $flags = 0, array &$references = []) argument
63 self::initialize($flags);
78 $tag = self::parseTag($value, $i, $flags);
81 $result = self::parseSequence($value, $flags, $i, $references);
[all …]
H A DDumper.php47 … * @param int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string argument
55 …if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \std…
60 $output .= $prefix.Inline::dump($input, $flags);
62 $output .= $this->dumpTaggedValue($input, $inline, $indent, $flags, $prefix);
71 …if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value) && false !== strpos($value,…
84 …tput .= sprintf('%s%s%s |%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '', $b…
98 …$output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value-…
100 …if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue()) && false !== st…
114 $output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n";
[all …]
H A DYaml.php47 … * @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
53 public static function parseFile(string $filename, int $flags = 0) argument
57 return $yaml->parseFile($filename, $flags);
70 * @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
76 public static function parse(string $input, int $flags = 0) argument
80 return $yaml->parse($input, $flags);
92 * @param int $flags A bit field of DUMP_* constants to customize the dumped YAML string
94 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string argument
98 return $yaml->dump($input, $inline, 0, $flags);
/plugin/findologicxmlexport/vendor/symfony/yaml/
DInline.php38 * @param int $flags
42 public static function initialize($flags, $parsedLineNumber = null, $parsedFilename = null) argument
44 self::$exceptionOnInvalidType = (bool) (Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE & $flags);
45 self::$objectSupport = (bool) (Yaml::PARSE_OBJECT & $flags);
46 self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags);
47 self::$constantSupport = (bool) (Yaml::PARSE_CONSTANT & $flags);
59 … * @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
66 public static function parse(string $value = null, int $flags = 0, array $references = []) argument
68 self::initialize($flags);
83 $tag = self::parseTag($value, $i, $flags);
[all …]
DYaml.php46 … * @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
52 public static function parseFile(string $filename, int $flags = 0) argument
56 return $yaml->parseFile($filename, $flags);
69 * @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
75 public static function parse(string $input, int $flags = 0) argument
79 return $yaml->parse($input, $flags);
91 * @param int $flags A bit field of DUMP_* constants to customize the dumped YAML string
95 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string argument
99 return $yaml->dump($input, $inline, 0, $flags);
/plugin/timetrack/
Dsyntax.php45 $flags = explode('&', $command);
46 $flags = array_map('trim', $flags);
47 $flags = array_filter($flags);
49 $flags = $this->parseFlags($flags);
52 'flags' => $flags,
61 $flags = $data['flags'];
70 $project_name = $flags['project']['name'] ? $flags['project']['name'] : p_get_first_heading($ID);
71 $project_abbr = $flags['project']['id'] ? $flags['project']['id'] : noNS($ID);
175 …ct_id = $this->tthlp->updateProject($ID, $project_abbr, $project_name,$flags['from'],$flags['to']);
179 foreach($flags['tasks'] as $task_id => $task_name) {
[all …]
/plugin/asciidocjs/node_modules/minimist/
Dindex.js26 var flags = { variable
33 flags.unknownFn = opts.unknown;
37 flags.allBools = true;
40 flags.bools[key] = true;
48 return flags.bools[x];
62 flags.strings[key] = true;
65 flags.strings[k] = true;
75 return (flags.allBools && (/^--[^=]+$/).test(arg))
76 || flags.strings[key]
77 || flags.bools[key]
[all …]
/plugin/tagfilter/syntax/
Dfilter.php103 list($match, $flags) = array_pad(explode('&', $match, 2), 2, '');
104 $flags = explode('&', $flags);
124 $opts['tagfilterFlags'] = $HtagfilterSyntax->parseFlags($flags);
127 $opts['pagelistFlags'] = array_map('trim', $flags);
159 $flags = $opt['tagfilterFlags'];
175 if ($flags['cache']) {
176 $depends['age'] = $flags['cache'];
177 } else if ($flags['cache'] === false) {
183 'excludeNs' => $flags['excludeNs']
196 $cachedata[] = $HtagfilterSyntax->prepareList($cachedata[1], $flags);
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/
DEnsureFilterWorker.php31 private $flags; variable in Assetic\\Factory\\Worker\\EnsureFilterWorker
38 * @param integer $flags Flags for what to check
40 public function __construct($pattern, FilterInterface $filter, $flags = null) argument
42 if (null === $flags) {
43 $flags = self::CHECK_SOURCE | self::CHECK_TARGET;
48 $this->flags = $flags;
54 …(self::CHECK_SOURCE === (self::CHECK_SOURCE & $this->flags) && preg_match($this->pattern, $asset->…
56 …(self::CHECK_TARGET === (self::CHECK_TARGET & $this->flags) && preg_match($this->pattern, $asset->…
/plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/lib/
Dparser.js12 var flags = { arrays: {}, bools: {}, strings: {}, counts: {}, normalize: {}, configs: {} } variable
15 flags.arrays[key] = true
19 flags.bools[key] = true
23 flags.strings[key] = true
27 flags.counts[key] = true
31 flags.normalize[key] = true
35 flags.configs[key] = true
56 Object.keys(flags.bools).forEach(function (key) {
87 } else if (checkAllAliases(m[1], flags.arrays) && args.length > i + 1) {
105 } else if (checkAllAliases(key, flags.arrays) && args.length > i + 1) {
[all …]
/plugin/html2pdf/html2pdf/html2ps/
Dutils_array.php4 function any_flag_set(&$flags) { argument
5 for ($i=0, $size = count($flags); $i<$size; $i++) {
6 if ($flags[$i]) { return true; };
11 function expand_to_with_flags($size, $array, $flags) { argument
22 if (!$flags[$i]) { $size -= $array[$i]; };
27 for ($i=0, $count = count($flags); $i<$count; $i++) {
28 if ($flags[$i]) { $sum += $array[$i]; };
45 for ($i=0, $count = count($flags); $i < $count; $i++) {
46 if ($flags[$i]) { $array[$i] *= $koeff; };
/plugin/tag/syntax/
Dtopic.php50 list($match, $flags) = array_pad(explode('&', $match, 2), 2, '');
51 $flags = explode('&', $flags);
67 return [$ns, trim($tag), $flags];
79 list($ns, $tag, $flags) = $data;
83 foreach($flags as $flag) {
120 $flags = array_merge($configflags, $flags);
121 foreach($flags as $key => $flag) {
123 unset($flags[$key]);
127 $pagelist->setFlags($flags);

12345678910>>...15