Home
last modified time | relevance | path

Searched refs:strings (Results 1 – 25 of 529) sorted by relevance

12345678910>>...22

/plugin/bibtex/OSBib/format/bibtexParse/
DPARSEENTRIES.php110 $this->preamble = $this->strings = $this->entries = array();
304 $this->strings[] = $entry;
347 if(!empty($this->strings) && !$preamble)
350 foreach($this->strings as $key => $value)
421 foreach($this->strings as $value)
429 $strings[trim($matches[0])] = trim($this->extractStringValue($matches[1]));
432 if(isset($strings))
433 $this->strings = $strings;
452 if(empty($this->strings))
453 $this->strings = FALSE;
[all …]
/plugin/newpagefill/
H A Dscript.js144 const strings = getStrings();
174 titleEl.textContent = strings.title;
175 titleLabel.textContent = strings.pageTitle;
176 namespaceLabel.textContent = strings.namespace;
177 modeLabel.textContent = strings.pageMode;
178 idLabel.textContent = strings.pageId;
179 cancelBtn.textContent = strings.cancel;
180 createBtn.textContent = strings.create;
191 {value: 'start', label: strings.pageModeStart},
192 {value: 'none', label: strings.pageModeNone},
[all …]
/plugin/asciidocjs/node_modules/babel-runtime/helpers/
DtaggedTemplateLiteralLoose.js5 exports.default = function (strings, raw) { argument
6 strings.raw = raw;
7 return strings;
DtaggedTemplateLiteral.js15 exports.default = function (strings, raw) { argument
16 return (0, _freeze2.default)((0, _defineProperties2.default)(strings, {
/plugin/asciidocjs/node_modules/handlebars/dist/amd/
Dprecompiler.js15 loadStrings(opts, function (err, strings) { argument
23 opts.templates = strings.concat(files);
32 var strings = arrayCast(opts.string),
35 if (names.length !== strings.length && strings.length > 1) {
39 _Async['default'].map(strings, function (string, callback) {
56 }, function (err, strings) { argument
57 strings = strings.map(function (string, index) {
64 callback(err, strings);
/plugin/asciidocjs/node_modules/handlebars/lib/
Dprecompiler.js10 loadStrings(opts, function(err, strings) { argument
18 opts.templates = strings.concat(files);
27 let strings = arrayCast(opts.string),
30 if (names.length !== strings.length && strings.length > 1) {
39 strings,
56 function(err, strings) { argument
57 strings = strings.map((string, index) => ({
62 callback(err, strings);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/
DEvalObjectFactorySniff.php63 $strings = array();
68 $strings[$i] = $tokens[$i]['content'];
104 $strings[$i] = $tokens[$i]['content'];
110 foreach ($strings as $string) {
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/
Dprecompiler.js30 loadStrings(opts, function (err, strings) { argument
38 opts.templates = strings.concat(files);
47 var strings = arrayCast(opts.string),
50 if (names.length !== strings.length && strings.length > 1) {
54 _neoAsync2['default'].map(strings, function (string, callback) {
71 }, function (err, strings) { argument
72 strings = strings.map(function (string, index) {
79 callback(err, strings);
/plugin/const/
Dclass.evalmath.php669 $strings = array();
670 $strings['an_unexpected_error_occurred'] = 'an unexpected error occurred';
671 $strings['cannot_assign_to_constant'] = 'cannot assign to constant \'{$error_data}\'';
672 …$strings['cannot_redefine_builtin_function'] = 'cannot redefine built-in function \'{$error_data}(…
673 $strings['division_by_zero'] = 'division by zero';
674 $strings['expecting_a_closing_bracket'] = 'expecting a closing bracket';
675 $strings['illegal_character_general'] = 'illegal character \'{$error_data}\'';
676 $strings['illegal_character_underscore'] = 'illegal character \'_\'';
677 $strings['internal_error'] = 'internal error';
678 $strings['operator_lacks_operand'] = 'operator \'{$error_data}\' lacks operand';
[all …]
/plugin/asciidocjs/node_modules/minimist/
Dindex.js28 strings: {}, property
62 flags.strings[key] = true;
65 flags.strings[k] = true;
76 || flags.strings[key]
122 var value = !flags.strings[key] && isNumber(val)
178 setArg(key, flags.strings[key] ? '' : true, arg);
212 setArg(letters[j], flags.strings[letters[j]] ? '' : true, arg);
230 setArg(key, flags.strings[key] ? '' : true, arg);
235 argv._.push(flags.strings._ || !isNumber(arg) ? arg : Number(arg));
/plugin/lightboxv2/
Dscript.js1 …="lightboxImage" /><div id="hoverNav"><a href="javascript://" title="'+a.strings.prevLinkTitle+'" …
2strings.nextLinkTitle+'"></a></div><div id="loading"><a href="javascript://" id="loadingLink"><img…
9strings.image+(a.activeImage+1)+a.strings.of+a.imageArray.length;a.displayDownloadLink&&(c+="<a hr…
10 …Array.length||a.loopImages)c+='<a title="'+a.strings.nextLinkTitle+'" href="#" id="nextLinkText">'…
15 …isplayDownloadLink:!1,slideNavBar:!1,navBarSlideSpeed:350,displayHelp:!1,strings:{help:" ← / P - p… property
/plugin/refnotes/
Dbibtex.php450 private $strings; variable in refnotes_bibtex_entry_stash
458 $this->strings = new refnotes_bibtex_strings();
486 … $this->entry[] = array_merge(array('note-name' => $name), $entry->getData($this->strings));
490 $data = $entry->getData($this->strings);
494 $this->strings->add($name, $data[$name]);
498 $data = $entry->getData($this->strings);
554 public function getData($strings) { argument
558 $data[$field->getName()] = $field->getValue($strings);
605 public function getValue($strings) { argument
612 $text = $strings->lookup(strtolower(trim($text)));
/plugin/bibtex4dw/db/
Dupdate0001.sql2 CREATE TABLE strings (string PRIMARY KEY, entry); table
4 CREATE UNIQUE INDEX idx_string ON strings(string);
/plugin/golocal/src/i18n/
Di18n.go34 baseLang := strings.Split(lang, "-")[0]
89 lang = strings.Split(lang, ".")[0] // Remove encoding part
90 lang = strings.ReplaceAll(lang, "_", "-")
/plugin/icalevents/vendor/sabre/uri/tests/
DSplitTest.php9 $strings = [
31 foreach ($strings as $input => $expected) {
/plugin/davcal/vendor/sabre/uri/tests/
H A DSplitTest.php9 $strings = [
31 foreach($strings as $input => $expected) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
DNamePrettifier.php29 protected $strings = []; variable in PHPUnit_Util_TestDox_NamePrettifier
76 if (in_array($string, $this->strings)) {
79 $this->strings[] = $string;
/plugin/advanced/lang/en/config/
Dentities.txt3 DokuWiki can replace certain characters or strings with other strings based on a configuration file…
/plugin/code3/src/
Dpsyhi.js60 var strings = { variable in PSyHi
133 var s = strings.lang[options.lang]||strings.lang.en;
157 strings.interface = printLangStrings(printToolbar(strings.interface));
175 tc.innerHTML = strings.interface.replace("{STRINGS}",s.join("")).replace("{ID}",id)
/plugin/findologicxmlexport/vendor/symfony/yaml/
DCHANGELOG.md21 flag to cast them to strings
63 * Deprecated support for implicitly parsing non-string mapping keys as strings.
64 Mapping keys that are no strings will lead to a `ParseException` in Symfony
65 4.0. Use quotes to opt-in for keys to be parsed as strings.
127 * Added support for dumping multi line strings as literal blocks.
158 in double-quoted strings
165 * When surrounding strings with double-quotes, you must now escape `\` characters. Not
/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md21 …rsing numbers starting with `0` as octal numbers. They will be parsed as strings as of Symfony 6.0…
42 * Removed support for mappings inside multi-line strings.
74 flag to cast them to strings
116 * Deprecated support for implicitly parsing non-string mapping keys as strings.
117 Mapping keys that are no strings will lead to a `ParseException` in Symfony
118 4.0. Use quotes to opt-in for keys to be parsed as strings.
180 * Added support for dumping multi line strings as literal blocks.
211 in double-quoted strings
218 * When surrounding strings with double-quotes, you must now escape `\` characters. Not
/plugin/asciidocjs/node_modules/chalk/source/
Dindex.js196 const chalkTag = (chalk, ...strings) => { argument
197 const [firstString] = strings;
202 return strings.join(' ');
205 const arguments_ = strings.slice(1);
/plugin/confmanager/lang/en/
Dentities.txt1 [[doku>DokuWiki]] can replace certain characters or strings with other strings based on a configura…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
Dfailure-isolation.phpt61 Failed asserting that two strings are equal.
72 Failed asserting that two strings are equal.
102 Failed asserting that two strings are identical.
Dfailure-reverse-list.phpt52 Failed asserting that two strings are identical.
80 Failed asserting that two strings are equal.
93 Failed asserting that two strings are equal.

12345678910>>...22