Home
last modified time | relevance | path

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

123456

/dports/graphics/gauche-gl/Gauche-gl-0.6/doc/
H A DMakefile.in32 if test -f gauche-gl-refe.info -o -f gauche-gl-refe.info.gz; \
33 then rm -rf gauche-gl-refe.*; \
45 dvi : gauche-gl-refe.dvi
47 pdf : gauche-gl-refe.pdf
51 gauche-gl-refe.html : gauche-gl-refe.texi
57 gauche-gl-refe.dvi : gauche-gl-refe.texi
58 texi2dvi gauche-gl-refe.texi
60 gauche-gl-refe.pdf : gauche-gl-refe.texi
61 texi2pdf gauche-gl-refe.texi
66 gauche-gl-refe.info.gz : gauche-gl-refe.texi
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Services/System.Web.Services.Discovery/
H A DContractReference.cs154 DiscoveryReference refe; in ResolveInternal()
158 refe = new ContractReference (); in ResolveInternal()
159 refe.ClientProtocol = prot; in ResolveInternal()
160 refe.Url = url; in ResolveInternal()
167 refe = new SchemaReference (); in ResolveInternal()
168 refe.ClientProtocol = prot; in ResolveInternal()
169 refe.Url = url; in ResolveInternal()
174 prot.References.Add (refe); in ResolveInternal()
191 refe.ClientProtocol = prot; in ResolveInternal()
192 refe.Url = url; in ResolveInternal()
[all …]
H A DContractSearchPattern.cs61 ContractReference refe = new ContractReference (); in GetDiscoveryReference()
62 refe.Url = filename; in GetDiscoveryReference()
63 refe.Ref = filename; in GetDiscoveryReference()
64 refe.DocRef = filename; in GetDiscoveryReference()
65 return refe; in GetDiscoveryReference()
H A DDiscoveryClientProtocol.cs144 DiscoveryReference refe = null; in DiscoverAny()
150 refe = new DiscoveryDocumentReference (); in DiscoverAny()
159 refe = new ContractReference (); in DiscoverAny()
160 doc.References.Add (refe); in DiscoverAny()
161 refe.Url = url; in DiscoverAny()
170 refe = new SchemaReference (); in DiscoverAny()
171 refe.Url = url; in DiscoverAny()
173 doc.References.Add (refe); in DiscoverAny()
176 refe.ClientProtocol = this; in DiscoverAny()
177 refe.Url = url; in DiscoverAny()
[all …]
H A DDiscoveryDocumentLinksPattern.cs61 DiscoveryDocumentReference refe = new DiscoveryDocumentReference (); in GetDiscoveryReference()
62 refe.Url = filename; in GetDiscoveryReference()
63 refe.Ref = filename; in GetDiscoveryReference()
64 return refe; in GetDiscoveryReference()
H A DDiscoveryDocumentSearchPattern.cs61 DiscoveryDocumentReference refe = new DiscoveryDocumentReference (); in GetDiscoveryReference()
62 refe.Url = filename; in GetDiscoveryReference()
63 refe.Ref = filename; in GetDiscoveryReference()
64 return refe; in GetDiscoveryReference()
H A DXmlSchemaSearchPattern.cs61 SchemaReference refe = new SchemaReference (); in GetDiscoveryReference()
62 refe.Url = filename; in GetDiscoveryReference()
63 refe.Ref = filename; in GetDiscoveryReference()
64 return refe; in GetDiscoveryReference()
H A DSchemaReference.cs151 DiscoveryReference refe; in ResolveInternal()
153 refe = new SchemaReference (); in ResolveInternal()
154 refe.ClientProtocol = prot; in ResolveInternal()
155 refe.Url = url; in ResolveInternal()
157 ((SchemaReference)refe).ResolveInternal (prot, schema); in ResolveInternal()
160 prot.References.Add (refe); in ResolveInternal()
/dports/lang/gauche/Gauche-0.9.10/doc/
H A DMakefile.in12 EXTRACTED = gauche-refe.texi gauche-refj.texi \
70 if test -f gauche-refe.info.gz -o -f gauche-refj.info.gz; then \
79 if test -f gauche-refe.info -o -f gauche-refe.info.gz; \
80 then rm -f gauche-refe.*; \
112 texi : gauche-refe.texi gauche-refj.texi
113 html : gauche-refe.html gauche-refj.html
114 htmls : gauche-refe/index.html gauche-refj/index.html
115 dvi : gauche-refe.dvi gauche-refj.dvi
116 pdf : gauche-refe.pdf gauche-refj.pdf
117 info : gauche-refe.info.gz gauche-refj.info.gz
[all …]
H A Dgauche-ref.texi9 @setfilename gauche-refe.info
14 * Gauche: (gauche-refe.info). An R7RS Scheme implementation.
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAStreamWriter/include/
H A DCOLLADASWInstanceEffect.h48 TechniqueHint ( const String &refe, const String &platform = "" )
49 : mRefNC ( Utils::checkNCName( refe ) ) in mRefNC() argument
55 TechniqueHint ( const String &refe, const String &platform, const String &profile ) in TechniqueHint() argument
56 : mRefNC ( Utils::checkNCName( refe ) ) in TechniqueHint()
105 void addTechniqueHint ( const String &refe, const String &platform = "" );
108 void addTechniqueHint ( const String &refe, const String &platform, const String &profile );
H A DCOLLADASWParamTemplate.h154 void openParam ( const String& refe, const String& program = "" )
157 this->mSW->appendAttribute ( CSWC::CSW_ATTRIBUTE_REF, refe );
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_gcc/tests/run/
H A Dstatic.rs76 refe: &'static Test, field
90 refe: unsafe { &TEST },
100 libc::printf(b"%ld\n\0" as *const u8 as *const i8, WITH_REF.refe.field); in main()
101 WITH_REF.refe = &TEST2; in main()
103 libc::printf(b"%ld\n\0" as *const u8 as *const i8, WITH_REF.refe.field); in main()
H A Dmut_ref.rs158 let refe = &mut argc; in main() localVariable
159 *refe = *refe + 5; in main()
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAStreamWriter/src/
H A DCOLLADASWInstanceEffect.cpp60 void InstanceEffect::addTechniqueHint( const String &refe, const String &platform /*= "" */ ) in addTechniqueHint() argument
62 TechniqueHint techniqueHint ( refe, platform ); in addTechniqueHint()
67 …void InstanceEffect::addTechniqueHint( const String &refe, const String &platform, const String &p… in addTechniqueHint() argument
69 TechniqueHint techniqueHint ( refe, platform, profile ); in addTechniqueHint()
H A DCOLLADASWParamBase.cpp30 void ParamBase::openParam( const String& refe/*=""*/ ) in openParam() argument
34 if ( !refe.empty() ) in openParam()
35 mSW->appendAttribute( CSWC::CSW_ATTRIBUTE_REF, refe ); in openParam()
/dports/lang/mono/mono-5.10.1.57/mcs/tools/disco/
H A Ddisco.cs46 foreach (DiscoveryReference refe in prot.References.Values) in Main()
48 if (refe is ContractReference) Console.Write ("- WSDL document at "); in Main()
49 else if (refe is DiscoveryDocumentReference) Console.Write ("- DISCO document at "); in Main()
51 Console.WriteLine (refe.Url); in Main()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/stdfx/
H A Digs_radial_blur.cpp255 const RT *refe = ref; in radial_convert_template_() local
262 ++xx, p_in += cc, pout += cc, refe += cc) { in radial_convert_template_()
264 igs::color::ref_value(refe, cc, r_max, ref_mode); in radial_convert_template_()
286 ++xx, p_in += cc, pout += cc, refe += cc) { in radial_convert_template_()
288 igs::color::ref_value(refe, cc, r_max, ref_mode); in radial_convert_template_()
312 ++xx, p_in += cc, pout += cc, refe += cc) { in radial_convert_template_()
679 const RT *refe = ref; in twist_convert_template_() local
686 ++xx, p_in += cc, pout += cc, refe += cc) { in twist_convert_template_()
688 igs::color::ref_value(refe, cc, r_max, ref_mode); in twist_convert_template_()
710 ++xx, p_in += cc, pout += cc, refe += cc) { in twist_convert_template_()
[all …]
H A Digs_rotate_blur.cpp280 const RT *refe = ref; in rotate_convert_template_() local
287 ++xx, p_in += cc, pout += cc, refe += cc) { in rotate_convert_template_()
289 igs::color::ref_value(refe, cc, r_max, ref_mode); in rotate_convert_template_()
311 ++xx, p_in += cc, pout += cc, refe += cc) { in rotate_convert_template_()
313 igs::color::ref_value(refe, cc, r_max, ref_mode); in rotate_convert_template_()
337 ++xx, p_in += cc, pout += cc, refe += cc) { in rotate_convert_template_()
338 const double refv = igs::color::ref_value(refe, cc, r_max, ref_mode); in rotate_convert_template_()
/dports/lang/mono/mono-5.10.1.57/mcs/tools/svcutil/
H A DDriver.cs155 foreach (DiscoveryReference refe in prot.References.Values) in ResolveWithDisco()
157 if (refe is ContractReference) Console.Write ("- WSDL document at "); in ResolveWithDisco()
158 else if (refe is DiscoveryDocumentReference) Console.Write ("- DISCO document at "); in ResolveWithDisco()
160 Console.WriteLine (refe.Url); in ResolveWithDisco()
/dports/math/freefem++/FreeFem-sources-4.6/examples/tutorial/
H A Dglumesh.edp7 Th1=change(Th1,refe=r1);
9 Th2=change(Th2,refe=r2);
/dports/cad/astk-client/astk-2020.0/ASTK_SERV/asrun/common/
H A Dsysutils.py116 refe = local_host
118 refe = local_full_host
119 return host in ("", "localhost", refe)
/dports/cad/astk-serveur/astk-2020.0/ASTK_SERV/asrun/common/
H A Dsysutils.py116 refe = local_host
118 refe = local_full_host
119 return host in ("", "localhost", refe)
/dports/cad/astk-serveur/astk-2020.0/ASTK_CLIENT/lib/
H A Dremote_tools.tcl469 set refe $astk::config(-1,nom_complet)
472 set refe [lindex [split $refe "."] 0]
475 if { ($host == "" || $host == "localhost" || $host == $refe) \
/dports/cad/astk-client/astk-2020.0/ASTK_CLIENT/lib/
H A Dremote_tools.tcl469 set refe $astk::config(-1,nom_complet)
472 set refe [lindex [split $refe "."] 0]
475 if { ($host == "" || $host == "localhost" || $host == $refe) \

123456