/prebuilts/go/darwin-x86/src/encoding/ascii85/ |
ascii85_test.go | 46 func testEqual(t *testing.T, msg string, args ...interface{}) bool { 72 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, strip85(string(buf)), strip85(p.encoded)) 82 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, strip85(bb.String()), strip85(p.encoded)) 97 testEqual(t, "Write(%q) gave error %v, want %v", input[pos:end], err, error(nil)) 98 testEqual(t, "Write(%q) gave length %v, want %v", input[pos:end], n, end-pos) 101 testEqual(t, "Close gave error %v, want %v", err, error(nil)) 102 testEqual(t, "Encoding/%d of %q = %q, want %q", bs, bigtest.decoded, strip85(bb.String()), strip85(bigtest.encoded)) 110 testEqual(t, "Decode(%q) = error %v, want %v", p.encoded, err, error(nil)) 111 testEqual(t, "Decode(%q) = nsrc %v, want %v", p.encoded, nsrc, len(p.encoded)) 112 testEqual(t, "Decode(%q) = ndst %v, want %v", p.encoded, ndst, len(p.decoded) [all...] |
/prebuilts/go/linux-x86/src/encoding/ascii85/ |
ascii85_test.go | 46 func testEqual(t *testing.T, msg string, args ...interface{}) bool { 72 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, strip85(string(buf)), strip85(p.encoded)) 82 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, strip85(bb.String()), strip85(p.encoded)) 97 testEqual(t, "Write(%q) gave error %v, want %v", input[pos:end], err, error(nil)) 98 testEqual(t, "Write(%q) gave length %v, want %v", input[pos:end], n, end-pos) 101 testEqual(t, "Close gave error %v, want %v", err, error(nil)) 102 testEqual(t, "Encoding/%d of %q = %q, want %q", bs, bigtest.decoded, strip85(bb.String()), strip85(bigtest.encoded)) 110 testEqual(t, "Decode(%q) = error %v, want %v", p.encoded, err, error(nil)) 111 testEqual(t, "Decode(%q) = nsrc %v, want %v", p.encoded, nsrc, len(p.encoded)) 112 testEqual(t, "Decode(%q) = ndst %v, want %v", p.encoded, ndst, len(p.decoded) [all...] |
/external/guava/guava-gwt/test/com/google/common/base/ |
ObjectsTest_gwt.java | 21 public void testEqual() throws Exception { 23 testCase.testEqual();
|
/prebuilts/go/darwin-x86/src/encoding/base32/ |
base32_test.go | 45 func testEqual(t *testing.T, msg string, args ...interface{}) bool { 56 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, got, p.encoded) 66 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, bb.String(), p.encoded) 81 testEqual(t, "Write(%q) gave error %v, want %v", input[pos:end], err, error(nil)) 82 testEqual(t, "Write(%q) gave length %v, want %v", input[pos:end], n, end-pos) 85 testEqual(t, "Close gave error %v, want %v", err, error(nil)) 86 testEqual(t, "Encoding/%d of %q = %q, want %q", bs, bigtest.decoded, bb.String(), bigtest.encoded) 94 testEqual(t, "Decode(%q) = error %v, want %v", p.encoded, err, error(nil)) 95 testEqual(t, "Decode(%q) = length %v, want %v", p.encoded, count, len(p.decoded)) 97 testEqual(t, "Decode(%q) = end %v, want %v", p.encoded, end, (p.encoded[len(p.encoded)-1] == '=') [all...] |
/prebuilts/go/linux-x86/src/encoding/base32/ |
base32_test.go | 45 func testEqual(t *testing.T, msg string, args ...interface{}) bool { 56 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, got, p.encoded) 66 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, bb.String(), p.encoded) 81 testEqual(t, "Write(%q) gave error %v, want %v", input[pos:end], err, error(nil)) 82 testEqual(t, "Write(%q) gave length %v, want %v", input[pos:end], n, end-pos) 85 testEqual(t, "Close gave error %v, want %v", err, error(nil)) 86 testEqual(t, "Encoding/%d of %q = %q, want %q", bs, bigtest.decoded, bb.String(), bigtest.encoded) 94 testEqual(t, "Decode(%q) = error %v, want %v", p.encoded, err, error(nil)) 95 testEqual(t, "Decode(%q) = length %v, want %v", p.encoded, count, len(p.decoded)) 97 testEqual(t, "Decode(%q) = end %v, want %v", p.encoded, end, (p.encoded[len(p.encoded)-1] == '=') [all...] |
/prebuilts/go/darwin-x86/src/encoding/base64/ |
base64_test.go | 100 func testEqual(t *testing.T, msg string, args ...interface{}) bool { 112 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, 124 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, bb.String(), p.encoded) 139 testEqual(t, "Write(%q) gave error %v, want %v", input[pos:end], err, error(nil)) 140 testEqual(t, "Write(%q) gave length %v, want %v", input[pos:end], n, end-pos) 143 testEqual(t, "Close gave error %v, want %v", err, error(nil)) 144 testEqual(t, "Encoding/%d of %q = %q, want %q", bs, bigtest.decoded, bb.String(), bigtest.encoded) 154 testEqual(t, "Decode(%q) = error %v, want %v", encoded, err, error(nil)) 155 testEqual(t, "Decode(%q) = length %v, want %v", encoded, count, len(p.decoded)) 157 testEqual(t, "Decode(%q) = end %v, want %v", encoded, end, len(p.decoded)%3 != 0 [all...] |
/prebuilts/go/linux-x86/src/encoding/base64/ |
base64_test.go | 100 func testEqual(t *testing.T, msg string, args ...interface{}) bool { 112 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, 124 testEqual(t, "Encode(%q) = %q, want %q", p.decoded, bb.String(), p.encoded) 139 testEqual(t, "Write(%q) gave error %v, want %v", input[pos:end], err, error(nil)) 140 testEqual(t, "Write(%q) gave length %v, want %v", input[pos:end], n, end-pos) 143 testEqual(t, "Close gave error %v, want %v", err, error(nil)) 144 testEqual(t, "Encoding/%d of %q = %q, want %q", bs, bigtest.decoded, bb.String(), bigtest.encoded) 154 testEqual(t, "Decode(%q) = error %v, want %v", encoded, err, error(nil)) 155 testEqual(t, "Decode(%q) = length %v, want %v", encoded, count, len(p.decoded)) 157 testEqual(t, "Decode(%q) = end %v, want %v", encoded, end, len(p.decoded)%3 != 0 [all...] |
/external/toolchain-utils/bestflags/ |
flags_test.py | 47 def testEqual(self): 102 def testEqual(self):
|
task_test.py | 57 def testEqual(self):
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
ObjectsTest.java | 31 public void testEqual() throws Exception {
|
/external/guava/guava-tests/test/com/google/common/base/ |
ObjectsTest.java | 33 public void testEqual() throws Exception {
|
/external/guava/guava-tests/test/com/google/common/io/ |
FilesTest.java | 256 public void testEqual() throws IOException {
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/ipaddr/ |
ipaddr_test.py | 470 def testEqual(self): [all...] |