HomeSort by relevance Sort by last modified time
    Searched refs:tc (Results 301 - 325 of 886) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
CallTips.py 193 class TC(object):
222 tc = TC() variable
224 TC, tc.t1, tc.t2, tc.t3, tc.t4, tc.t5, tc.t6, tc.t7
    [all...]
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter_test.go 361 "?\tb\tc\n" +
373 "a\tè\tc\t\n" +
385 "a\tb\tc\n" +
397 "a\tb\tc\n" +
536 "a\tb\tc\td\n" +
537 "a\tb\tc\td\te\n",
542 "a\tb\tc\td\n" +
543 "a\tb\tc\td\te\n",
558 "a\tb\tc\td\n" +
559 "a\tb\tc\td\te\n"
    [all...]
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter_test.go 361 "?\tb\tc\n" +
373 "a\tè\tc\t\n" +
385 "a\tb\tc\n" +
397 "a\tb\tc\n" +
536 "a\tb\tc\td\n" +
537 "a\tb\tc\td\te\n",
542 "a\tb\tc\td\n" +
543 "a\tb\tc\td\te\n",
558 "a\tb\tc\td\n" +
559 "a\tb\tc\td\te\n"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 193 class TC(object):
222 tc = TC() variable
224 TC, tc.t1, tc.t2, tc.t3, tc.t4, tc.t5, tc.t6, tc.t7
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 193 class TC(object):
222 tc = TC() variable
224 TC, tc.t1, tc.t2, tc.t3, tc.t4, tc.t5, tc.t6, tc.t7
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
aix-gc-1.s 10 LC01: .tc indirect1[TC],indirect1[RW]
11 LC02: .tc block[TC],block[RW]
  /external/deqp/modules/gles2/functional/
