Lines Matching full:keyword
145 /** The key of the regex array defining a custom keyword to use
512 * Default target for keyword links
911 * Sets the style for a keyword group. If $preserve_defaults is
915 * @param int The key of the keyword group to change the styles of
922 //Set the style for this keyword group
936 * Turns highlighting on/off for a keyword group
938 * @param int The key of the keyword group to turn on or off
1198 * @param int The key of the keyword group to change the case sensitivity of
1435 * Adds a keyword to a keyword group for highlighting
1437 * @param int The key of the keyword group to add the keyword to
1438 * @param string The word to add to the keyword group
1454 keyword from a keyword group
1456 * @param int The key of the keyword group to remove the keyword from
1457 * @param string The word to remove from the keyword group
1461 * or the removed keyword will stay in cache and still be highlighted! On the other hand
1471 //NEW in 1.0.8, optionally recompile keyword group
1479 * Creates a new keyword group
1481 * @param int The key of the keyword group to create
1482 * @param string The styles for the keyword group
1483 * @param boolean Whether the keyword group is case sensitive ornot
1484 * @param array The words to use for the keyword group
1494 //Add the new keyword group internally
1500 //NEW in 1.0.8, cache keyword regexp
1507 * Removes a keyword group
1509 * @param int The key of the keyword group to remove
1513 //Remove the keyword group internally
1524 * compile optimized regexp list for keyword group
1526 * @param int The key of the keyword group to compile & optimize
1607 * @param int The key of the keyword group to set the URL for
1609 * the url somewhere, it is replaced by the keyword
1901 // cache optimized regexp for keyword matching
3067 * Changes the case of a keyword for those languages where a change is asked for
3069 * @param string The keyword to change the case of
3070 * @return string The keyword with its case changed
3088 * @param string The keyword to add the Markup to
3093 * @todo Get rid of ender in keyword links
3097 $keyword = $match[0];
3103 // Keyword links have been ebabled
3107 // There is a base group for this keyword
3110 //$keyword = ( $this->language_data['CASE_SENSITIVE'][$group] ) ? $keyword : strtolower($keyword);
3111 // New system: get keyword from language file to get correct case
3115 if (strcasecmp($word, $keyword) == 0) {
3120 $word = $keyword;
3141 return $before . '<|/'. $k .'/>' . $this->change_case($keyword) . '|>' . $after;
3197 * @param string The string to parse for keyword, numbers etc.
3268 $x = 0; // check wether per-keyword-group parser_control is enabled
3296 // NEW in 1.0.8 - per-keyword-group parser control
3319 // get highlighted if the language has a CSS keyword in it (like CSS, for example ;))