代码搜索:TQ
找到约 2,276 项符合「TQ」的源代码
代码结果 2,276
www.eeworm.com/read/229812/4737841
cpp tq13.cpp
#include "dump.h"
int xx;
struct A {
operator int ();
operator int () const;
operator int () volatile;
operator int () const volatile;
};
A::operator int () { GOOD; return __LI
www.eeworm.com/read/229812/4737850
cpp tq03.cpp
#include "dump.h"
int xx;
struct A {
A( void );
void operator = ( A const & );
void operator = ( A const & ) const;
void operator = ( A const & ) volatile;
void operator = (
www.eeworm.com/read/229812/4737854
cpp tq01.cpp
#include "dump.h"
struct A {
operator int ();
operator int () const;
operator int () volatile;
operator int () const volatile;
};
A::operator int () { GOOD; return __LINE__; };
www.eeworm.com/read/229812/4737866
cpp tq05.cpp
#include "dump.h"
// encapsulate distinction between const,volatile member functions
int xx;
struct A {
void bar( void );
void bar( void ) const;
void bar( void ) volatile;
void
www.eeworm.com/read/229812/4737870
cpp tq09.cpp
#include "dump.h"
// does not generate all member pointer thunks required
// seems to ignore const / volatile member function distinction
// GRB
struct A {
void foo( void );
void foo( vo
www.eeworm.com/read/229812/4737880
cpp tq06.cpp
#include "dump.h"
int xx;
struct A {
void foo( int );
void foo( int ) const;
void foo( int ) volatile;
void foo( int ) const volatile;
};
void A::foo( int ) { GOOD; xx = __LINE
www.eeworm.com/read/229812/4737909
cpp tq08.cpp
#include "dump.h"
int xx;
struct A {
void foo( int );
void foo( int ) const;
void foo( int ) volatile;
void foo( int ) const volatile;
void bar( int, auto void (A::*)( int )