Home
last modified time | relevance | path

Searched refs:strtoupper (Results 101 – 125 of 342) sorted by relevance

12345678910>>...14

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
H A DFileCommentSniff.php386 $newName = strtoupper($firstBit{0}).substr($firstBit, 1).'_';
389 $newName .= strtoupper($bit{0}).substr($bit, 1).'_';
431 $newName = strtoupper($firstBit{0}).substr($firstBit, 1).'_';
434 $newName .= strtoupper($bit{0}).substr($bit, 1).'_';
/plugin/icalevents/vendor/sabre/vobject/lib/Recur/
H A DRRuleIterator.php720 $key = strtoupper($key);
729 … throw new InvalidDataException('Unknown value for FREQ=' . strtoupper($value));
756 … throw new InvalidDataException(strtoupper($key) . ' in RRULE must be a positive integer!');
820 $this->weekStart = strtoupper($value);
824 throw new InvalidDataException('Not supported: ' . strtoupper($key));
/plugin/deeplautotranslate/
H A Daction.php305 $landing_page_text .= ' * [[.:' . $glossary['source_lang'] . '_' . $glossary['target_lang'] . '|' . strtoupper($glossary['source_lang']) . ' -> ' . strtoupper($glossary['target_lang']) . ']]' . "\n";
318 $page_text = '====== ' . $this->getLang('glossary_definition_heading') . ': ' . strtoupper($match[1]) . ' -> ' . strtoupper($match[2]) . ' ======' . "\n";
320 $page_text .= '^ ' . strtoupper($match[1]) . ' ^ ' . strtoupper($match[2]) . ' ^' . "\n";
655 'source_lang' => strtoupper(substr($this->get_default_lang(), 0, 2)), // cut of things like "-informal"
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/
H A DExclusionPolicy.php29 $this->policy = strtoupper($values['value']);
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DBoolean.php32 $val = 'TRUE' === strtoupper($val) ? true : false;
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DBoolean.php34 $val = strtoupper($val) === 'TRUE' ? true : false;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
H A DLowercaseFunctionKeywordsSniff.php69 strtoupper($content),
/plugin/webdav/vendor/sabre/vobject/lib/Recur/
H A DRRuleIterator.php686 $key = strtoupper($key);
694 … throw new InvalidDataException('Unknown value for FREQ='.strtoupper($value));
720 … throw new InvalidDataException(strtoupper($key).' in RRULE must be a positive integer!');
784 $this->weekStart = strtoupper($value);
788 throw new InvalidDataException('Not supported: '.strtoupper($key));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DIntegrationTest.php234 return strtoupper($value);
239 return strtoupper($value);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DFontWriter.php201 $toUnistring .= sprintf("<%02s> <%02s%02s%02s%02s>\n", strtoupper(dechex($cp)), strtoupper(dechex($l1)), strtoupper(dechex($h1)), strtoupper(dechex($l2)), strtoupper(dechex($h2)));
203 $toUnistring .= sprintf("<%02s> <%04s>\n", strtoupper(dechex($cp)), strtoupper(dechex($u)));
252 // $toUni .= sprintf("<00> <%02s>\n", strtoupper(dechex(count($font['subsets'][$sfid])-1)));
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/
H A DLowercaseClassKeywordsSniff.php73 strtoupper($content),
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
H A DEmptyStatementSniff.php99 $name = strtoupper($token['content']);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/
H A DLowercaseDeclarationSniff.php74 strtoupper($content),
/plugin/davcard/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php185 if ($componentName && $component->name !== strtoupper($componentName))
218 if ($componentName && $component->name !== strtoupper($componentName))
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php103 return 'DATE' !== strtoupper((string) $this['VALUE']);
311 if ('VALUE' !== strtoupper($name)) {
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php113 return strtoupper((string)$this['VALUE']) !== 'DATE';
347 if (strtoupper($name) !== 'VALUE') {
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php108 return strtoupper((string)$this['VALUE']) !== 'DATE';
334 if (strtoupper($name)!=='VALUE') {
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php108 return strtoupper((string)$this['VALUE']) !== 'DATE';
334 if (strtoupper($name)!=='VALUE') {
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php185 if ($componentName && $component->name !== strtoupper($componentName))
218 if ($componentName && $component->name !== strtoupper($componentName))
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php108 return strtoupper((string)$this['VALUE']) !== 'DATE';
334 if (strtoupper($name)!=='VALUE') {
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php185 if ($componentName && $component->name !== strtoupper($componentName))
218 if ($componentName && $component->name !== strtoupper($componentName))
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DUpperCaseConstantSniff.php63 $expected = strtoupper($keyword);
H A DLowerCaseConstantSniff.php75 if ($keyword === strtoupper($keyword)) {
/plugin/webdav/vendor/sabre/vobject/lib/Component/
H A DVFreeBusy.php34 …if (isset($freebusy['FBTYPE']) && 'BUSY' !== strtoupper(substr((string) $freebusy['FBTYPE'], 0, 4)…
/plugin/icalevents/vendor/sabre/vobject/lib/Component/
H A DVFreeBusy.php35 …if (isset($freebusy['FBTYPE']) && strtoupper(substr((string)$freebusy['FBTYPE'], 0, 4)) !== 'BUSY'…

12345678910>>...14