Lines Matching refs:case

97 /** Leave keywords found as the case that they are */
1315 * Sets whether a set of keywords are checked for in a case sensitive manner
1317 * @param int $key The key of the keyword group to change the case sensitivity of
1318 * @param boolean $case Whether to check in a case sensitive manner or not
1321 public function set_case_sensitivity($key, $case) {
1322 $this->language_data['CASE_SENSITIVE'][$key] = ($case) ? true : false;
1326 * Sets the case that keywords should use when found. Use the constants:
1332 * @param int $case A constant specifying what to do with matched keywords
1335 public function set_case_keywords($case) {
1336 if (in_array($case, array(
1338 $this->language_data['CASE_KEYWORDS'] = $case;
1616 * @param boolean $case_sensitive Whether the keyword group is case sensitive ornot
2083 //All this formats are matched case-insensitively!
2999 // case sensitive comments
3002 // non case sensitive
3214 * Changes the case of a keyword for those languages where a change is asked for
3216 * @param string $instr The keyword to change the case of
3217 * @return string The keyword with its case changed
3222 case GESHI_CAPS_UPPER:
3224 case GESHI_CAPS_LOWER:
3257 // New system: get keyword from language file to get correct case
3694 // comment out if more performance is necessary (in this case the foreach loop will trigger a warning if the argument is not an array)
3697 // also array_merge_recursive returns nothing in this case
3703 // the first array is in the output set in every case
3711 // in this case the call will trigger an E_USER_WARNING and the $ret[$key] will be false.
3796 //You need to set one for HARDESCAPES only in this case.
4308 case ENT_NOQUOTES: // don't convert double quotes
4311 case ENT_QUOTES: // convert single quotes as well
4408 case GESHI_LINK:
4411 case GESHI_HOVER:
4414 case GESHI_ACTIVE:
4417 case GESHI_VISITED: