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

1 2 3 4 5 6 7 8 9

  /prebuilts/go/darwin-x86/src/runtime/testdata/testprog/
stringconcat.go 14 s0 := strings.Repeat("0", 1<<10)
15 s1 := strings.Repeat("1", 1<<10)
16 s2 := strings.Repeat("2", 1<<10)
17 s3 := strings.Repeat("3", 1<<10)
  /prebuilts/go/linux-x86/src/runtime/testdata/testprog/
stringconcat.go 14 s0 := strings.Repeat("0", 1<<10)
15 s1 := strings.Repeat("1", 1<<10)
16 s2 := strings.Repeat("2", 1<<10)
17 s3 := strings.Repeat("3", 1<<10)
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
writer_test.go 48 in: strings.Repeat("a", 75),
49 want: strings.Repeat("a", 75),
52 in: strings.Repeat("a", 76),
53 want: strings.Repeat("a", 75) + "=\r\na",
56 in: strings.Repeat("a", 72) + "=",
57 want: strings.Repeat("a", 72) + "=3D",
60 in: strings.Repeat("a", 73) + "=",
61 want: strings.Repeat("a", 73) + "=\r\n=3D",
64 in: strings.Repeat("a", 74) + "=",
65 want: strings.Repeat("a", 74) + "=\r\n=3D"
    [all...]
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
writer_test.go 48 in: strings.Repeat("a", 75),
49 want: strings.Repeat("a", 75),
52 in: strings.Repeat("a", 76),
53 want: strings.Repeat("a", 75) + "=\r\na",
56 in: strings.Repeat("a", 72) + "=",
57 want: strings.Repeat("a", 72) + "=3D",
60 in: strings.Repeat("a", 73) + "=",
61 want: strings.Repeat("a", 73) + "=\r\n=3D",
64 in: strings.Repeat("a", 74) + "=",
65 want: strings.Repeat("a", 74) + "=\r\n=3D"
    [all...]
  /prebuilts/go/darwin-x86/src/hash/adler32/
adler32_test.go 48 {0x211297c8, strings.Repeat("\xff", 5548) + "8"},
49 {0xbaa198c8, strings.Repeat("\xff", 5549) + "9"},
50 {0x553499be, strings.Repeat("\xff", 5550) + "0"},
51 {0xf0c19abe, strings.Repeat("\xff", 5551) + "1"},
52 {0x8d5c9bbe, strings.Repeat("\xff", 5552) + "2"},
53 {0x2af69cbe, strings.Repeat("\xff", 5553) + "3"},
54 {0xc9809dbe, strings.Repeat("\xff", 5554) + "4"},
55 {0x69189ebe, strings.Repeat("\xff", 5555) + "5"},
56 {0x86af0001, strings.Repeat("\x00", 1e5)},
57 {0x79660b4d, strings.Repeat("a", 1e5)}
    [all...]
  /prebuilts/go/linux-x86/src/hash/adler32/