es2fScissorTests.cpp 53 tcu::TestContext& tc = m_context.getTestContext();
84 addChild(createPrimitiveTest(tc,
94 addChild(createClearTest(tc, rc, "clear_depth", "Depth buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_DEPTH_BUFFER_BIT));
95 addChild(createClearTest(tc, rc, "clear_stencil", "Stencil buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_STENCIL_BUFFER_BIT));
96 addChild(createClearTest(tc, rc, "clear_color", "Color buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_COLOR_BUFFER_BIT));
  /external/jemalloc/test/unit/
atomic.c 11 #define TEST_BODY(p, t, tc, ta, FMT) do { \
40 (t)((tc)tests[i].accum0 + (tc)tests[i].x), \
48 (t)((tc)tests[i].accum0 - (tc)tests[i].x), \
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl33.c 93 int tc; local
102 for (tc = 0; tc < TST_TOTAL; tc++)
103 do_test(tc);
  /external/golang-protobuf/proto/
size2_test.go 57 for _, tc := range testCases {
58 size := sizeVarint(tc.n)
59 if size != tc.size {
60 t.Errorf("sizeVarint(%d) = %d, want %d", tc.n, size, tc.size)
  /prebuilts/go/darwin-x86/src/testing/
sub_test.go 73 for i, tc := range testCases {
76 maxParallel: tc.max,
78 for j, call := range tc.run {
340 for _, tc := range testCases {
341 ctx := newTestContext(tc.maxPar, newMatcher(regexp.MatchString, "", ""))
348 chatty: tc.chatty,
352 ok := root.Run(tc.desc, tc.f)
355 if ok != tc.ok {
356 t.Errorf("%s:ok: got %v; want %v", tc.desc, ok, tc.ok
    [all...]
  /prebuilts/go/linux-x86/src/testing/
sub_test.go 73 for i, tc := range testCases {
76 maxParallel: tc.max,
78 for j, call := range tc.run {
340 for _, tc := range testCases {
341 ctx := newTestContext(tc.maxPar, newMatcher(regexp.MatchString, "", ""))
348 chatty: tc.chatty,
352 ok := root.Run(tc.desc, tc.f)
355 if ok != tc.ok {
356 t.Errorf("%s:ok: got %v; want %v", tc.desc, ok, tc.ok
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_calltips.py 10 # Test Class TC is used in multiple get_argspec test methods
11 class TC(object):
36 tc = TC() variable
112 for func in (t1, t2, t3, t4, t5, TC):
116 doc = '\ndoc' if TC.__doc__ is not None else ''
117 for meth in (TC.t1, TC.t2, TC.t3, TC.t4, TC.t5, TC.t6, TC.__call__)
    [all...]
  /external/python/cpython3/Lib/idlelib/idle_test/
test_calltips.py 8 # Test Class TC is used in multiple get_argspec test methods
9 class TC():
34 tc = TC() variable
114 for func in (t1, t2, t3, t4, t5, TC):
118 doc = '\ndoc' if TC.__doc__ is not None else ''
119 for meth in (TC.t1, TC.t2, TC.t3, TC.t4, TC.t5, TC.t6, TC.__call__)
    [all...]
  /external/libnl/lib/route/
qdisc.c 13 * @ingroup tc
19 #include <netlink-private/tc.h>
23 #include <netlink-private/route/tc-api.h>
68 struct rtnl_tc *tc; local
70 tc = TC_CAST(nl_object_alloc(&qdisc_obj_ops));
71 if (tc)
72 tc->tc_type = RTNL_TC_TYPE_QDISC;
74 return (struct rtnl_qdisc *) tc;
519 static void qdisc_dump_details(struct rtnl_tc *tc, struct nl_dump_params *p)
521 struct rtnl_qdisc *qdisc = (struct rtnl_qdisc *) tc;
    [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
RequestControlPane.java 92 public RequestControlPane(TestingCamera21 tc, AttributeSet attrs, StatusListener listener) {
93 super(tc, attrs, listener, tc.getPaneTracker());
96 setUpUI(tc);
99 public RequestControlPane(TestingCamera21 tc, XmlPullParser configParser,
101 super(tc, null, listener, tc.getPaneTracker());
103 this.setName(tc.getResources().getString(R.string.request_pane_title));
120 setUpUI(tc);
  /external/clang/test/SemaCXX/
member-init.cpp 43 struct Throw { ThrowCtor tc = 42; }; member in struct:Throw
44 struct NoThrow { NoThrowCtor tc = 42; }; member in struct:NoThrow
55 ThrowCtor tc = 123; member in struct:CheckExcSpecFail
  /external/ltp/testcases/kernel/syscalls/fchown/
fchown02.c 61 } tc[] = { variable in typeref:struct:test_case
125 for (i = 0; tc[i].desc != NULL; i++)
126 verify_fchown(tc + i);
  /device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_dual_test.c 1889 int tc = 0; local
1912 int i, tc = 0; local
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
mm_qcamera_dual_test.c 1889 int tc = 0; local
1912 int i, tc = 0; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
profile_test.go 123 for _, tc := range []struct {
156 t.Run(tc.wantErr, func(t *testing.T) {
158 tc.mutateFn(p)
160 t.Errorf("CheckValid(): got no error, want error %q", tc.wantErr)
161 } else if !strings.Contains(err.Error(), tc.wantErr) {
162 t.Errorf("CheckValid(): got error %v, want error %q", err, tc.wantErr)
631 for _, tc := range []struct {
662 t.Run(tc.name, func(t *testing.T) {
663 prof, err := Merge(tc.profs)
668 if want, got := len(tc.wantNumLabels), len(prof.Sample); want != got
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
profile_test.go 123 for _, tc := range []struct {
156 t.Run(tc.wantErr, func(t *testing.T) {
158 tc.mutateFn(p)
160 t.Errorf("CheckValid(): got no error, want error %q", tc.wantErr)
161 } else if !strings.Contains(err.Error(), tc.wantErr) {
162 t.Errorf("CheckValid(): got error %v, want error %q", err, tc.wantErr)
631 for _, tc := range []struct {
662 t.Run(tc.name, func(t *testing.T) {
663 prof, err := Merge(tc.profs)
668 if want, got := len(tc.wantNumLabels), len(prof.Sample); want != got
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
strings_test.go 514 for _, tc := range testCases {
515 actual := f(tc.in)
516 if actual != tc.out {
517 t.Errorf("%s(%q) = %q; want %q", funcName, tc.in, actual, tc.out)
660 for _, tc := range upperTests {
661 b.Run(tc.in, func(b *testing.B) {
663 actual := ToUpper(tc.in)
664 if actual != tc.out {
665 b.Errorf("ToUpper(%q) = %q; want %q", tc.in, actual, tc.out
    [all...]
  /prebuilts/go/linux-x86/src/strings/
strings_test.go 514 for _, tc := range testCases {
515 actual := f(tc.in)
516 if actual != tc.out {
517 t.Errorf("%s(%q) = %q; want %q", funcName, tc.in, actual, tc.out)
660 for _, tc := range upperTests {
661 b.Run(tc.in, func(b *testing.B) {
663 actual := ToUpper(tc.in)
664 if actual != tc.out {
665 b.Errorf("ToUpper(%q) = %q; want %q", tc.in, actual, tc.out
    [all...]
  /prebuilts/go/darwin-x86/src/image/gif/
reader_test.go 81 for _, tc := range testCases {
85 // Write an image with bounds 2x1 but tc.nPix pixels. If tc.nPix != 2
90 if tc.nPix > 0 {
91 enc := lzwEncode(make([]byte, tc.nPix))
92 if len(enc)+tc.extraExisting > 0xff {
94 tc.nPix, tc.extraExisting, tc.extraSeparate, len(enc))
99 b.WriteByte(byte(len(enc) + tc.extraExisting)
    [all...]

Completed in 2400 milliseconds

<<11121314151617181920>>