/prebuilts/go/darwin-x86/src/net/http/cookiejar/ |
punycode_test.go | 154 for _, tc := range punycodeTestCases { 155 if got, err := encode("", tc.s); err != nil { 156 t.Errorf(`encode("", %q): %v`, tc.s, err) 157 } else if got != tc.encoded { 158 t.Errorf(`encode("", %q): got %q, want %q`, tc.s, got, tc.encoded)
|
/prebuilts/go/linux-x86/src/encoding/base32/ |
base32_test.go | 222 for _, tc := range testCases { 223 input := tc.r.data 224 decoder := NewDecoder(StdEncoding, &tc.r) 226 if tc.dbuflen > 0 { 227 dbuflen = tc.dbuflen 242 testEqual(t, "Decoding of %q = %q, want %q", string(input), string(res), tc.res) 243 testEqual(t, "Decoding of %q err = %v, expected %v", string(input), err, tc.err) 329 for _, tc := range testCases { 330 dbuf := make([]byte, StdEncoding.DecodedLen(len(tc.input))) 331 _, err := StdEncoding.Decode(dbuf, []byte(tc.input) [all...] |
/prebuilts/go/linux-x86/src/net/http/cookiejar/ |
punycode_test.go | 154 for _, tc := range punycodeTestCases { 155 if got, err := encode("", tc.s); err != nil { 156 t.Errorf(`encode("", %q): %v`, tc.s, err) 157 } else if got != tc.encoded { 158 t.Errorf(`encode("", %q): got %q, want %q`, tc.s, got, tc.encoded)
|
/external/testng/src/main/java/org/testng/reporters/ |
JUnitReportReporter.java | 43 ITestContext tc = sr.getTestContext(); local 44 addResults(tc.getPassedTests().getAllResults(), results); 45 addResults(tc.getFailedTests().getAllResults(), results); 46 addResults(tc.getSkippedTests().getAllResults(), results); 47 addResults(tc.getFailedConfigurations().getAllResults(), failedConfigurations); 48 for (ITestResult tr : tc.getPassedConfigurations().getAllResults()) {
|
/prebuilts/go/darwin-x86/src/html/template/ |
content_test.go | 18 HTML(`Hello, <b>World</b> &tc!`), 70 `Hello, <b>World</b> &tc!`, 100 `Hello, World &tc!`, 115 `Hello, World &tc!`, 130 `Hello, <b>World</b> &tc!`, 144 `"Hello, \u003cb\u003eWorld\u003c/b\u003e \u0026amp;tc!"`, 160 `"Hello, \u003cb\u003eWorld\u003c/b\u003e \u0026amp;tc!"`, 176 `Hello, \x3cb\x3eWorld\x3c\/b\x3e \x26amp;tc!`, 191 `Hello, \x3cb\x3eWorld\x3c\/b\x3e \x26amp;tc!`, 206 `"Hello, \u003cb\u003eWorld\u003c/b\u003e \u0026amp;tc!"`, [all...] |
/prebuilts/go/linux-x86/src/html/template/ |
content_test.go | 18 HTML(`Hello, <b>World</b> &tc!`), 70 `Hello, <b>World</b> &tc!`, 100 `Hello, World &tc!`, 115 `Hello, World &tc!`, 130 `Hello, <b>World</b> &tc!`, 144 `"Hello, \u003cb\u003eWorld\u003c/b\u003e \u0026amp;tc!"`, 160 `"Hello, \u003cb\u003eWorld\u003c/b\u003e \u0026amp;tc!"`, 176 `Hello, \x3cb\x3eWorld\x3c\/b\x3e \x26amp;tc!`, 191 `Hello, \x3cb\x3eWorld\x3c\/b\x3e \x26amp;tc!`, 206 `"Hello, \u003cb\u003eWorld\u003c/b\u003e \u0026amp;tc!"`, [all...] |
/external/jemalloc/include/jemalloc/ |
jemalloc_macros.h | 27 # define MALLOCX_TCACHE(tc) ((int)(((tc)+2) << 8))
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/arpa/ |
nameser_compat.h | 55 unsigned tc: 1; /*%< truncated message */ member in struct:__anon62079 67 unsigned tc :1; /*%< truncated message */ member in struct:__anon62079
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug343.go | 31 . INDREG a(1) l(15) x(24) tc(2) runtime.ret G0 string
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug343.go | 31 . INDREG a(1) l(15) x(24) tc(2) runtime.ret G0 string
|
/system/bt/stack/mcap/ |
mca_main.cc | 114 tMCA_TC_TBL* p_tbl = mca_cb.tc.tc_tbl; 117 /* find next free entry in tc table */ 135 mca_cb.tc.lcid_tbl[p_ccb->lcid - L2CAP_BASE_APPL_CID] = i; 152 tMCA_TC_TBL* p_tbl = mca_cb.tc.tc_tbl; 155 /* find next free entry in tc table */ 173 mca_cb.tc.lcid_tbl[p_dcb->lcid - L2CAP_BASE_APPL_CID] = i; 194 idx = mca_cb.tc.lcid_tbl[lcid - L2CAP_BASE_APPL_CID]; 197 return &mca_cb.tc.tc_tbl[idx]; 217 idx = mca_cb.tc.lcid_tbl[lcid - L2CAP_BASE_APPL_CID]; 220 mca_cb.tc.tc_tbl[idx].state = MCA_TC_ST_UNUSED [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_mcomp.c | 221 CHECK_BETTER(left, tr, tc - hstep); \ 222 CHECK_BETTER(right, tr, tc + hstep); \ 223 CHECK_BETTER(up, tr - hstep, tc); \ 224 CHECK_BETTER(down, tr + hstep, tc); \ 227 case 0: CHECK_BETTER(diag, tr - hstep, tc - hstep); break; \ 228 case 1: CHECK_BETTER(diag, tr - hstep, tc + hstep); break; \ 229 case 2: CHECK_BETTER(diag, tr + hstep, tc - hstep); break; \ 230 case 3: CHECK_BETTER(diag, tr + hstep, tc + hstep); break; \ 238 if (tr != br && tc != bc) { \ 240 kc = bc - tc; \ 667 int tc = bc; local [all...] |
/prebuilts/go/darwin-x86/src/bytes/ |
bytes_test.go | 965 for _, tc := range testCases { 966 actual := string(f([]byte(tc.in))) 967 if actual != tc.out { 968 t.Errorf("%s(%q) = %q; want %q", funcName, tc.in, actual, tc.out) 1215 for _, tc := range trimTests { 1216 name := tc.f 1235 actual = string(f([]byte(tc.in), tc.arg)) 1237 actual = string(fb([]byte(tc.in), []byte(tc.arg)) [all...] |
/prebuilts/go/linux-x86/src/bytes/ |
bytes_test.go | 965 for _, tc := range testCases { 966 actual := string(f([]byte(tc.in))) 967 if actual != tc.out { 968 t.Errorf("%s(%q) = %q; want %q", funcName, tc.in, actual, tc.out) 1215 for _, tc := range trimTests { 1216 name := tc.f 1235 actual = string(f([]byte(tc.in), tc.arg)) 1237 actual = string(fb([]byte(tc.in), []byte(tc.arg)) [all...] |
/build/kati/ |
pathutil_test.go | 119 for _, tc := range []struct { 138 if got, want := filepathClean(tc.path), tc.want; got != want { 139 t.Errorf("filepathClean(%q)=%q; want=%q", tc.path, got, want) 150 for _, tc := range []struct { 388 fc, err := parseFindCommand(tc.cmd) 390 t.Errorf("parseFindCommand(%q)=_, %v; want=_, <nil>", tc.cmd, err) 393 if got, want := fc, tc.want; !reflect.DeepEqual(got, want) { 394 t.Errorf("parseFindCommand(%q)=%#v\n want=%#v\n", tc.cmd, got, want) 431 for _, tc := range []struct [all...] |
/external/libavc/common/ |
ih264_deblk_edge_filters.c | 550 WORD8 tc; local 589 /* tc */ 590 tc = tc0 + (a_p < beta) + (a_q < beta); 593 delta = CLIP3(-tc, tc, val); 667 WORD8 tc; local 781 WORD8 tc; local 902 WORD8 tc; local 1233 WORD8 tc; local 1350 WORD8 tc; local [all...] |
/external/testng/src/main/java/org/testng/ |
TestRunner.java | 442 ITestClass tc = new TestClass(ic, local 448 m_classMap.put(ic.getRealClass(), tc); local 463 for (ITestClass tc : m_classMap.values()) { 464 fixMethodsWithClass(tc.getTestMethods(), tc, testMethods); local 465 fixMethodsWithClass(tc.getBeforeClassMethods(), tc, beforeClassMethods); local 466 fixMethodsWithClass(tc.getBeforeTestMethods(), tc, null); local 467 fixMethodsWithClass(tc.getAfterTestMethods(), tc, null) local 468 fixMethodsWithClass(tc.getAfterClassMethods(), tc, afterClassMethods); local 469 fixMethodsWithClass(tc.getBeforeSuiteMethods(), tc, beforeSuiteMethods); local 470 fixMethodsWithClass(tc.getAfterSuiteMethods(), tc, afterSuiteMethods); local 471 fixMethodsWithClass(tc.getBeforeTestConfigurationMethods(), tc, beforeXmlTestMethods); local 472 fixMethodsWithClass(tc.getAfterTestConfigurationMethods(), tc, afterXmlTestMethods); local 473 fixMethodsWithClass(tc.getBeforeGroupsMethods(), tc, local 475 fixMethodsWithClass(tc.getAfterGroupsMethods(), tc, local [all...] |
/build/kati/testcase/ |
gen_testcase_parse_benchmark.go | 100 for _, tc := range matches { 101 writeBenchmarkTest(f, tc)
|
/external/golang-protobuf/proto/ |
equal_test.go | 219 for _, tc := range EqualTests { 220 if res := Equal(tc.a, tc.b); res != tc.exp { 221 t.Errorf("%v: Equal(%v, %v) = %v, want %v", tc.desc, tc.a, tc.b, res, tc.exp)
|
/external/iproute2/examples/diffserv/ |
Edge2 | 13 TC=$IPROUTE/tc/tc 31 $TC qdisc add dev $INDEV handle ffff: ingress 43 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 3 fw \ 52 $TC qdisc add $EGDEV handle 1:0 root dsmark indices 64 56 $TC class change $EGDEV classid 1:1 dsmark mask 0x3 \ 58 $TC class change $EGDEV classid 1:2 dsmark mask 0x3 \ 60 $TC class change $EGDEV classid 1:3 dsmark mask 0x3 \ 66 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 1 fw classid 1: [all...] |
Edge31-cb-chains | 14 TC=$IPROUTE/tc/tc 40 $TC qdisc add dev $INDEV handle ffff: ingress 52 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \ 59 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \ 66 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \ 73 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 2 fw \ 83 $TC qdisc add $EGDEV handle 1:0 root dsmark indices 64 90 $TC class change $EGDEV classid 1:1 dsmark mask 0x3 [all...] |
/external/junit/src/main/java/org/junit/internal/runners/ |
JUnit38ClassRunner.java | 100 TestCase tc = (TestCase) test; local 101 return Description.createTestDescription(tc.getClass(), tc.getName(), 102 getAnnotations(tc));
|
/external/libnl/include/netlink-private/route/ |
tc-api.h | 2 * netlink-private/route/tc-api.h Traffic Control API 17 #include <netlink/route/tc.h> 25 * @ingroup tc 59 * Uesd to to fill tc related messages, unlike with to_msg_fill, 71 * Called before a tc object is destroyed
|
/external/libnl/lib/route/cls/ematch/ |
cmp.c | 20 #include <netlink-private/tc.h>
|
/external/libnl/lib/route/ |
pktloc_syntax.y | 3 #include <netlink-private/tc.h>
|