HomeSort by: relevance | last modified time | path
    Searched refs:IsType (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalSymbolDumper.h 49 std::string typeOrIdIndex(codeview::TypeIndex TI, bool IsType) const;
MinimalSymbolDumper.cpp 378 bool IsType) const {
381 auto &Container = IsType ? Types : Ids;
830 bool IsType = true;
835 IsType = false;
841 typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart,
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ASTWriter.h 176 DeclOrType(Decl *D) : Stored(D), IsType(false) {}
177 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {}
179 bool isType() const { return IsType; }
180 bool isDecl() const { return !IsType; }
183 assert(isType() && "Not a type!");
194 bool IsType;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
ParsedAttr.cpp 190 bool ParsedAttr::isTypeAttr() const { return getInfo().IsType; }
SemaCodeComplete.cpp 372 bool IsType(const NamedDecl *ND) const;
1516 bool ResultBuilder::IsType(const NamedDecl *ND) const {
6227 &ResultBuilder::IsType);
SemaDecl.cpp 87 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
88 if (!IsType)
SemaExpr.cpp 4531 /// Note that the ArgRange is invalid if isType is false.
4534 UnaryExprOrTypeTrait ExprKind, bool IsType,
4539 if (IsType) {
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ParsedAttr.h 57 unsigned IsType : 1;
74 IsTargetSpecific(0), IsType(0), IsStmt(0), IsKnownToGCC(0),
Sema.h 5237 bool IsType, void *TyOrEx,
6077 SourceLocation LParenLoc, bool isType,
6092 SourceLocation LParenLoc, bool isType,
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WindowsResource.cpp 214 raw_string_ostream &OS, bool IsType, bool IsID) {
220 } else if (IsType)
238 printStringOrID(Context[0], OS, /* IsType */ true, /* IsID */ true);
243 printStringOrID(Context[1], OS, /* IsType */ false, /* IsID */ true);
248 printStringOrID(Context[2], OS, /* IsType */ false, /* IsID */ false);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 2499 UnaryExprOrTypeTraitExprBits.IsType = true;
2522 bool isArgumentType() const { return UnaryExprOrTypeTraitExprBits.IsType; }
2540 UnaryExprOrTypeTraitExprBits.IsType = false;
2544 UnaryExprOrTypeTraitExprBits.IsType = true;
Stmt.h 445 unsigned IsType : 1; // true if operand is a type, false if an expression.
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 1566 UnaryExprOrTypeTraitExprBits.IsType = false;

Completed in 69 milliseconds