| /plugin/asciidocjs/node_modules/esutils/lib/ |
| D | keyword.js | 46 function isKeywordES5(id, strict) { argument 48 if (!strict && id === 'yield') { 51 return isKeywordES6(id, strict); 54 function isKeywordES6(id, strict) { argument 55 if (strict && isStrictModeReservedWordES6(id)) { 85 function isReservedWordES5(id, strict) { argument 86 return id === 'null' || id === 'true' || id === 'false' || isKeywordES5(id, strict); 89 function isReservedWordES6(id, strict) { argument 90 return id === 'null' || id === 'true' || id === 'false' || isKeywordES6(id, strict); 145 function isIdentifierES5(id, strict) { argument [all …]
|
| /plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/ |
| H A D | Context.php | 224 * @param boolean $strict strict search? if not found then throw exception 229 public function get($variableName, $strict = false) argument 236 return $this->getDataVariable($variableName, $strict); 245 if ($strict) { 260 if ($strict) { 274 $current = $this->findVariableInContext($current, $chunk, $strict); 284 * @param bool $strict 288 public function getDataVariable($variableName, $strict = false) argument 298 if ($strict) { 318 if ($strict) { [all …]
|
| /plugin/htmlsafe/ |
| D | syntax.php | 42 $strict = strtolower(str_replace(',',' ',$this->getConf('filter'))); 43 $strict = array_unique(array_filter(explode(' ',$strict))); 44 $strict = implode( "|", $strict ); 45 $renderer->doc .= preg_replace( "/<(\/?)($strict)(\s|>)/i", "<$1$2$3", $content );
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/ |
| D | ArraySubset.php | 27 protected $strict; variable in PHPUnit_Framework_Constraint_ArraySubset 31 * @param bool $strict Check for object identity 33 public function __construct($subset, $strict = false) argument 36 $this->strict = $strict; 57 if ($this->strict) {
|
| /plugin/openid/Auth/OpenID/ |
| D | KVForm.php | 29 * @param bool $strict 32 static function toArray($kvs, $strict=false) argument 39 if ($strict) { 50 if ($strict) { 59 if ($strict) { 67 if ($strict) {
|
| D | SReg.php | 288 * @param bool $strict 291 function parseExtensionArgs($args, $strict=false) argument 298 if (!$this->requestField($field_name, $required, $strict)) { 299 if ($strict) { 354 * @param bool $strict 358 $required=false, $strict=false) argument 364 if ($strict) { 405 * @param bool $strict 408 function requestFields($field_names, $required=false, $strict=false) argument 415 if (!$this->requestField($field_name, $required, $strict)) {
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/ |
| D | DataValidationRule.php | 35 public $strict; variable in Google\\Service\\Sheets\\DataValidationRule 82 public function setStrict($strict) argument 84 $this->strict = $strict; 91 return $this->strict;
|
| /plugin/fedauth/Auth/OpenID/ |
| D | KVForm.php | 29 static function toArray($kvs, $strict=false) argument 36 if ($strict) { 47 if ($strict) { 56 if ($strict) { 64 if ($strict) {
|
| D | SReg.php | 262 function parseExtensionArgs($args, $strict=false) argument 269 if (!$this->requestField($field_name, $required, $strict)) { 270 if ($strict) { 321 $required=false, $strict=false) argument 327 if ($strict) { 366 function requestFields($field_names, $required=false, $strict=false) argument 373 if (!$this->requestField($field_name, $required, $strict=$strict)) {
|
| /plugin/asciidocjs/node_modules/esutils/ |
| D | README.md | 89 #### keyword.isKeywordES5(id, strict) 94 respectively. If the `strict` flag is truthy, this function additionally checks whether 95 `id` is a Keyword or Future Reserved Word under strict mode. 97 #### keyword.isKeywordES6(id, strict) 103 respectively. If the `strict` flag is truthy, this function additionally checks whether 104 `id` is a Keyword or Future Reserved Word under strict mode. 106 #### keyword.isReservedWordES5(id, strict) 110 If the `strict` flag is truthy, this function additionally checks whether `id` 111 is a Reserved Word under strict mode. 113 #### keyword.isReservedWordES6(id, strict) [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | PermalinkTag.php | 32 $strict = $attributes->getBooleanValueAndRemoveIfPresent(TagAttributes::STRICT, true); 51 $strict, 65 $strict, 94 return self::handleError($errorMessage, $strict, $callStack); 119 $strict, 126 …public static function handleError(string $errorMessage, bool $strict, CallStack $callStack): array argument 130 if ($strict) {
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
| D | XML.php | 34 * @param bool $strict 38 … static function load($actual, $isHtml = false, $filename = '', $xinclude = false, $strict = false) argument 91 if ($loaded === false || ($strict && $message !== '')) { 117 * @param bool $strict 121 public static function loadFile($filename, $isHtml = false, $xinclude = false, $strict = false) argument 136 return self::load($contents, $isHtml, $filename, $xinclude, $strict);
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/Constraint/ |
| D | ArraySubsetTest.php | 17 * @param bool $strict 20 public function testEvaluate($expected, $subset, $other, $strict) argument 22 $constraint = new PHPUnit_Framework_Constraint_ArraySubset($subset, $strict);
|
| /plugin/asciidocjs/node_modules/is-expression/ |
| D | index.js | 10 strict: false, property 20 if (options.strict) { 21 parser.strict = true;
|
| D | README.md | 27 - `strict`: Use strict mode when trying to parse the string. Defaults to 29 `options.sourceType === 'module'` which imples strict mode under ES2015, 30 strict mode will be used. 55 isExpression('public', {strict: true})
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
| H A D | Entry.php | 149 * @param bool $strict If set to true, then options on the attribute must also match. 152 public function get($attribute, bool $strict = false): ?Attribute argument 157 if ($attr->equals($attribute, $strict)) { 169 * @param bool $strict 172 public function has($attribute, bool $strict = false): bool argument 176 return (bool) $this->get($attribute, $strict);
|
| H A D | Attribute.php | 235 * @param bool $strict If set to true, then options must also match. 238 public function equals(Attribute $attribute, bool $strict = false): bool argument 252 if ($strict || $attribute->hasOptions()) {
|
| /plugin/asciidocjs/node_modules/acorn/ |
| D | CHANGELOG.md | 14 Check for use of `'use strict'` directives in non-simple parameter 15 functions, even when already in strict mode. 38 Don't raise an error when a function _inside_ strict code has a 46 even relatively small source files) introduced by the new 'use strict' 61 Allow `"use strict"` to appear after other string literal expressions. 79 branches in loose mode. Forbid them entirely in strict mode. 139 enable strict mode in ES7. 201 mostly use them as identifiers in ES5 non-strict code. 227 Disallow `\00` and `\000` escapes in strict mode. 282 strict mode.
|
| /plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/ |
| D | utf8.php | 707 * @param boolean $strict Check for invalid sequences? 710 function utf8_to_unicode($str,$strict=false) { argument 775 } elseif($strict) { 819 if($strict){ 842 } elseif($strict) { 877 * @param boolean $strict Check for invalid sequences? 886 function unicode_to_utf8($arr,$strict=false) { argument 912 if($strict){ 936 } elseif($strict) {
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/ |
| D | strict_comparison_operator.test | 2 The PHP === strict comparison operator is not supported 6 … Unexpected operator of value "=". Did you try to use "===" or "!==" for strict comparison? Use "i…
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/ |
| D | help2.phpt | 50 --report-useless-tests Be strict about tests that do not test anything. 51 --strict-coverage Be strict about @covers annotation usage. 52 --strict-global-state Be strict about changes to global state 53 --disallow-test-output Be strict about output during tests. 54 --disallow-resource-usage Be strict about resource usage during small tests.
|
| D | help.phpt | 49 --report-useless-tests Be strict about tests that do not test anything. 50 --strict-coverage Be strict about @covers annotation usage. 51 --strict-global-state Be strict about changes to global state 52 --disallow-test-output Be strict about output during tests. 53 --disallow-resource-usage Be strict about resource usage during small tests.
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ |
| D | CamelCapsFunctionNameSniff.php | 94 public $strict = true; variable in Generic_Sniffs_NamingConventions_CamelCapsFunctionNameSniff 155 if (PHP_CodeSniffer::isCamelCaps($methodName, false, true, $this->strict) === false) { 210 if (PHP_CodeSniffer::isCamelCaps($functionName, false, true, $this->strict) === false) {
|
| /plugin/asciidocjs/node_modules/ejs/ |
| D | usage.txt | 11 -s, --strict When set to `true`, generated function is in strict mode 12 …-with Use 'locals' object for vars rather than using `with` (implies --strict).
|
| /plugin/asciidocjs/node_modules/once/ |
| D | README.md | 53 ## `once.strict(func)` 77 // once.strict will print 'Hello anonymous' and throw an error when the callback will be called the… 78 greet(null, once.strict(msg))
|