Home
last modified time | relevance | path

Searched refs:previous (Results 51 – 75 of 556) sorted by relevance

12345678910>>...23

/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/Exception/
H A DHttpException.php25 \Exception $previous = null
28 parent::__construct($message, $httpStatus, $previous);
H A DInvalidRequestException.php27 \Exception $previous = null
30 parent::__construct($message, $httpStatus, $uri, $previous);
/plugin/bez/meta/
H A DValidationException.php10 public function __construct($table, $validaion_errors, $code = 0, Exception $previous = null) { argument
15 parent::__construct($message, $code, $previous);
/plugin/authgooglesheets/vendor/google/apiclient/src/Service/
H A DException.php42 Exception $previous = null, argument
46 parent::__construct($message, $code, $previous);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DBadResponseException.php16 \Exception $previous = null,
25 parent::__construct($message, $request, $response, $previous, $handlerContext);
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityNotAllowedMethodError.php24 …uct($message, $className, $methodName, $lineno = -1, $filename = null, \Exception $previous = null) argument
26 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedPropertyError.php24 …t($message, $className, $propertyName, $lineno = -1, $filename = null, \Exception $previous = null) argument
26 parent::__construct($message, $lineno, $filename, $previous);
/plugin/oauth/
H A DException.php19 * @param \Throwable|null $previous
21 public function __construct($message = "", $context = [], $code = 0, \Throwable $previous = null) argument
23 parent::__construct($message, $code, $previous);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTeamCity.php346 $previous = $e->getPrevious();
348 while ($previous) {
350 PHPUnit_Framework_TestFailure::exceptionToString($previous) . "\n" .
351 PHPUnit_Util_Filter::getFilteredStacktrace($previous);
353 $previous = $previous->getPrevious();
/plugin/prosemirror/parser/
H A DPluginNode.php10 public function __construct($data, Node $parent, Node $previous = null) argument
12 $this->textNode = new TextNode($data['content'][0], $this, $previous);
H A DSmileyNode.php15 public function __construct($data, Node $parent, Node $previous = null) argument
21 $this->textNode = new TextNode(['marks' => $data['marks'] ?? null], $parent, $previous);
/plugin/findologicxmlexport/vendor/hoa/exception/
H A DException.php67 $previous = null argument
69 parent::__construct($message, $code, $arguments, $previous);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DException.php38 public function __construct($message = '', $code = 0, Exception $previous = null) argument
40 parent::__construct($message, $code, $previous);
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/
H A DDelimiterInterface.php49 public function setPrevious(?DelimiterInterface $previous): void;
70 setPrevious(DelimiterInterface $previous) global() argument
/plugin/combo/ComboStrap/
H A DExceptionNotEquals.php19 public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
21 parent::__construct($message, $canonical, $code, $previous);
H A DCallStack.php34 * * {@link CallStack::previous()}
297 * And go to the previous position
326 * Move to the previous element
429 while ($actualCall = $this->previous()) {
454 * @return Call|false the previous call or false if there is no more previous call
457 function previous() function in ComboStrap\\CallStack
680 $this->previous();
709 $this->previous();
712 $this->previous();
[all...]
H A DLogUtility.php389 * @param Throwable|null $previous
392 public static function internalError(string $message, string $canonical = "support", Throwable $previous = null) argument
396 throw new ExceptionRuntimeInternal("$internalErrorMessage - $message", $canonical, 1, $previous);
399 if ($previous !== null) {
400 $errorPreviousMessage = " Error: {$previous->getMessage()}";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Common/Exceptions/Serializer/
H A DJsonErrorException.php56 public function __construct($code, $input, $result, $previous = null) argument
62 parent::__construct(self::$messages[$code], $code, $previous);
/plugin/diagramsnet/lib/js/diagramly/
H A DDiffSync.js81 if (pageDiff.previous != null)
83 moved[pageDiff.previous] = id;
101 diff[EditorUi.DIFF_UPDATE][pageId].previous == null))
270 var prev = (temp.previous != null) ? temp.previous : '';
281 if (temp.previous != null)
302 getLookup(par).moved[temp.previous] = id;
453 (diff[EditorUi.DIFF_UPDATE][cellId].previous == null &&
741 previous: (newPage.prev != null) ?
936 EditorUi.prototype.getJsonForCell = function(cell, previous) argument
960 if (previous != null)
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DLineFormatter.php151 if ($previous = $e->getPrevious()) {
153 $str .= "\n[previous exception] " . $this->formatException($previous);
154 } while ($previous = $previous->getPrevious());
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Formatting/
H A DOperatorBracketSniff.php92 $previous = $phpcsFile->findPrevious(T_WHITESPACE, ($stackPtr - 1), null, true);
93 if ($previous !== false) {
94 … $isAssignment = in_array($tokens[$previous]['code'], PHP_CodeSniffer_Tokens::$assignmentTokens);
95 … $isEquality = in_array($tokens[$previous]['code'], PHP_CodeSniffer_Tokens::$equalityTokens);
96 … $isComparison = in_array($tokens[$previous]['code'], PHP_CodeSniffer_Tokens::$comparisonTokens);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Exception/
H A DFilterException.php43 public function __construct($message, $code = 0, \Exception $previous = null) argument
45 parent::__construct($message, $code, $previous);
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DEditorPalette.java185 JLabel previous = selectedEntry; in setSelectionEntry() local
188 if (previous != null) in setSelectionEntry()
190 previous.setBorder(null); in setSelectionEntry()
191 previous.setOpaque(false); in setSelectionEntry()
201 selectedEntry, "transferable", t, "previous", previous)); in setSelectionEntry()
/plugin/odt/ODT/elements/
H A DODTElementFrame.php87 * @param ODTStateElement $previous
89 public function determineParent(ODTStateElement $previous) { argument
90 $this->container->determineParent($previous);
93 $this->getParent()->determinePositionInContainer($this->containerPos, $previous);
/plugin/authgoogle/google/
H A DGoogle_Client.php440 * @param Exception|null $previous
444 public function __construct($message, $code = 0, Exception $previous = null, argument
447 parent::__construct($message, $code, $previous);

12345678910>>...23