Home
last modified time | relevance | path

Searched refs:getText (Results 26 – 50 of 270) sorted by last modified time

1234567891011

/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverAlert.php52 public function getText() function in Facebook\\WebDriver\\WebDriverAlert
H A DWebDriverElement.php88 public function getText(); function
H A DWebDriverSelect.php118 // webdriver, use the expensive getText() to check if nothing is matched.
121 if ($option->getText() === $text) {
H A DAbstractWebDriverCheckboxOrRadio.php171 // webdriver, use the expensive getText() to check if nothing is matched.
172 if ($text !== $element->findElement(WebDriverBy::xpath($xpath))->getText()) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md81 echo $ctx->getText();
/plugin/combo/vendor/php-webdriver/webdriver/
H A DREADME.md176 echo 'About to click to a button with text: ' . $historyButton->getText();
/plugin/combo/ComboStrap/
H A DPageSqlTreeListener.php113 $text = $node->getText();
288 $textMakingTheError = $node->getText(); // $this->lexer->getText();
343 $this->physicalSql .= $ctx->getText();
347 $tableName = strtolower($ctx->getText());
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php476 $s .= $t->getText();
482 public function getText() : string function in Antlr\\Antlr4\\Runtime\\BufferedTokenStream
H A DCharStream.php20 public function getText(int $start, int $stop) : string; function
H A DCommonToken.php59 * This is the backing field for {@see CommonToken::getText()} when the token
62 * @see CommonToken::getText()
139 * {@see CommonToken::getText()}, and {@see CommonToken::source()} will be
176 public function getText() : ?string function in Antlr\\Antlr4\\Runtime\\CommonToken
191 return $input->getText($this->start, $this->stop);
199 * {@see CommonToken::getText()} will return this value rather than
295 StringUtils::escapeWhitespace($this->getText() ?? ''),
H A DLexer.php415 public function getText() : string function in Antlr\\Antlr4\\Runtime\\Lexer
425 return $this->input === null ? '' : $this->interp->getText($this->input);
531 $text = $this->input->getText($start, $stop);
H A DParserTraceListener.php29 $token === null? '' : $token->getText() ?? ''
50 $token === null? '' : $token->getText() ?? ''
H A DCommonTokenFactory.php20 * implementation of {@see CharStream::getText()} in
23 * allows {@see Token::getText()} to be called at any time regardless of the
82 $token->setText($source->b->getText($start, $stop));
H A DInputStream.php132 public function getText(int $start, int $stop) : string function in Antlr\\Antlr4\\Runtime\\InputStream
H A DRuleContext.php135 public function getText() : string function in Antlr\\Antlr4\\Runtime\\RuleContext
143 $text .= $child->getText();
H A DToken.php53 public function getText() : ?string; function
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php748 return $symbol->getText();
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DLexerNoViableAltException.php51 $symbol = $input->getText($this->startIndex, $this->startIndex);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTree.php47 public function getText() : ?string; function
/plugin/prosemirror/schema/
H A DNode.php72 public function getText() function in dokuwiki\\plugin\\prosemirror\\schema\\Node
158 if ($this->content[0]->getText() === '') {
181 if ($this->content[$contentLength]->getText() === '') {
/plugin/blogtng/entities/
H A DComment.php260 public function getText() function in dokuwiki\\plugin\\blogtng\\entities\\Comment
/plugin/blogtng/helper/
H A Dcomments.php117 $comment->getText(),
154 $comment->getText(),
251 'COMMENT' => $comment->getText(),
508 ->val($comment->getText());
/plugin/blogtng/
H A Dadmin.php683 …"comment_text" title="'.$this->getLang('comment_text').'">' . hsc($comment->getText()) . '</div>');
806 …tarea class="edit" name="comment-text" rows="10" cols="80">' . $comment->getText() . '</textarea>'…
/plugin/do/scripts/
H A DPluginDo.js474 var txt = PluginDo.old_select.getText();
519 var stxt = sel.getText();
/plugin/ifauthex/lib/
H A Dexceptions.php23 public function getText() { return $this->_text; } function in AST\\UnknownTokenException

1234567891011