代码搜索:partial
找到约 10,000 项符合「partial」的源代码
代码结果 10,000
www.eeworm.com/read/168845/5433716
cpp partial_workaround.cpp
// Boost.Range library
//
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE
www.eeworm.com/read/168845/5436189
cpp partial_specializations.cpp
// Boost enable_if library
// Copyright 2003
www.eeworm.com/read/162614/5518935
c partial3.c
// { dg-do compile }
// Origin: John Maddock
// PR c++/13997: Error while matching partial specialization of array type
template
struct is_array;
tem
www.eeworm.com/read/162614/5518995
c partial1.c
// { dg-do run }
// Origin: Jo Totland
// PR c++/6620
// Partial specialization involving expression of non-type template
// parameter causes ICE.
extern "C" void abort();
t
www.eeworm.com/read/162614/5519154
c partial-specialization.c
// Contributed by Gabriel Dos Reis
// Origin: philippeb@videotron.ca
// { dg-do compile }
struct B
{
int i;
};
template
struct A;
template
www.eeworm.com/read/162614/5519232
c partial4.c
// PR c++/25342
template < typename eval >
struct tpl_seq_search {
typedef typename eval::enum_type Enum;
template < Enum first, Enum last >
struct range {
};
template < Enum val >
struc
www.eeworm.com/read/162614/5519325
c partial2.c
// { dg-do compile }
// Origin: lorgon1@yahoo.com
// PR c++/11154: Multi-level template argument in partial ordering of
// class template
template struct Outer {
template
www.eeworm.com/read/162614/5520176
c partial3.c
// { dg-do run }
// Test that partial ordering works between conversion ops from different
// classes.
// From Jason Merrill
struct A {
template operator T*() { return
www.eeworm.com/read/162614/5520272
c partial1.c
// { dg-do run }
template
class foo {
public:
enum bar { z = 0 };
};
template
class foo {
public:
enum bar { z = 1 };
};
template
class foo
www.eeworm.com/read/162614/5520547
c partial5.c
// { dg-do run }
// Test that partial ordering ignores defaulted parms and 'this'.
struct A {
template int f(T) { return 1; }
template int f(T*, int=0) { return 0; }
template