Home
last modified time | relevance | path

Searched refs:previous (Results 76 – 100 of 556) sorted by last modified time

12345678910>>...23

/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);
H A DODTElementList.php82 * @param ODTStateElement $previous
84 public function determineParent(ODTStateElement $previous) { argument
85 $this->setParent($previous);
88 while (isset($previous)) {
89 if ($previous->getClass() == 'list') {
92 $previous = $previous->getParent();
94 if (isset($previous)) {
H A DODTElementListHeader.php68 * @param ODTStateElement $previous
70 public function determineParent(ODTStateElement $previous) { argument
71 while (isset($previous)) {
72 if ($previous->getClass() == 'list') {
75 $previous = $previous->getParent();
77 $this->setParent($previous);
H A DODTElementListItem.php68 * @param ODTStateElement $previous
70 public function determineParent(ODTStateElement $previous) { argument
71 while (isset($previous)) {
72 if ($previous->getClass() == 'list') {
75 $previous = $previous->getParent();
77 $this->setParent($previous);
H A DODTElementNote.php67 * @param ODTStateElement $previous
69 public function determineParent(ODTStateElement $previous) { argument
70 $this->setParent($previous);
H A DODTElementParagraph.php66 * @param ODTStateElement $previous
68 public function determineParent(ODTStateElement $previous) { argument
69 $this->setParent($previous);
H A DODTElementSpan.php70 * @param ODTStateElement $previous
72 public function determineParent(ODTStateElement $previous) { argument
73 $this->setParent($previous);
H A DODTElementTable.php131 * @param ODTStateElement $previous
133 public function determineParent(ODTStateElement $previous) { argument
134 $this->container->determineParent($previous);
137 $this->getParent()->determinePositionInContainer($this->containerPos, $previous);
H A DODTElementTableCell.php89 * @param ODTStateElement $previous
91 public function determineParent(ODTStateElement $previous) { argument
92 while (isset($previous)) {
93 if ($previous->getClass() == 'table') {
96 $previous = $previous->getParent();
98 $this->setParent($previous);
100 $curr_column = $previous->getTableCurrentColumn();
102 $previous->setTableCurrentColumn($curr_column);
105 $max_columns = $previous->getTableMaxColumns();
107 $previous->setTableMaxColumns($max_columns + 1);
H A DODTElementTableColumn.php67 * @param ODTStateElement $previous
69 public function determineParent(ODTStateElement $previous) { argument
70 $table = $previous;
H A DODTElementTableRow.php80 * @param ODTStateElement $previous
82 public function determineParent(ODTStateElement $previous) { argument
83 $table = $previous;
H A DODTElementTextBox.php66 * @param ODTStateElement $previous
68 public function determineParent(ODTStateElement $previous) { argument
69 $this->setParent($previous);
H A DODTRoot.php77 public function determineParent(ODTStateElement $previous) { argument
H A DODTStateElement.php174 abstract public function determineParent(ODTStateElement $previous); argument
/plugin/odt/
H A Ddeleted.files1 # This is a list of files that were present in previous plugin releases
/plugin/deeplautotranslate/
H A DLICENSE
/plugin/prosemirror/parser/
H A DHardBreakNode.php23 * @param Node|null $previous
25 public function __construct($data, Node $parent, Node $previous = null) argument
28 $this->textNode = new TextNode(['marks' => $data['marks'] ?? null], $parent, $previous);
H A DInlineNodeInterface.php8 public function __construct($data, Node $parent, Node $previous = null); argument
11 * If this node has that mark, increase its taillength and call this method on the previous node
H A DNode.php48 * @param Node|null $previous
52 public static function getSubNode($node, Node $parent, Node $previous = null)
57 return new self::$linkClasses[$linkType]($node, $parent, $previous);
61 return new self::$nodeclass[$node['type']]($node, $parent, $previous);
66 'previous' => $previous,
56 getSubNode($node, Node $parent, Node $previous = null) global() argument
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 DLinkNode.php12 public $previous = null;
26 $this->previous = &$previousNode;
10 public $previous = null; global() variable in dokuwiki\\plugin\\prosemirror\\parser\\LinkNode
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);
H A DTextNode.php9 public $previous = null; variable in dokuwiki\\plugin\\prosemirror\\parser\\TextNode
19 public function __construct($data, Node $parent, Node $previous = null) argument
22 if ($previous !== false) {
23 $this->previous = &$previous;
132 if ($this->previous !== null) {
133 $this->previous->increaseMark($type);
149 if ($this->previous !== null) {
150 $this->previous->increaseMark($markType);
156 if ($this === $this->previous) {
[all...]
/plugin/prosemirror/
H A DREADME.md72 chained together, so we can ask the previous node whether it has a given node or not
/plugin/orphanmedia2/
H A DLICENSE48 authors of previous versions.
459 give under the previous paragraph, plus a right to possession of the

12345678910>>...23