Lines Matching refs:matchUserAgent
369 return !!$this->matchUserAgent($regex);
781 return !!$this->matchUserAgent($regex);
793 return !!$this->matchUserAgent($regex);
805 return !!$this->matchUserAgent($regex);
817 return !!$this->matchUserAgent($regex);
962 && $this->matchUserAgent('Chrome/[.0-9]*')
964 if ($this->matchUserAgent('(?:Mobile|eliboM)')) {
974 …if (AbstractDeviceParser::DEVICE_TYPE_SMARTPHONE === $this->device && $this->matchUserAgent('Pad/A…
982 || $this->matchUserAgent('Opera Tablet'))
1052 if (null === $this->device && $this->matchUserAgent('Puffin/(?:\d+[.\d]+)[LMW]D')) {
1059 if (null === $this->device && $this->matchUserAgent('Puffin/(?:\d+[.\d]+)[AIFLW]P')) {
1066 if (null === $this->device && $this->matchUserAgent('Puffin/(?:\d+[.\d]+)[AILW]T')) {
1073 if ($this->matchUserAgent('Opera TV Store| OMI/')) {
1091 …]) && $this->matchUserAgent('Andr0id|(?:Android(?: UHD)?|Google) TV|\(lite\) TV|BRAVIA|Firebolt| T…
1100 if (null === $this->device && $this->matchUserAgent('SmartTV|Tizen.+ TV .+$')) {
1118 if (null === $this->device && $this->matchUserAgent('\(TV;')) {
1159 protected function matchUserAgent(string $regex): ?array function in DeviceDetector\\DeviceDetector