HomeSort by relevance Sort by last modified time
    Searched refs:Ctx (Results 276 - 300 of 343) sorted by null

<<11121314

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 513 ASTContext &ctx = getContext(); local
515 return ctx.getObjCObjectPointerType(T);
516 return ctx.getPointerType(getValueType());
557 const ASTContext &Ctx = getContext();
559 return Ctx.getPointerType(D->getType());
    [all...]
ExprEngine.h 196 unsigned StmtIdx, NodeBuilderContext *Ctx);
  /external/clang/lib/AST/
ASTDumper.cpp     [all...]
CommentSema.cpp 675 const DeclContext *Ctx = FD->getDeclContext();
676 if ((!Ctx || !Ctx->isRecord()) &&
    [all...]
ASTImporter.cpp     [all...]
Decl.cpp     [all...]
  /external/llvm/include/llvm/IR/
Constants.h 394 static Constant *getAnon(LLVMContext &Ctx,
396 return get(getTypeForElements(Ctx, V, Packed), V);
404 static StructType *getTypeForElements(LLVMContext &Ctx,
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 217 LLVMContext &Ctx = Ty1->getContext();
218 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ctx)) return true;
219 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ctx)) return true;
  /external/clang/include/clang/AST/
DeclObjC.h 49 void set(void *const* InList, unsigned Elts, ASTContext &Ctx);
60 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) {
61 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx);
89 const SourceLocation *Locs, ASTContext &Ctx);
    [all...]
Type.h 670 bool isConstant(ASTContext& Ctx) const {
671 return QualType::isConstant(*this, Ctx);
    [all...]
Decl.h 75 ASTContext &Ctx;
81 explicit TranslationUnitDecl(ASTContext &ctx)
84 Ctx(ctx), AnonymousNamespace(0) {}
86 ASTContext &getASTContext() const { return Ctx; }
    [all...]
TemplateBase.h 129 /// store the value is allocated with Ctx.
130 TemplateArgument(ASTContext &Ctx, const llvm::APSInt &Value, QualType Type);
DeclBase.h 902 void setAttrsImpl(const AttrVec& Attrs, ASTContext &Ctx);
904 ASTContext &Ctx);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGStmt.cpp     [all...]
ItaniumCXXABI.cpp     [all...]
MicrosoftCXXABI.cpp 582 ASTContext &Ctx = getContext();
583 return std::max(Ctx.getTypeSizeInChars(Ctx.getSizeType()),
584 Ctx.getTypeAlignInChars(type));
    [all...]
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 54 MCContext &Ctx = MF->getContext();
55 const char *Prefix = Ctx.getAsmInfo()->getPrivateGlobalPrefix();
56 CachedMCSymbol = Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" +
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 784 CodeCompletionString *CreateCodeCompletionString(ASTContext &Ctx,
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]
SemaLambda.cpp 381 ASTContext &Ctx = getASTContext();
386 CSI.ReturnType = Ctx.VoidTy;
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 257 ASTContext &Ctx = getContext();
260 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType);
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 287 static void DumpCXCommentInternal(struct CommentASTDumpingContext *Ctx,
293 Ctx->IndentLevel++;
294 for (i = 0, e = Ctx->IndentLevel; i != e; ++i)
455 DumpCXCommentInternal(Ctx, clang_Comment_getChild(Comment, i));
459 Ctx->IndentLevel--;
463 struct CommentASTDumpingContext Ctx;
464 Ctx.IndentLevel = 1;
466 DumpCXCommentInternal(&Ctx, Comment);
    [all...]

Completed in 1687 milliseconds

<<11121314