Lines Matching refs:parts
316 $parts = explode('.', $name);
317 foreach ($parts as $i => $part) {
318 $parts[$i] = static::getClassNamePrefix($parts[$i], $file_proto) . $parts[$i];
320 return implode('\\', $parts);
371 $parts = array_map('ucwords', explode('.', $package));
372 foreach ($parts as $i => $part) {
373 $parts[$i] = self::getClassNamePrefix($part, $file_proto).$part;
376 implode('\\', $parts) .