This is a static copy of a profile report

Home

general/private/parsedirs (4 calls, 0.050 sec)
Generated 14-Nov-2016 07:47:07 using cpu time.
function in file /usr/local/MATLAB/MATLAB_Production_Server/R2015a/toolbox/matlab/general/private/parsedirs.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
pathfunction4
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
41
cdirs = regexprep(cdirs,sprint...
40.020 s40.0%
30
cdirs = regexprep(cdirs, '/{2,...
40.020 s40.0%
19
cdirs = regexp(str, sprintf('[...
40.010 s20.0%
44
cdirs(cellfun('isempty', cdirs...
40 s0%
37
end
40 s0%
All other lines  0 s0%
Totals  0.050 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
pathsepfunction40 s0%
filesepfunction40 s0%
Self time (built-ins, overhead, etc.)  0.050 s100.0%
Totals  0.050 s100% 
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function44
Non-code lines (comments, blank lines)29
Code lines (lines that can run)15
Code lines that did run11
Code lines that did not run4
Coverage (did run/can run)73.33 %
Function listing
time 
calls 
 line
   1 
function cdirs = parsedirs(str,varargin)
   2 
%PARSEDIRS Convert string of directories into a cell array
   3 
%   C = PARSEDIRS(S) converts S, a string of directories separated by path
   4 
%   separators, to C, a cell array of directories. 
   5 
%
   6 
%   The function will clean up each directory name by converting file
   7 
%   separators to the appropriate operating system file separator, and by
   8 
%   ending each cell with a path separator. It will also remove repeated
   9 
%   file and path separators, and insignificant whitespace. 
  10 
%
  11 
%   Example:
  12 
%       cp = parsedirs(path);
  13 

  14 
%   Copyright 1984-2007 The MathWorks, Inc.
  15 

      4 
  16 
fs = filesep; 
      4 
  17 
ps = pathsep; 
  18 

  0.01 
      4 
  19 
cdirs = regexp(str, sprintf('[^\\s%s;][^%s;]*', ps, ps), 'match')'; 
  20 

      4 
  21 
if ps == ';' 
  22 
    % Only iron fileseps on PC:
  23 
    cdirs = strrep(cdirs,'/','\');
  24 

  25 
    % Remove repeated "\"s unless they are the start of string
  26 
    % Also ensure a "\" exists after a colon
  27 
	cdirs = regexprep(cdirs, '(:)\s*$|(.)\\{2,}', '$1\');
      4 
  28 
else 
  29 
    % Remove repeated "/"s
  0.02 
      4 
  30 
    cdirs = regexprep(cdirs, '/{2,}', '/'); 
  31 

  32 
    % Do any tilde expansion
      4 
  33 
    ix = find(strncmp(cdirs,'~',1)); 
      4 
  34 
    if ~isempty(ix) 
  35 
      cdirs(ix) = unix_tilde_expansion(cdirs(ix));
  36 
    end
      4 
  37 
end 
  38 

  39 
% Remove trailing fileseps, but allow a directory to be "X:\", "\" or "/" 
  40 
% Add pathseps to the end of all paths
  0.02 
      4 
  41 
cdirs = regexprep(cdirs,sprintf('(.*[^:])\\%s\\s*$|(.+)\\s*$',fs),sprintf('$1%s', ps)); 
  42 

  43 
% Remove empty paths
      4 
  44 
cdirs(cellfun('isempty', cdirs)) = [];