代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/164931/5485701
c parse_destid.c
/*
* OpenPBS (Portable Batch System) v2.3 Software License
*
* Copyright (c) 1999-2000 Veridian Information Solutions, Inc.
* All rights reserved.
*
* ---------------------------------------
www.eeworm.com/read/164931/5485705
c parse_stage.c
/*
* OpenPBS (Portable Batch System) v2.3 Software License
*
* Copyright (c) 1999-2000 Veridian Information Solutions, Inc.
* All rights reserved.
*
* ---------------------------------------
www.eeworm.com/read/162614/5517781
c parse5.c
/* PR c++/590 */
/* { dg-do compile } */
#include
#include
using namespace std;
enum ExternalEnum { EXTERNAL_VALUE = 2 };
class BadStream : public ostringstream
{
public:
www.eeworm.com/read/162614/5517782
c parse6.c
/* PR c++/3012 */
/* { dg-do compile } */
class A
{
public:
template
void foo() const
{
}
};
template
class B
{
public:
void bar(const A& a) con
www.eeworm.com/read/162614/5517863
c parse2.c
/* PR c++/67 */
/* { dg-do compile } */
template struct foo {
static const int bar [3];
};
// Used to fail if 2+1 rather than 3.
template const int foo::bar [2+1] = { 0, 0,
www.eeworm.com/read/162614/5517864
c parse3.c
/* PR c++/80 */
/* { dg-do compile } */
/* Used to get:
bug.C:7: semicolon missing after declaration of `numbers'
*/
enum numbers { zero, one, two, three } __attribute__ ((packed)) ;
www.eeworm.com/read/162614/5517877
c parse7.c
/* PR c++/3650 */
/* { dg-do compile } */
class class1 {
public:
explicit class1(double a) { data = a; }
double data;
};
class class2 {
public:
class2(class1 a, float t) { }
class2(float t
www.eeworm.com/read/162614/5517911
c parse1.c
/* PR c++/50 */
/* { dg-do compile } */
namespace A {typedef int Z;}
int main(void)
{
A::Z* z;
z->A::Z::~Z();
}
www.eeworm.com/read/162614/5518016
c parse4.c
/* PR c++/88 */
/* { dg-do compile } */
class Hvec
{
public:
Hvec(double x, double y, double z);
~Hvec();
};
class Camera1
{
public:
Camera1(const Hvec &basepos=Hvec(0.0,0.0,0.0));
~Camera1
www.eeworm.com/read/162614/5519858
c parse2.c
// { dg-do assemble }
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 24 Nov 2000
// Bug 531: We ICEd trying to give a parse error.