代码搜索:Resolution
找到约 5,618 项符合「Resolution」的源代码
代码结果 5,618
www.eeworm.com/read/205824/5016276
c catalog.c
/**
* catalog.c: set of generic Catalog related routines
*
* Reference: SGML Open Technical Resolution TR9401:1997.
* http://www.jclark.com/sp/catalog.htm
*
* XML
www.eeworm.com/read/190666/5174339
c koenig3.c
//Check association of member pointer in overload resolution.
struct A {
int m_val;
friend int operator ->* (A & other, int A::*pm)
{ return 31; }
};
int A::*pi = & A::m_val;
int
main(void)
{
A
www.eeworm.com/read/190666/5175411
c 900404_03.c
// g++ 1.37.1 bug 900404_03
// g++ fails to be able to properly flag errors for even simple cases of
// ambiguous overload resolution (such as the one shown below).
// Cfront 2.0 passes this test.
www.eeworm.com/read/190666/5175946
c eb70.c
// conversion ops should be treated as coming from the most derived class
// for overload resolution. See [over.match.funcs].
// Build don't link:
class X {
public:
operator bool() const;
};
clas
www.eeworm.com/read/162614/5522179
c template36.c
// { dg-do run }
// Testcase for implicit 'typename' and resolution of 'typename's in the
// current scope.
class base1 {
public:
int bar() const
{ return 1; }
};
class base2 {
public:
www.eeworm.com/read/343231/3223559
cpp iocpclient.cpp
//
// Sample: I/O Completion Port IPv4/IPv6 Client
//
// Files:
// iocpclient.cpp - this file
// resolve.cpp - Common name resolution routines
// resolve.h - Head
www.eeworm.com/read/343231/3223563
cpp iocpserver.cpp
//
// Sample: I/O Completion Port IPv4/IPv6 Server
//
// Files:
// iocpserver.cpp - this file
// resolve.cpp - Common name resolution routines
// resolve.h - Head
www.eeworm.com/read/343231/3223738
cpp iocpserver.cpp
//
// Sample: I/O Completion Port IPv4/IPv6 Server
//
// Files:
// iocpserver.cpp - this file
// resolve.cpp - Common name resolution routines
// resolve.h - Head
www.eeworm.com/read/340665/3274995
c koenig3.c
//Check association of member pointer in overload resolution.
struct A {
int m_val;
friend int operator ->* (A & other, int A::*pm)
{ return 31; }
};
int A::*pi = & A::m_val;
int
main(void)
{
A
www.eeworm.com/read/340665/3276065
c 900404_03.c
// g++ 1.37.1 bug 900404_03
// g++ fails to be able to properly flag errors for even simple cases of
// ambiguous overload resolution (such as the one shown below).
// Cfront 2.0 passes this test.