Lines Matching refs:string

49      * @var string
145 * @var string
210 * @param string $option option name
230 * @param string $filename Name of the file
249 * Reads bibtex from a string variable
252 * @param string $bib String containing bibtex
476 * Split entry in key and actual contents, call stringCallback for @string entries and bibItemCallback for all other entries.
478 * @param string $entry BibTeX entry, starting with @ and ending BEFORE the closing brace of the entry
479 * @param callable $stringCallback Will be called with two arguments (key, value) for @string entries
480 * @param callable $bibItemCallback Will be called with two arguments (key, full entry as string) for all non-@string entries
484 if ('@string' == strtolower(substr($entry, 0, 7))) {
489 $string = trim($m[0]);
491 call_user_func($stringCallback, $string, $entry);
512 * @param string $entry BibTeX entry, starting with @ and ending BEFORE the closing brace of the entry
526 $stringCallback = fn($key, $value) => $this->sqlite->query("INSERT OR REPLACE INTO strings (string, entry) VALUES (?,?)", $key, $value);
536 $stringCallback = fn($key, $value) => $this->_sqlStatements[] = array("INSERT OR REPLACE INTO strings (string, entry) VALUES (?,?)", array($key, $value));
587 * @param string $entry The entry
597 if ('@string' == strtolower(substr($entry, 0, 7))) {
652 // Handle string replacements
656 $stringReplacement = $this->sqlite->res2arr($this->sqlite->query("SELECT entry FROM strings WHERE string = ?",$value));
831 * @param string $entry The text of the whole remaining entry
839 //We check the string backwards until the position and count the closing an opening braces
890 * @param string $entry The entry to check
906 * @param string $entry The text of the entry until the at
954 * @param string $entry The entry where the Delimiter should be stripped from
955 * @return string Stripped entry
979 * @param string $entry The entry to unwrap
980 * @return string unwrapped entry
992 * @param string $entry The entry to wrap
993 * @return string wrapped entry
1007 * @param string $entry The entry with the authors
1137 * @param string $word
1144 (trim changes the variable automatically to a string!)*/
1170 // $ret = PEAR::raiseError('Could not determine case on word: '.(string)$word);
1183 * @param string $entry The entry aka one line which which should be validated
1184 * @param string $wholeentry The whole BibTex Entry which the one line is part of
1220 * @param string $value The value in which curly braces to be removed
1221 * @param string Value with removed curly braces
1253 * @param string $type The type of the warning
1254 * @param string $entry The line of the entry where the warning occurred
1255 * @param string $wholeentry OPTIONAL The whole entry where the warning occurred
1294 * @return string the formatted author string