OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SplitN
(Results
1 - 5
of
5
) sorted by null
/build/soong/androidmk/parser/
make_strings.go
94
return ms.
SplitN
(sep, -1)
97
func (ms *MakeString)
SplitN
(sep string, n int) []*MakeString {
/prebuilts/go/darwin-x86/src/bytes/
bytes.go
237
//
SplitN
slices s into subslices separated by sep and returns a slice of
239
// If sep is empty,
SplitN
splits after each UTF-8 sequence.
244
func
SplitN
(s, sep []byte, n int) [][]byte { return genSplit(s, sep, 0, n) }
260
// It is equivalent to
SplitN
with a count of -1.
/prebuilts/go/darwin-x86/src/strings/
strings.go
307
//
SplitN
slices s into substrings separated by sep and returns a slice of
309
// If sep is empty,
SplitN
splits after each UTF-8 sequence.
314
func
SplitN
(s, sep string, n int) []string { return genSplit(s, sep, 0, n) }
330
// It is equivalent to
SplitN
with a count of -1.
/prebuilts/go/linux-x86/src/bytes/
bytes.go
237
//
SplitN
slices s into subslices separated by sep and returns a slice of
239
// If sep is empty,
SplitN
splits after each UTF-8 sequence.
244
func
SplitN
(s, sep []byte, n int) [][]byte { return genSplit(s, sep, 0, n) }
260
// It is equivalent to
SplitN
with a count of -1.
/prebuilts/go/linux-x86/src/strings/
strings.go
307
//
SplitN
slices s into substrings separated by sep and returns a slice of
309
// If sep is empty,
SplitN
splits after each UTF-8 sequence.
314
func
SplitN
(s, sep string, n int) []string { return genSplit(s, sep, 0, n) }
330
// It is equivalent to
SplitN
with a count of -1.
Completed in 953 milliseconds