OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sep
(Results
1 - 25
of
258
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/eigen/doc/snippets/
IOFormat.cpp
1
std::string
sep
= "\n----------------------------------------\n";
variable
10
std::cout << m1 <<
sep
;
variable
11
std::cout << m1.format(CommaInitFmt) <<
sep
;
12
std::cout << m1.format(CleanFmt) <<
sep
;
13
std::cout << m1.format(OctaveFmt) <<
sep
;
14
std::cout << m1.format(HeavyFmt) <<
sep
;
/external/webkit/Tools/Scripts/webkitpy/common/system/
ospath.py
35
def relpath(path, start_path, os_path_abspath=None,
sep
=None):
47
sep
: Path separator. Defaults to os.path.
sep
52
sep
=
sep
or os.
sep
59
# slashes to the preferred slash os.
sep
.
72
elif rel_path[0] ==
sep
:
76
rel_path = rel_path.lstrip(
sep
)
filesystem_mock.py
57
sep
= property(_get_sep, doc="pathname separator")
variable in class:MockFileSystem
63
return path.rsplit(self.
sep
, 1)
110
if not path.endswith(self.
sep
):
111
path += self.
sep
113
dir_substrings = [self.
sep
+ d + self.
sep
for d in dirs_to_skip]
140
return path.startswith(self.
sep
)
164
return re.sub(re.escape(os.path.
sep
), self.
sep
, os.path.join(*comps))
170
if not path.endswith(self.
sep
)
[
all
...]