代码搜索:using 有哪些应用?
找到约 10,000 项符合「using 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/190666/5174327
c using2.c
// Build don't link:
void f();
namespace A{
using ::f;
}
www.eeworm.com/read/190666/5174334
c using10.c
//Build don't link:
//Based on a report by Helmut Jarausch
template
class foo{};
namespace ABC
{
using ::foo;
}
www.eeworm.com/read/190666/5174336
c using11.c
// Build don't link:
class joey {
public:
typedef int SVec;
};
using joey::SVec; // ERROR - joey is not a namespace
www.eeworm.com/read/190666/5174340
c using14.c
// Build don't link:
// Origin: Mark Mitchell
extern "C" void f ();
namespace N {
extern "C" void f ();
}
using N::f;
void g ()
{
f ();
}
www.eeworm.com/read/190666/5174342
c using12.c
// Build don't link:
// Origin: Brendan Kehoe
namespace foo
{
void x (bool); // ERROR - candidates
void x (char); // ERROR - candidates
void x (int); // ERROR
www.eeworm.com/read/190666/5174356
c using1.c
// Build don't link:
using namespace bb; // ERROR - .*
www.eeworm.com/read/190666/5174359
c using3.c
// Build don't link:
typedef unsigned int atypedef;
struct astruct{};
void afunction();
void aovlfunction();
void aovlfunction(int);
int avariable;
namespace foo {
using ::atypedef;
using ::astr
www.eeworm.com/read/190666/5174373
c using5.c
// Build don't link:
namespace a {
class b {
using std::c; //ERROR - namespace using on class level
};
}
www.eeworm.com/read/190346/5185736
txt using-neon.txt
Guide to neon
=============
Using libneon from applications
-------------------------------
The neon source package is designed to be easily incorporated into
applications:
- autoconf macros are
www.eeworm.com/read/162614/5517358
c using2.c
// { dg-do compile }
// Copyright 2005 Free Software Foundation
// by Alexandre Oliva
// based on https://bugzilla.redhat.com/beta/show_bug.cgi?id=149098
// Per the ISO C++ 90 St