/prebuilts/go/darwin-x86/src/os/exec/ |
lp_windows.go | 83 for _, dir := range splitList(pathenv) { 92 func splitList(path string) []string { 93 // The same implementation is used in SplitList in path/filepath;
|
/prebuilts/go/linux-x86/src/os/exec/ |
lp_windows.go | 83 for _, dir := range splitList(pathenv) { 92 func splitList(path string) []string { 93 // The same implementation is used in SplitList in path/filepath;
|
/prebuilts/go/darwin-x86/src/path/filepath/ |
path_plan9.go | 25 func splitList(path string) []string {
|
path_unix.go | 27 func splitList(path string) []string {
|
example_unix_test.go | 15 fmt.Println("On Unix:", filepath.SplitList("/a/b/c:/usr/bin"))
|
path.go | 178 // SplitList splits a list of paths joined by the OS-specific ListSeparator, 180 // Unlike strings.Split, SplitList returns an empty slice when passed an empty 181 // string. SplitList does not replace slash characters in the returned paths. 182 func SplitList(path string) []string { 183 return splitList(path)
|
path_windows.go | 75 func splitList(path string) []string {
|
/prebuilts/go/linux-x86/src/path/filepath/ |
path_plan9.go | 25 func splitList(path string) []string {
|
path_unix.go | 27 func splitList(path string) []string {
|
example_unix_test.go | 15 fmt.Println("On Unix:", filepath.SplitList("/a/b/c:/usr/bin"))
|
path.go | 178 // SplitList splits a list of paths joined by the OS-specific ListSeparator, 180 // Unlike strings.Split, SplitList returns an empty slice when passed an empty 181 // string. SplitList does not replace slash characters in the returned paths. 182 func SplitList(path string) []string { 183 return splitList(path)
|
path_windows.go | 75 func splitList(path string) []string {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
tkFont.py | 71 font = root.tk.splitlist(root.tk.call("font", "actual", font)) 92 self._split = root.tk.splitlist 170 return root.tk.splitlist(root.tk.call("font", "families")) 176 return root.tk.splitlist(root.tk.call("font", "names"))
|
Canvas.py | 38 tk.splitlist(x)[0][1:], 39 self.canvas.tk.splitlist( 169 return self.canvas.tk.splitlist(self._do('gettags', self.tag))
|
tkFileDialog.py | 91 return self._fixresult(widget, widget.tk.splitlist(result))
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
tkFont.py | 71 font = root.tk.splitlist(root.tk.call("font", "actual", font)) 92 self._split = root.tk.splitlist 170 return root.tk.splitlist(root.tk.call("font", "families")) 176 return root.tk.splitlist(root.tk.call("font", "names"))
|
Canvas.py | 38 tk.splitlist(x)[0][1:], 39 self.canvas.tk.splitlist( 169 return self.canvas.tk.splitlist(self._do('gettags', self.tag))
|
tkFileDialog.py | 91 return self._fixresult(widget, widget.tk.splitlist(result))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
tkFont.py | 71 font = root.tk.splitlist(root.tk.call("font", "actual", font)) 92 self._split = root.tk.splitlist 170 return root.tk.splitlist(root.tk.call("font", "families")) 176 return root.tk.splitlist(root.tk.call("font", "names"))
|
Canvas.py | 38 tk.splitlist(x)[0][1:], 39 self.canvas.tk.splitlist( 169 return self.canvas.tk.splitlist(self._do('gettags', self.tag))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
tkFont.py | 71 font = root.tk.splitlist(root.tk.call("font", "actual", font)) 92 self._split = root.tk.splitlist 170 return root.tk.splitlist(root.tk.call("font", "families")) 176 return root.tk.splitlist(root.tk.call("font", "names"))
|
Canvas.py | 38 tk.splitlist(x)[0][1:], 39 self.canvas.tk.splitlist( 169 return self.canvas.tk.splitlist(self._do('gettags', self.tag))
|
/external/autotest/frontend/client/src/autotest/common/ |
Utils.java | 251 public static List<String> splitList(String list, String splitRegex) { 262 public static List<String> splitList(String list) { 263 return splitList(list, ","); 267 return splitList(list, "[,\\s]+");
|
/external/ipsec-tools/src/racoon/ |
isakmp_cfg.c | 1877 char *splitlist = addrlist; local [all...] |
/prebuilts/go/darwin-x86/misc/android/ |
go_android_exec.go | 120 for _, p := range filepath.SplitList(build.Default.GOPATH) {
|