Lines Matching refs:text
113 $text = $node->getText();
145 $variableName = strtolower($text);
176 $variableName = strtolower($text);
183 $this->columns[] = $text;
197 $this->physicalSql .= "{$text} ";
211 ($text[0] === "'" and $text[strlen($text) - 1] === "'")
213 ($text[0] === '"' and $text[strlen($text) - 1] === '"')) {
214 $quote = $text[0];
215 $text = substr($text, 1, strlen($text) - 2);
216 $text = str_replace("$quote$quote", "$quote", $text);
218 $this->parameters[] = $text;
226 $this->physicalSql .= " {$text}\n";
231 $this->physicalSql .= "{$text} ";
237 $this->physicalSql .= "{$text}";
244 $this->physicalSql .= "{$text}\n";
247 $this->physicalSql .= "{$text}";
251 $this->physicalSql .= " {$text} ";
256 $this->physicalSql .= "{$text}";
264 $predicateValue = DataType::toInteger($text);
267 …LogUtility::msg("The value of the depth attribute ($text) is not an integer", LogUtility::LVL_MSG_…
273 $this->parameters[] = $text;
278 if (strpos($text, ".") !== false) {
279 $this->parameters[] = DataType::toFloat($text);
281 $this->parameters[] = DataType::toInteger($text);
284 …LogUtility::error("The value of the column $this->actualPredicateColumn ($text) could not be trans…
285 $this->parameters[] = $text;
292 $this->physicalSql .= "{$text} ";