HomeSort by relevance Sort by last modified time
    Searched refs:JoinPath (Results 1 - 6 of 6) sorted by null

  /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 223 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
98 // joinPath calls ctxt.JoinPath (if not nil) or else filepath.Join.
99 func (ctxt *Context) joinPath(elem ...string) string {
100 if f := ctxt.JoinPath; f != nil {
241 dir := ctxt.joinPath(ctxt.GOROOT, "src")
247 dir := ctxt.joinPath(p, "src")
528 p.Dir = ctxt.joinPath(srcDir, path
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
build_test.go 223 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
98 // joinPath calls ctxt.JoinPath (if not nil) or else filepath.Join.
99 func (ctxt *Context) joinPath(elem ...string) string {
100 if f := ctxt.JoinPath; f != nil {
241 dir := ctxt.joinPath(ctxt.GOROOT, "src")
247 dir := ctxt.joinPath(p, "src")
528 p.Dir = ctxt.joinPath(srcDir, path
    [all...]

Completed in 178 milliseconds