Home
last modified time | relevance | path

Searched refs:ptd (Results 1 – 9 of 9) sorted by relevance

/third_party/libsoup/tests/
Dchunk-test.c21 PutTestData *ptd = user_data; in write_next_chunk() local
23 debug_printf (2, " writing chunk %d\n", ptd->next); in write_next_chunk()
25 if (ptd->streaming && ptd->next > 0) { in write_next_chunk()
26 soup_test_assert (ptd->chunks[ptd->next - 1] == NULL, in write_next_chunk()
30 if (ptd->next < G_N_ELEMENTS (ptd->chunks)) { in write_next_chunk()
32 ptd->chunks[ptd->next]); in write_next_chunk()
33 soup_buffer_free (ptd->chunks[ptd->next]); in write_next_chunk()
34 ptd->next++; in write_next_chunk()
37 soup_session_unpause_message (ptd->session, msg); in write_next_chunk()
46 PutTestData *ptd = user_data; in write_next_chunk_streaming_hack() local
[all …]
/third_party/typescript/tests/baselines/reference/
DmixinPrivateAndProtected.js8 protected ptd: number = 1;
14 protected ptd: number = 10;
21 protected ptd: number = 10;
31 protected ptd: number = 100;
47 a.ptd.toFixed(); // Error
51 ab.ptd.toFixed(); // Error
55 abc.ptd.toFixed(); // Error
59 ab2c.ptd.toFixed(); // Error
112 this.ptd = 1;
122 _this.ptd = 10;
[all …]
DmixinPrivateAndProtected.types15 protected ptd: number = 1;
16 >ptd : number
29 >class extends Cls { protected ptd: number = 10; private pvt: number = 0; } : { ne…
32 protected ptd: number = 10;
33 >ptd : number
48 >class extends Cls { protected ptd: number = 10; } : { new (...args: any[]): (Anonymous c…
51 protected ptd: number = 10;
52 >ptd : number
76 >class extends Cls { protected ptd: number = 100; private pvt: number = 0; } : { n…
79 protected ptd: number = 100;
[all …]
DmixinPrivateAndProtected.symbols16 protected ptd: number = 1;
17 >ptd : Symbol(A.ptd, Decl(mixinPrivateAndProtected.ts, 5, 26))
33 protected ptd: number = 10;
34 >ptd : Symbol((Anonymous class).ptd, Decl(mixinPrivateAndProtected.ts, 11, 30))
53 protected ptd: number = 10;
54 >ptd : Symbol((Anonymous class).ptd, Decl(mixinPrivateAndProtected.ts, 18, 30))
80 protected ptd: number = 100;
81 >ptd : Symbol((Anonymous class).ptd, Decl(mixinPrivateAndProtected.ts, 28, 30))
124 a.ptd.toFixed(); // Error
125 >a.ptd.toFixed : Symbol(Number.toFixed, Decl(lib.es5.d.ts, --, --))
[all …]
DmixinPrivateAndProtected.errors.txt1 tests/cases/compiler/mixinPrivateAndProtected.ts(46,3): error TS2445: Property 'ptd' is protected a…
5 tests/cases/compiler/mixinPrivateAndProtected.ts(50,4): error TS2339: Property 'ptd' does not exist…
11 tests/cases/compiler/mixinPrivateAndProtected.ts(54,5): error TS2339: Property 'ptd' does not exist…
17 tests/cases/compiler/mixinPrivateAndProtected.ts(58,6): error TS2339: Property 'ptd' does not exist…
30 protected ptd: number = 1;
36 protected ptd: number = 10;
43 protected ptd: number = 10;
53 protected ptd: number = 100;
69 a.ptd.toFixed(); // Error
71 !!! error TS2445: Property 'ptd' is protected and only accessible within class 'A' and its subclass…
[all …]
/third_party/typescript/tests/cases/compiler/
DmixinPrivateAndProtected.ts7 protected ptd: number = 1; property in A
13 protected ptd: number = 10;
20 protected ptd: number = 10;
30 protected ptd: number = 100;
46 a.ptd.toFixed(); // Error
50 ab.ptd.toFixed(); // Error
54 abc.ptd.toFixed(); // Error
58 ab2c.ptd.toFixed(); // Error
/third_party/flutter/skia/tests/
DGLProgramsTest.cpp316 GrProcessorTestData ptd(&random, context, renderTargetContext.get(), proxies); in ProgramUnitTest() local
317 set_random_color_coverage_stages(&paint, &ptd, maxStages, maxLevels); in ProgramUnitTest()
318 set_random_xpf(&paint, &ptd); in ProgramUnitTest()
341 GrProcessorTestData ptd(&random, context, renderTargetContext.get(), proxies); in ProgramUnitTest() local
345 auto fp = GrFragmentProcessorTestFactory::MakeIdx(i, &ptd); in ProgramUnitTest()
/third_party/skia/tests/
DProgramsTest.cpp288 GrProcessorTestData ptd(&random, direct, /*maxTreeDepth=*/1, SK_ARRAY_COUNT(views), views); in ProgramUnitTest() local
289 set_random_color_coverage_stages(&paint, &ptd, maxStages, maxLevels); in ProgramUnitTest()
290 set_random_xpf(&paint, &ptd); in ProgramUnitTest()
310 GrProcessorTestData ptd(&random, direct, /*maxTreeDepth=*/1, SK_ARRAY_COUNT(views), in ProgramUnitTest() local
315 auto fp = GrFragmentProcessorTestFactory::MakeIdx(i, &ptd); in ProgramUnitTest()
/third_party/cef/tests/cefclient/browser/
Dosr_dragdrop_win.cc525 if (m_pFormatEtc[i].ptd) in ~DragEnumFormatEtc()
526 CoTaskMemFree(m_pFormatEtc[i].ptd); in ~DragEnumFormatEtc()
536 if (source->ptd) { in DeepCopyFormatEtc()
538 dest->ptd = reinterpret_cast<DVTARGETDEVICE*>( in DeepCopyFormatEtc()
542 *(dest->ptd) = *(source->ptd); in DeepCopyFormatEtc()
562 pFormatEtcOut->ptd = nullptr; in GetCanonicalFormatEtc()