HomeSort by relevance Sort by last modified time
    Searched refs:Repeat (Results 101 - 125 of 209) sorted by null

1 2 3 45 6 7 8 9

  /prebuilts/go/linux-x86/src/archive/zip/
writer_test.go 186 bigBuf := bytes.Repeat([]byte("a"), 1<<20)
  /prebuilts/go/linux-x86/src/bytes/
bytes.go 401 // Repeat returns a new byte slice consisting of count copies of b.
405 func Repeat(b []byte, count int) []byte {
407 // we should panic if the repeat will generate
411 panic("bytes: negative Repeat count")
413 panic("bytes: Repeat count causes overflow")
bytes_test.go 922 a := Repeat(tin, tt.count)
924 t.Errorf("Repeat(%q, %d) = %q; want %q", tin, tt.count, a, tout)
930 func repeat(b []byte, count int) (err error) { func
942 Repeat(b, count)
964 err := repeat([]byte(tt.s), tt.count)
    [all...]
buffer_test.go 435 xBytes := Repeat(x, startLen)
441 yBytes := Repeat(y, growLen)
  /prebuilts/go/linux-x86/src/encoding/ascii85/
ascii85_test.go 202 s := strings.Repeat(" ", 2048) + "z"
  /prebuilts/go/linux-x86/src/encoding/csv/
reader_test.go 366 benchmarkRead(b, nil, strings.Repeat(`xxxxxxxxxxxxxxxx,yyyyyyyyyyyyyyyy,zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz,wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww,vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
  /prebuilts/go/linux-x86/src/net/
dnsconfig_unix_test.go 198 longDomain := strings.Repeat(char63+".", 5) + "example"
  /prebuilts/go/linux-x86/src/regexp/
all_test.go 634 x := strings.Repeat("x", 50) + "y"
646 x := strings.Repeat("x", 50) + "y"
659 x := strings.Repeat("xxxx", 20) + "w"
673 x := strings.Repeat("bbbb", 20) + "c"
  /prebuilts/go/linux-x86/src/strings/
example_test.go 137 fmt.Println("ba" + strings.Repeat("na", 2))
strings.go 422 // Repeat returns a new string consisting of count copies of the string s.
426 func Repeat(s string, count int) string {
428 // we should panic if the repeat will generate
432 panic("strings: negative Repeat count")
434 panic("strings: Repeat count causes overflow")
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/idna/
punycode_test.go 179 "encode " + strings.Repeat("x", 65536) + "\uff00", // int32 overflow.
  /external/regex-re2/re2/
regexp.h 174 kRegexpRepeatArgument, // repeat argument missing, e.g. "*"
392 static Regexp* Repeat(Regexp* sub, ParseFlags flags, int min, int max);
523 // ref greater than the maximum repeat count (100),
547 struct { // Repeat
  /external/swiftshader/third_party/subzero/src/
IceTargetLowering.cpp 523 bool Repeat = (Kind == RAK_Global && getFlags().getRepeatRegAlloc());
529 Repeat = false;
531 } while (Repeat);
    [all...]
  /prebuilts/go/darwin-x86/src/bytes/
bytes_test.go 922 a := Repeat(tin, tt.count)
924 t.Errorf("Repeat(%q, %d) = %q; want %q", tin, tt.count, a, tout)
930 func repeat(b []byte, count int) (err error) { func
942 Repeat(b, count)
964 err := repeat([]byte(tt.s), tt.count)
    [all...]
buffer_test.go 435 xBytes := Repeat(x, startLen)
441 yBytes := Repeat(y, growLen)
example_test.go 200 fmt.Printf("ba%s", bytes.Repeat([]byte("na"), 2))
  /prebuilts/go/darwin-x86/misc/cgo/errors/
ptr.go 271 body: `s := S{a:[1]string{strings.Repeat("a", 2)}}; C.f(unsafe.Pointer(&s.a[0]))`,
280 func GoStr() string { return strings.Repeat("a", 2) }`,
  /prebuilts/go/darwin-x86/src/runtime/
hash_test.go 85 s := "hello" + strings.Repeat("\x00", 256)
176 const REPEAT = 8
180 b := make([]byte, REPEAT*n)
187 for j := n; j < n*REPEAT; j++ {
552 s := strings.Repeat("A", n)
  /prebuilts/go/darwin-x86/src/text/template/parse/
parse_test.go 490 text := strings.Repeat("{{printf 1234}}\n", count)
513 text := strings.Repeat("{{1234}}\n", 10000)
  /prebuilts/go/linux-x86/misc/cgo/errors/
ptr.go 271 body: `s := S{a:[1]string{strings.Repeat("a", 2)}}; C.f(unsafe.Pointer(&s.a[0]))`,
280 func GoStr() string { return strings.Repeat("a", 2) }`,
  /prebuilts/go/linux-x86/src/runtime/
hash_test.go 85 s := "hello" + strings.Repeat("\x00", 256)
176 const REPEAT = 8
180 b := make([]byte, REPEAT*n)
187 for j := n; j < n*REPEAT; j++ {
552 s := strings.Repeat("A", n)
  /prebuilts/go/linux-x86/src/text/template/parse/
parse_test.go 490 text := strings.Repeat("{{printf 1234}}\n", count)
513 text := strings.Repeat("{{1234}}\n", 10000)
  /external/boringssl/src/crypto/cipher_extra/test/nist_cavp/
make_cavp.go 159 // Repeat the label map at the beginning of each test section.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
sparsetree.go 80 s := "\n" + strings.Repeat("\t", i) + b.String() + "->["
  /prebuilts/go/darwin-x86/src/go/constant/
value_test.go 206 var xxx = strings.Repeat("x", 68)

Completed in 795 milliseconds

1 2 3 45 6 7 8 9