OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:path_separator
(Results
1 - 16
of
16
) sorted by null
/external/v8/src/
startup-data-util.cc
83
int
path_separator
= static_cast<int>(strlen(exec_path)) - 1;
local
84
while (
path_separator
>= 0 &&
85
!base::OS::isDirectorySeparator(exec_path[
path_separator
])) {
86
path_separator
--;
88
if (
path_separator
>= 0) {
91
reinterpret_cast<char*>(calloc(
path_separator
+ name_length + 2, 1));
93
strncat(*buffer, exec_path,
path_separator
+ 1);
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem.py
342
def __init__(self,
path_separator
=os.path.sep):
346
path_separator
: optional substitute for os.path.sep
348
self.
path_separator
=
path_separator
349
self.root = FakeDirectory(self.
path_separator
)
420
"""Mimics os.path.normpath using the specified
path_separator
.
422
Mimics os.path.normpath using the
path_separator
that was specified
436
is_absolute_path = path.startswith(self.
path_separator
)
437
path_components = path.split(self.
path_separator
)
452
collapsed_path = self.
path_separator
.join(collapsed_path_components
[
all
...]
fake_filesystem_glob_test.py
33
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
fake_tempfile_test.py
66
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
fake_filesystem_test.py
113
filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
124
filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
151
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
183
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
209
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
216
self.assertEqual('/', self.filesystem.
path_separator
)
492
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
[
all
...]
fake_filesystem_shutil_test.py
34
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
199
self.filesystem = fake_filesystem.FakeFilesystem(
path_separator
='/')
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
fake_filesystem.py
360
def __init__(self,
path_separator
=os.path.sep):
364
path_separator
: optional substitute for os.path.sep
366
self.
path_separator
=
path_separator
367
self.root = FakeDirectory(self.
path_separator
)
438
"""Mimics os.path.normpath using the specified
path_separator
.
440
Mimics os.path.normpath using the
path_separator
that was specified
454
is_absolute_path = path.startswith(self.
path_separator
)
455
path_components = path.split(self.
path_separator
)
470
collapsed_path = self.
path_separator
.join(collapsed_path_components
[
all
...]
/external/protobuf/gtest/test/
run_tests_util_test.py
63
self.
path_separator
= os.sep
74
path += self.
path_separator
75
name_list = path.split(self.
path_separator
)
100
name_list = self.abspath(path).split(self.
path_separator
)
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/include/
bfdlink.h
419
char
path_separator
;
417
char
path_separator
;
member in struct:bfd_link_info
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/include/
bfdlink.h
419
char
path_separator
;
417
char
path_separator
;
member in struct:bfd_link_info
/toolchain/binutils/binutils-2.25/include/
bfdlink.h
428
char
path_separator
;
426
char
path_separator
;
member in struct:bfd_link_info
/libcore/ojluni/src/main/native/
java_props_md.c
556
sprops.
path_separator
= ":";
/external/opencv3/modules/ts/src/
ts_perf.cpp
189
const char *
path_separator
= "/";
local
196
+ (data_path_dir[len] == '/' || data_path_dir[len] == '\\' ? "" :
path_separator
)
198
+
path_separator
;
[
all
...]
/toolchain/binutils/binutils-2.25/ld/
ldmain.c
299
link_info.
path_separator
= ':';
[
all
...]
ldlang.c
156
if (link_info.
path_separator
== 0)
159
p = strchr (pattern, link_info.
path_separator
);
161
if (p == NULL || link_info.
path_separator
!= ':')
167
p = strchr (p + 1, link_info.
path_separator
);
193
*sep = link_info.
path_separator
;
[
all
...]
/toolchain/binutils/binutils-2.25/bfd/
elf32-spu.c
[
all
...]
Completed in 2826 milliseconds