OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JoinPath
(Results
1 - 10
of
10
) sorted by null
/external/ceres-solver/internal/ceres/
file.h
46
// absolute path then
JoinPath
ignores dirname and simply returns basename.
47
string
JoinPath
(const string& dirname, const string& basename);
file.cc
78
string
JoinPath
(const string& dirname, const string& basename) {
test_util.cc
122
return
JoinPath
(FLAGS_test_srcdir + CERES_TEST_SRCDIR_SUFFIX,
trust_region_minimizer.cc
290
JoinPath
(options_.trust_region_problem_dump_directory,
/frameworks/compile/slang/
slang_rs_reflect_utils.h
92
// E.g.
JoinPath
("foo/bar", "baz/a.java") returns "foo/bar/baz/a.java",
93
//
JoinPath
("foo", "/bar/baz") returns "foo/bar/baz", and
94
//
JoinPath
("foo/", "/bar") returns "foo/bar".
95
std::string
JoinPath
(const std::string &path1, const std::string &path2);
slang_rs_reflect_utils.cpp
290
std::string
JoinPath
(const std::string &path1, const std::string &path2) {
360
std::string FilePath =
JoinPath
(outDirectory, outFileName);
/prebuilts/go/darwin-x86/src/go/build/
build_test.go
222
ctxt.
JoinPath
= func(elem ...string) string {
build.go
63
//
JoinPath
joins the sequence of path fragments into a single path.
64
// If
JoinPath
is nil, Import uses filepath.Join.
65
JoinPath
func(elem ...string) string
97
//
joinPath
calls ctxt.
JoinPath
(if not nil) or else filepath.Join.
98
func (ctxt *Context)
joinPath
(elem ...string) string {
99
if f := ctxt.
JoinPath
; f != nil {
240
dir := ctxt.
joinPath
(ctxt.GOROOT, "src")
246
dir := ctxt.
joinPath
(p, "src")
494
p.Dir = ctxt.
joinPath
(srcDir, path
[
all
...]
/prebuilts/go/linux-x86/src/go/build/
build_test.go
222
ctxt.
JoinPath
= func(elem ...string) string {
build.go
63
//
JoinPath
joins the sequence of path fragments into a single path.
64
// If
JoinPath
is nil, Import uses filepath.Join.
65
JoinPath
func(elem ...string) string
97
//
joinPath
calls ctxt.
JoinPath
(if not nil) or else filepath.Join.
98
func (ctxt *Context)
joinPath
(elem ...string) string {
99
if f := ctxt.
JoinPath
; f != nil {
240
dir := ctxt.
joinPath
(ctxt.GOROOT, "src")
246
dir := ctxt.
joinPath
(p, "src")
494
p.Dir = ctxt.
joinPath
(srcDir, path
[
all
...]
Completed in 112 milliseconds