Home
last modified time | relevance | path

Searched refs:spp (Results 1 – 25 of 25) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DthisTypeAccessibility.types21 protected static spp: number = 123;
22 >spp : number
59 protected static spp: number;
60 >spp : number
67 …this.p = p; this.pp = p; this.ppp = p; MyClass.sp = p; MyClass.spp = p; MyClass.spp…
73 …this.p = p; this.pp = p; this.ppp = p; MyClass.sp = p; MyClass.spp = p; MyClass.spp…
105 MyClass.spp = p;
106 >MyClass.spp = p : number
107 >MyClass.spp : number
109 >spp : number
[all …]
DthisTypeAccessibility.js7 protected static spp: number = 123;
22 protected static spp: number;
31 MyClass.spp = p;
40 MyClass.spp = p;
49 MyClass.spp = p;
60 MyGenericClass.spp = p;
73 MyClass.spp = 123;
87 MyClass.spp = p;
95 MyClass.spp = p;
103 MyClass.spp = p;
[all …]
DthisTypeAccessibility.symbols17 protected static spp: number = 123;
18 >spp : Symbol(MyClass.spp, Decl(thisTypeAccessibility.ts, 4, 36))
59 protected static spp: number;
60 >spp : Symbol(MyGenericClass.spp, Decl(thisTypeAccessibility.ts, 19, 30))
100 MyClass.spp = p;
101 >MyClass.spp : Symbol(MyClass.spp, Decl(thisTypeAccessibility.ts, 4, 36))
103 >spp : Symbol(MyClass.spp, Decl(thisTypeAccessibility.ts, 4, 36))
149 MyClass.spp = p;
150 >MyClass.spp : Symbol(MyClass.spp, Decl(thisTypeAccessibility.ts, 4, 36))
152 >spp : Symbol(MyClass.spp, Decl(thisTypeAccessibility.ts, 4, 36))
[all …]
DthisTypeAccessibility.errors.txt3 tests/cases/conformance/types/thisType/thisTypeAccessibility.ts(30,13): error TS2445: Property 'spp
6 tests/cases/conformance/types/thisType/thisTypeAccessibility.ts(39,13): error TS2445: Property 'spp
9 tests/cases/conformance/types/thisType/thisTypeAccessibility.ts(48,13): error TS2445: Property 'spp
12 tests/cases/conformance/types/thisType/thisTypeAccessibility.ts(59,20): error TS2445: Property 'spp
21 protected static spp: number = 123;
36 protected static spp: number;
49 MyClass.spp = p;
51 !!! error TS2445: Property 'spp' is protected and only accessible within class 'MyClass' and its su…
64 MyClass.spp = p;
66 !!! error TS2445: Property 'spp' is protected and only accessible within class 'MyClass' and its su…
[all …]
/third_party/mesa3d/src/glx/
Dclientattrib.c74 __GLXattribute **spp = gc->attributes.stackPointer, *sp; in __indirect_glPushClientAttrib() local
76 if (spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]) { in __indirect_glPushClientAttrib()
77 if (!(sp = *spp)) { in __indirect_glPushClientAttrib()
83 *spp = sp; in __indirect_glPushClientAttrib()
86 gc->attributes.stackPointer = spp + 1; in __indirect_glPushClientAttrib()
106 __GLXattribute **spp = gc->attributes.stackPointer, *sp; in __indirect_glPopClientAttrib() local
109 if (spp > &gc->attributes.stack[0]) { in __indirect_glPopClientAttrib()
110 --spp; in __indirect_glPopClientAttrib()
111 sp = *spp; in __indirect_glPopClientAttrib()
114 gc->attributes.stackPointer = spp; in __indirect_glPopClientAttrib()
Dindirect_glx.c52 __GLXattribute *sp, **spp; in __glFreeAttributeState() local
54 for (spp = &gc->attributes.stack[0]; in __glFreeAttributeState()
55 spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]; spp++) { in __glFreeAttributeState()
56 sp = *spp; in __glFreeAttributeState()
/third_party/typescript/tests/cases/conformance/types/thisType/
DthisTypeAccessibility.ts6 protected static spp: number = 123; property in MyClass
21 protected static spp: number; property in MyGenericClass
30 MyClass.spp = p;
39 MyClass.spp = p;
48 MyClass.spp = p;
59 MyGenericClass.spp = p;
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstnvh265enc.c359 NV_ENC_SEQUENCE_PARAM_PAYLOAD spp = { 0, }; in gst_nv_h265_enc_set_level_tier_and_profile() local
363 spp.version = gst_nvenc_get_sequence_param_payload_version (); in gst_nv_h265_enc_set_level_tier_and_profile()
364 spp.inBufferSize = N_BYTES_VPS; in gst_nv_h265_enc_set_level_tier_and_profile()
365 spp.spsId = 0; in gst_nv_h265_enc_set_level_tier_and_profile()
366 spp.ppsId = 0; in gst_nv_h265_enc_set_level_tier_and_profile()
367 spp.spsppsBuffer = &vps; in gst_nv_h265_enc_set_level_tier_and_profile()
368 spp.outSPSPPSPayloadSize = &seq_size; in gst_nv_h265_enc_set_level_tier_and_profile()
369 nv_ret = NvEncGetSequenceParams (GST_NV_BASE_ENC (nvenc)->encoder, &spp); in gst_nv_h265_enc_set_level_tier_and_profile()
382 GST_MEMDUMP ("Header", spp.spsppsBuffer, seq_size); in gst_nv_h265_enc_set_level_tier_and_profile()
Dgstnvh264enc.c329 NV_ENC_SEQUENCE_PARAM_PAYLOAD spp = { 0, }; in gst_nv_h264_enc_set_profile_and_level() local
338 spp.version = gst_nvenc_get_sequence_param_payload_version (); in gst_nv_h264_enc_set_profile_and_level()
339 spp.inBufferSize = N_BYTES_SPS; in gst_nv_h264_enc_set_profile_and_level()
340 spp.spsId = 0; in gst_nv_h264_enc_set_profile_and_level()
341 spp.ppsId = 0; in gst_nv_h264_enc_set_profile_and_level()
342 spp.spsppsBuffer = &sps; in gst_nv_h264_enc_set_profile_and_level()
343 spp.outSPSPPSPayloadSize = &seq_size; in gst_nv_h264_enc_set_profile_and_level()
344 nv_ret = NvEncGetSequenceParams (GST_NV_BASE_ENC (nvenc)->encoder, &spp); in gst_nv_h264_enc_set_profile_and_level()
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
D.gitignore4 spp.xsd
Dosu_client.c2565 int spp; in cmd_sub_rem() local
2644 spp = 0; in cmd_sub_rem()
2646 spp = 1; in cmd_sub_rem()
2649 spp = 1; in cmd_sub_rem()
2693 if (spp) in cmd_sub_rem()
2724 int spp; in cmd_pol_upd() local
2809 spp = 0; in cmd_pol_upd()
2811 spp = 1; in cmd_pol_upd()
2814 spp = 1; in cmd_pol_upd()
2848 if (spp) in cmd_pol_upd()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
D.gitignore4 spp.xsd
Dosu_client.c2565 int spp; in cmd_sub_rem() local
2644 spp = 0; in cmd_sub_rem()
2646 spp = 1; in cmd_sub_rem()
2649 spp = 1; in cmd_sub_rem()
2693 if (spp) in cmd_sub_rem()
2724 int spp; in cmd_pol_upd() local
2809 spp = 0; in cmd_pol_upd()
2811 spp = 1; in cmd_pol_upd()
2814 spp = 1; in cmd_pol_upd()
2848 if (spp) in cmd_pol_upd()
/third_party/icu/
D.gitattributes72 *.spp -text
/third_party/flutter/skia/third_party/externals/icu/source/data/
DMakefile.in446 SPREP_FILES = $(ALL_SPREP_SOURCE:%.txt=$(BUILDDIR)/%.spp)
447 SPREP_FILES_SHORT = $(ALL_SPREP_SOURCE:%.txt=%.spp)
553 $(BUILDDIR)/%.spp: $(SPREPSRCDIR)/%.txt $(TOOLBINDIR)/gensprep$(TOOLEXEEXT) $(BUILDDIR)/unames.icu
554 …$(INVOKE) $(TOOLBINDIR)/gensprep -d $(BUILDDIR) -i $(BUILDDIR) -s $(SPREPSRCDIR) -b $(@F:%.spp=%) …
Dmakedata.mak550 SPREP_FILES = $(SPREP_SOURCE:.txt=.spp)
740 $(SPREP_FILES:.spp=.spp
783 -@erase "*.spp"
821 -@erase "*.spp"
1106 # Stringprep .spp file generation.
1107 {$(ICUSRCDATA_RELATIVE_PATH)\$(ICUSPREP)}.txt.spp:
/third_party/gstreamer/gstplugins_bad/ext/teletextdec/
Dgstteletextdec.c1004 GstTeletextFrame * frame, vbi_sliced ** spp, guint lofp, systems system) in gst_teletextdec_line_address() argument
1040 *spp = frame->current_slice++; in gst_teletextdec_line_address()
1041 (*spp)->line = frame_line; in gst_teletextdec_line_address()
/third_party/icu/icu4c/packaging/rpm/
Dicu.spec137 /usr/share/icu/%{version}/icudt34l/*.spp
/third_party/icu/docs/userguide/strings/
Dstringprep.md180 produces a binary profile file with the extension “spp”.
218 InputStream nfscsiFile = TestUtil.getDataStream("nfscsi.spp");
/third_party/ffmpeg/libavfilter/
Davf_showspectrum.c689 float spp = samples / (float)sz; in draw_legend() local
770 float seconds = x * spp / inlink->sample_rate; in draw_legend()
828 float seconds = y * spp / inlink->sample_rate; in draw_legend()
/third_party/ffmpeg/tests/fate/
Dfilter-video.mak581 FATE_FILTER_VSYNTH-$(CONFIG_SPP_FILTER) += fate-filter-spp
582 fate-filter-spp: fate-vsynth1-mpeg4-qprd
583spp: CMD = framecrc -flags bitexact -export_side_data venc_params -idct simple -i $(TARGET_PATH)/t…
/third_party/python/Lib/test/
Dmime.types189 application/scvp-vp-response spp
824 # spp: application/scvp-vp-response
/third_party/icu/docs/userguide/
Dicudata.md913 * Binary format: .spp:
922 * Binary format: .spp:
/third_party/ffmpeg/
DChangelog808 - 10bit spp filter
1059 - spp filter ported from libmpcodecs
/third_party/ffmpeg/doc/
Dfilters.texi12514 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
16438 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
16439 similar to spp = 6 with 7 point DCT, where only the center sample is
18770 @anchor{spp}
18771 @section spp
20406 The way this differs from the behavior of spp is that uspp actually encodes &
20407 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8