/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ |
H A D | ValidFunctionNameSniff.php | 194 $functionName = $phpcsFile->getDeclarationName($stackPtr); 195 if ($functionName === null) { 200 if (ltrim($functionName, '_') === '') { 205 $errorData = array($functionName); 208 if (preg_match('|^__[^_]|', $functionName) !== 0) { 209 $magicPart = strtolower(substr($functionName, 2)); 222 $underscorePos = strrpos($functionName, '_'); 224 $camelCapsPart = $functionName; 226 $packagePart = substr($functionName, 0, $underscorePos); 235 if ($functionName{0} === '_') { [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/ |
H A D | GoogleCloudRetailLoggingSourceLocation.php | 25 public $functionName; variable in Google\\Service\\CloudRetail\\GoogleCloudRetailLoggingSourceLocation 30 public function setFunctionName($functionName) argument 32 $this->functionName = $functionName; 39 return $this->functionName;
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/ |
H A D | SecurityNotAllowedFunctionError.php | 21 private $functionName; variable in Twig\\Sandbox\\SecurityNotAllowedFunctionError 23 …public function __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $p… argument 26 $this->functionName = $functionName; 31 return $this->functionName;
|
H A D | SecurityNotAllowedFilterError.php | 23 …public function __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $p… argument 26 $this->filterName = $functionName;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Logging/ |
H A D | SourceLocation.php | 29 public $functionName; variable in Google\\Service\\Logging\\SourceLocation 52 public function setFunctionName($functionName) argument 54 $this->functionName = $functionName; 61 return $this->functionName;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Clouderrorreporting/ |
H A D | SourceLocation.php | 29 public $functionName; variable in Google\\Service\\Clouderrorreporting\\SourceLocation 52 public function setFunctionName($functionName) argument 54 $this->functionName = $functionName; 61 return $this->functionName;
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ |
H A D | ValidFunctionNameSniff.php | 50 $functionName = $phpcsFile->getDeclarationName($stackPtr); 51 if ($functionName === null) { 55 $errorData = array($functionName); 58 if (preg_match('|^__[^_]|', $functionName) !== 0) { 64 if (PHP_CodeSniffer::isCamelCaps($functionName, false, true, false) === false) {
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/ |
H A D | ReturnFunctionValueSniff.php | 55 $functionName = $phpcsFile->findNext(T_STRING, ($stackPtr + 1), null, false, null, true); 57 while ($functionName !== false) { 59 $bracket = $phpcsFile->findNext(T_WHITESPACE, ($functionName + 1), null, true); 62 … $functionName = $phpcsFile->findNext(T_STRING, ($functionName + 1), null, false, null, true);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ |
H A D | CamelCapsFunctionNameSniff.php | 188 $functionName = $phpcsFile->getDeclarationName($stackPtr); 189 if ($functionName === null) { 194 $errorData = array($functionName); 197 if (preg_match('|^__[^_]|', $functionName) !== 0) { 198 $magicPart = strtolower(substr($functionName, 2)); 208 $functionName = ltrim($functionName, '_'); 210 if (PHP_CodeSniffer::isCamelCaps($functionName, false, true, $this->strict) === false) {
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Script/ |
H A D | GoogleAppsScriptTypeProcess.php | 29 public $functionName; variable in Google\\Service\\Script\\GoogleAppsScriptTypeProcess 68 public function setFunctionName($functionName) argument 70 $this->functionName = $functionName; 77 return $this->functionName;
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/ |
H A D | GlobalFunctionSniff.php | 60 $functionName = $phpcsFile->getDeclarationName($stackPtr); 61 if ($functionName === null) { 66 if ($functionName !== '__autoload') { 68 $data = array($functionName);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/ |
H A D | DisallowSizeFunctionsInLoopsSniff.php | 100 $functionName = $tokens[$i]['content']; 108 $functionName = 'object.'.$functionName; 115 $functionName .= '()'; 119 $data = array($functionName);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTrace/ |
H A D | StackFrame.php | 72 public function setFunctionName(TruncatableString $functionName) argument 74 $this->functionName = $functionName; 81 return $this->functionName;
|
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/Visitor/ |
H A D | Arithmetic.php | 175 $functionName = 'unknown_function' 178 ->object($compiler->parse($functionName . '() * 2')) 180 ->exception(function () use ($functionName, $compiler, $visitor) { 181 $visitor->visit($compiler->parse($functionName . '() * 2')); 192 $functionName = 'a_function', 195 ->when($visitor->addFunction($functionName, function () use ($functionResult) { 199 ->float($visitor->visit($compiler->parse($functionName . '() * 2')))
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ |
H A D | DeprecatedFunctionsSniff.php | 55 foreach ($functions['internal'] as $functionName) { 56 $function = new ReflectionFunction($functionName); 62 $this->forbiddenFunctions[$functionName] = null;
|
/plugin/elasticsearch/vendor/nyholm/dsn/src/ |
H A D | DsnParser.php | 38 $functionName = $matches[1]; 42 $functionName = 'dsn'; 47 throw new SyntaxException($dsn, 'dsn' === $functionName ? 'The DSN is empty' : 'A function must have arguments, an empty string was provided.'); 55 return new DsnFunction($functionName, array_map(\Closure::fromCallable([self::class, 'parseArguments']), $arguments), $parameters);
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/ |
H A D | File.php | 656 foreach ($functions as $functionName => $function) { 657 $this->functions[$functionName] = [ 658 'functionName' => $functionName, 669 $this->startLines[$function['startLine']] = &$this->functions[$functionName]; 670 $this->endLines[$function['endLine']] = &$this->functions[$functionName];
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/ |
H A D | CallTimePassByReferenceSniff.php | 78 $functionName = $stackPtr; 81 ($functionName + 1),
|
H A D | FunctionCallArgumentSpacingSniff.php | 69 $functionName = $stackPtr; 79 …$openBracket = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($functionName + 1), nul…
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/ |
H A D | StaticThisUsageSniff.php | 68 $functionName = $function['content'];
|
/plugin/jplayer/vendor/symfony/process/ |
H A D | Process.php | 1677 * @param string $functionName The function name that was called 1681 private function requireProcessIsStarted($functionName) argument 1684 …throw new LogicException(sprintf('Process must be started before calling "%s()".', $functionName)); 1691 * @param string $functionName The function name that was called 1695 private function requireProcessIsTerminated($functionName) argument 1698 …ow new LogicException(sprintf('Process must be terminated before calling "%s()".', $functionName));
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
H A D | Script.php | 140 'userProcessFilter.functionName' => [ 196 'scriptProcessFilter.functionName' => [
|
/plugin/combo/vendor/symfony/process/ |
H A D | Process.php | 1593 private function requireProcessIsStarted(string $functionName) argument 1596 throw new LogicException(sprintf('Process must be started before calling "%s()".', $functionName)); 1605 private function requireProcessIsTerminated(string $functionName) argument 1608 throw new LogicException(sprintf('Process must be terminated before calling "%s()".', $functionName));
|
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | DrawioFile.js | 464 DrawioFile.prototype.checksumError = function(error, patches, details, etag, functionName) argument 502 this.sendErrorReport('Checksum Error in ' + functionName + ' ' + this.getHash(), 531 EditorUi.logError('Checksum Error in ' + functionName + ' ' + this.getId(), 540 action: functionName, label: 'user_' + uid + ((this.sync != null) ?
|
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/ |
H A D | twig.c | 245 static int TWIG_CALL_BOOLEAN(zval *object, char *functionName TSRMLS_DC) in TWIG_CALL_BOOLEAN() 250 ret = TWIG_CALL_USER_FUNC_ARRAY(object, functionName, NULL TSRMLS_CC); in TWIG_CALL_BOOLEAN()
|