当前位置: 首页>>代码示例>>C++>>正文


C++ TypeExpr类代码示例

本文整理汇总了C++中TypeExpr的典型用法代码示例。如果您正苦于以下问题:C++ TypeExpr类的具体用法?C++ TypeExpr怎么用?C++ TypeExpr使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了TypeExpr类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: assert

C2::Decl* C2Sema::ActOnAliasType(const char* name, SourceLocation loc, Expr* type, bool is_public) {
    assert(name);
    assert(type);
#ifdef SEMA_DEBUG
    std::cerr << COL_SEMA"SEMA: alias type def " << name << " at ";
    loc.dump(SourceMgr);
    std::cerr << ANSI_NORMAL"\n";
#endif
    if (ast.isInterface()) {
        if (is_public) Diag(loc, diag::err_public_in_interface);
        is_public = true;
    }
    TypeExpr* typeExpr = cast<TypeExpr>(type);
    if (typeExpr->hasLocalQualifier()) {
        Diag(loc, diag::err_invalid_local_typedef);
    }
    AliasTypeDecl* T = new AliasTypeDecl(name, loc, typeExpr->getType(), is_public);
    QualType A = typeContext.getAliasType(T, typeExpr->getType());
    T->setType(A);
    ast.addType(T);
    addSymbol(T);
    delete typeExpr;
    return T;
}
开发者ID:unixaaa,项目名称:c2compiler,代码行数:24,代码来源:C2Sema.cpp

示例2: isConst

 static inline bool isConst(const TypeExpr& te) {
   return te.resolved()
          ? te.resolved()->isConst()
          : te.spec()->isConst();
 }
开发者ID:alliedmodders,项目名称:sourcepawn,代码行数:5,代码来源:docparse.cpp

示例3: isByRef

 static inline bool isByRef(const TypeExpr& te) {
   return te.resolved()
          ? te.resolved()->isReference()
          : te.spec()->isByRef();
 }
开发者ID:alliedmodders,项目名称:sourcepawn,代码行数:5,代码来源:docparse.cpp


注:本文中的TypeExpr类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。