代码搜索结果

找到约 10,000 项符合 C 的代码

integralsequencewrapper.rst

.. Sequences/Concepts//Integral Sequence Wrapper |90 Integral Sequence Wrapper ========================= Description ----------- An |Integral Sequence Wrapper| is a class template that prov

sparcv8plus.s

.ident "sparcv8plus.s, Version 1.4" .ident "SPARC v9 ISA artwork by Andy Polyakov " /* * ==================================================================== * Written by Andy

sparcv8.s

.ident "sparcv8.s, Version 1.4" .ident "SPARC v8 ISA artwork by Andy Polyakov " /* * ==================================================================== * Written by Andy Pol

t15.use

-- $ProjectHeader: use 2-3-0-release.1 Mon, 12 Sep 2005 20:18:33 +0200 green $ model t15 -- pre-/postconditions class A operations op1(p1 : Integer) : String post: 'AAA' 'BBB' end class B

hardware.inc

//======================================================================================== // Progarm: The file be included by modules // Arranged by: Andy Hsu // Date: 2000/06/23: first version

spce.inc

//======================================================================================== // Program: Standard function definition V1.0 // Arranged by: Arthur Shieh // Platform: SPCE500A/060A/061

dtor1.c

// { dg-do run } extern "C" void abort (); int d = 5; struct B { int x; B (int i) : x (i) { } ~B () { if (d-- != x) abort (); } }; struct C1 : public B { C1 (int i) : B (i) {} }; struct C

covariant11.c

// { dg-do compile } // Contributed by Nathan Sidwell 23 Oct 2003 // Origin: grigory@stl.sarov.ru // PR c++/12700 ICE with covariancy struct c2 { int i; }; struct c1 { v

component1.c

// { dg-do compile } // Copyright (C) 2001, 2002 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 28 Dec 2001 // PR 5123. ICE struct C { template

error4.c

template struct C1 { template struct C2 { class Type { }; }; }; template void foo(typename C1::C2::Type *) { } // { dg-error "template" }