adler32_test.go 48 {0x211297c8, strings.Repeat("\xff", 5548) + "8"},
49 {0xbaa198c8, strings.Repeat("\xff", 5549) + "9"},
50 {0x553499be, strings.Repeat("\xff", 5550) + "0"},
51 {0xf0c19abe, strings.Repeat("\xff", 5551) + "1"},
52 {0x8d5c9bbe, strings.Repeat("\xff", 5552) + "2"},
53 {0x2af69cbe, strings.Repeat("\xff", 5553) + "3"},
54 {0xc9809dbe, strings.Repeat("\xff", 5554) + "4"},
55 {0x69189ebe, strings.Repeat("\xff", 5555) + "5"},
56 {0x86af0001, strings.Repeat("\x00", 1e5)},
57 {0x79660b4d, strings.Repeat("a", 1e5)}
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
replace_test.go 66 testCase{capitalLetters, Repeat("a", (32<<10)+123), Repeat("A", (32<<10)+123)},
76 // repeat maps "a"->"a", "b"->"bb", "c"->"ccc", ...
83 s = append(s, str(byte(i)), Repeat(str(byte(i)), n))
85 repeat := NewReplacer(s...)
94 testCase{repeat, "brad", "bbrrrrrrrrrrrrrrrrrradddd"},
95 testCase{repeat, "abba", "abbbba"},
96 testCase{repeat, "", ""},
423 str := Repeat("A", 100) + Repeat("B", 100
    [all...]
export_test.go 25 s += Repeat(".", depth) + t.prefix
30 s += Repeat(".", depth) + string([]byte{byte(b)})
  /prebuilts/go/linux-x86/src/strings/
replace_test.go 66 testCase{capitalLetters, Repeat("a", (32<<10)+123), Repeat("A", (32<<10)+123)},
76 // repeat maps "a"->"a", "b"->"bb", "c"->"ccc", ...
83 s = append(s, str(byte(i)), Repeat(str(byte(i)), n))
85 repeat := NewReplacer(s...)
94 testCase{repeat, "brad", "bbrrrrrrrrrrrrrrrrrradddd"},
95 testCase{repeat, "abba", "abbbba"},
96 testCase{repeat, "", ""},
423 str := Repeat("A", 100) + Repeat("B", 100
    [all...]
export_test.go 25 s += Repeat(".", depth) + t.prefix
30 s += Repeat(".", depth) + string([]byte{byte(b)})
  /prebuilts/go/darwin-x86/src/runtime/
mapspeed_test.go 129 m[strings.Repeat("X", 1<<20-1)+fmt.Sprint(suffix)] = true
131 key := strings.Repeat("X", 1<<20-1) + "k"
140 m[strings.Repeat("X", 1<<20)] = true
141 key := strings.Repeat("Y", 1<<20)
150 key1 := strings.Repeat("X", 1<<20)
151 key2 := strings.Repeat("X", 1<<20) // equal but different instance
161 key := strings.Repeat("X", 1<<20)
188 m[strings.Repeat("K", i+1)] = true
190 key := strings.Repeat("K", keySize)
215 base := strings.Repeat("x", lookupKeySize-1
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mapspeed_test.go 129 m[strings.Repeat("X", 1<<20-1)+fmt.Sprint(suffix)] = true
131 key := strings.Repeat("X", 1<<20-1) + "k"
140 m[strings.Repeat("X", 1<<20)] = true
141 key := strings.Repeat("Y", 1<<20)
150 key1 := strings.Repeat("X", 1<<20)
151 key2 := strings.Repeat("X", 1<<20) // equal but different instance
161 key := strings.Repeat("X", 1<<20)
188 m[strings.Repeat("K", i+1)] = true
190 key := strings.Repeat("K", keySize)
215 base := strings.Repeat("x", lookupKeySize-1
    [all...]
  /prebuilts/go/darwin-x86/src/mime/
encodedword_test.go 30 {QEncoding, utf8, strings.Repeat("é", 10), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?="},
31 {QEncoding, utf8, strings.Repeat("é", 11), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?= =?utf-8?q?=C3=A9?="},
32 {QEncoding, iso88591, strings.Repeat("\xe9", 22), "=?iso-8859-1?q?" + strings.Repeat("=E9", 22) + "?="},
33 {QEncoding, utf8, strings.Repeat("\x80", 22), "=?utf-8?q?" + strings.Repeat("=80", 21) + "?= =?utf-8?q?=80?="},
34 {BEncoding, iso88591, strings.Repeat("\xe9", 45), "=?iso-8859-1?b?" + strings.Repeat("6enp", 15) + "?="}
    [all...]
  /prebuilts/go/linux-x86/src/mime/
encodedword_test.go 30 {QEncoding, utf8, strings.Repeat("é", 10), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?="},
31 {QEncoding, utf8, strings.Repeat("é", 11), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?= =?utf-8?q?=C3=A9?="},
32 {QEncoding, iso88591, strings.Repeat("\xe9", 22), "=?iso-8859-1?q?" + strings.Repeat("=E9", 22) + "?="},
33 {QEncoding, utf8, strings.Repeat("\x80", 22), "=?utf-8?q?" + strings.Repeat("=80", 21) + "?= =?utf-8?q?=80?="},
34 {BEncoding, iso88591, strings.Repeat("\xe9", 45), "=?iso-8859-1?b?" + strings.Repeat("6enp", 15) + "?="}
    [all...]
  /prebuilts/go/darwin-x86/src/html/
escape_test.go 121 benchEscapeData = strings.Repeat("AAAAA < BBBBB > CCCCC & DDDDD ' EEEEE \" ", 100)
122 benchEscapeNone = strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 100)
123 benchUnescapeSparse = strings.Repeat(strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 10)+"&amp;", 10)
124 benchUnescapeDense = strings.Repeat("&amp;&lt; &amp; &lt;", 100)
  /prebuilts/go/linux-x86/src/html/
escape_test.go 121 benchEscapeData = strings.Repeat("AAAAA < BBBBB > CCCCC & DDDDD ' EEEEE \" ", 100)
122 benchEscapeNone = strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 100)
123 benchUnescapeSparse = strings.Repeat(strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 10)+"&amp;", 10)
124 benchUnescapeDense = strings.Repeat("&amp;&lt; &amp; &lt;", 100)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue14636.go 24 checkLinkOutput("0x"+strings.Repeat("00", 32), "usage")
25 checkLinkOutput("0x"+strings.Repeat("00", 33), "-B option too long (max 32 digits)")
  /prebuilts/go/linux-x86/test/fixedbugs/
issue14636.go 24 checkLinkOutput("0x"+strings.Repeat("00", 32), "usage")
25 checkLinkOutput("0x"+strings.Repeat("00", 33), "-B option too long (max 32 digits)")
  /prebuilts/go/darwin-x86/src/net/
dnsname_test.go 40 longDomain := strings.Repeat(char63+".", 5) + "example"
73 {strings.Repeat("a", 63), true},
74 {strings.Repeat("a", 64), false},
  /prebuilts/go/linux-x86/src/net/
dnsname_test.go 40 longDomain := strings.Repeat(char63+".", 5) + "example"
73 {strings.Repeat("a", 63), true},
74 {strings.Repeat("a", 64), false},
  /prebuilts/go/darwin-x86/src/math/big/
nat_test.go 76 natFromString(strings.Repeat("1", 70000)),
77 natFromString("1" + strings.Repeat(strings.Repeat("0", 699)+"1", 99)),
78 natFromString(strings.Repeat("1", 700)),
84 natFromString(strings.Repeat("1", 20000)),
85 natFromString("1" + strings.Repeat("0", 9999) + "1"),
86 natFromString(strings.Repeat("1", 10000)),
598 {"0x3" + strings.Repeat("0", 32), 127, 0},
599 {"0x3" + strings.Repeat("0", 32), 128, 1},
600 {"0x3" + strings.Repeat("0", 32), 129, 1}
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
nat_test.go 76 natFromString(strings.Repeat("1", 70000)),
77 natFromString("1" + strings.Repeat(strings.Repeat("0", 699)+"1", 99)),
78 natFromString(strings.Repeat("1", 700)),
84 natFromString(strings.Repeat("1", 20000)),
85 natFromString("1" + strings.Repeat("0", 9999) + "1"),
86 natFromString(strings.Repeat("1", 10000)),
598 {"0x3" + strings.Repeat("0", 32), 127, 0},
599 {"0x3" + strings.Repeat("0", 32), 128, 1},
600 {"0x3" + strings.Repeat("0", 32), 129, 1}
    [all...]
  /external/curl/docs/cmdline-opts/
mail-rcpt.d 7 Specify a single address, user name or mailing list name. Repeat this
  /prebuilts/go/darwin-x86/src/compress/flate/
dict_decoder_test.go 118 want.WriteString(strings.Repeat(abc, 60))
122 want.WriteString(strings.Repeat(fox, 10))
126 want.WriteString(strings.Repeat(".", 10))
130 want.WriteString(strings.Repeat(strings.ToUpper(poem), 8))
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
pool_test.go 15 // Repeat so that at least one iteration gets reuse.

Completed in 1160 milliseconds

1 2 3 4 5 6 7 8 9