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

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 32 ASTContext &Ctx = getState()->getStateManager().getContext();
39 ResultTy = Ctx.getLValueReferenceType(ResultTy);
42 ResultTy = Ctx.getRValueReferenceType(ResultTy);
214 ASTContext &Ctx = getState()->getStateManager().getContext();
216 E->printPretty(Out, 0, Ctx.getPrintingPolicy());
223 D->print(Out, Ctx.getPrintingPolicy());
491 ASTContext &Ctx = SVB.getContext();
493 QualType Ty = Ctx.getPointerType(Ctx.getRecordType(Class));
    [all...]
RegionStore.cpp 650 ASTContext &Ctx;
681 : RM(rm), Ctx(StateMgr.getContext()),
    [all...]
  /external/clang/include/clang/AST/
Expr.h 235 ASTContext &Ctx) const;
268 LValueClassification ClassifyLValue(ASTContext &Ctx) const;
296 isModifiableLvalueResult isModifiableLvalue(ASTContext &Ctx,
374 Classification Classify(ASTContext &Ctx) const {
375 return ClassifyImpl(Ctx, 0);
386 Classification ClassifyModifiable(ASTContext &Ctx, SourceLocation &Loc) const{
387 return ClassifyImpl(Ctx, &Loc);
425 Classification ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const;
485 bool isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
488 bool isIntegerConstantExpr(ASTContext &Ctx, SourceLocation *Loc = 0) const
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_vtbl.c 56 struct i915_context *i915 = i915_context(&intel->ctx);
71 struct i915_context *i915 = i915_context(&intel->ctx);
79 if (intel->ctx.Polygon.StippleFlag && intel->hw_stipple)
105 struct i915_context *i915 = i915_context(&intel->ctx);
106 int lis2 = i915->state.Ctx[I915_CTXREG_LIS2];
107 int lis4 = i915->state.Ctx[I915_CTXREG_LIS4];
258 sz += sizeof(state->Ctx);
292 struct i915_context *i915 = i915_context(&intel->ctx);
297 GET_CURRENT_CONTEXT(ctx);
314 _mesa_error(ctx, GL_OUT_OF_MEMORY, "i915 emit state")
581 struct gl_context *ctx = &intel->ctx; local
717 struct gl_context *ctx = &intel->ctx; local
861 struct gl_context *ctx = &intel->ctx; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 102 ASTContext &Ctx) {
111 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx));
MallocChecker.cpp 465 void MallocChecker::initIdentifierInfo(ASTContext &Ctx) const {
468 II_malloc = &Ctx.Idents.get("malloc");
469 II_free = &Ctx.Idents.get("free");
470 II_realloc = &Ctx.Idents.get("realloc");
471 II_reallocf = &Ctx.Idents.get("reallocf");
472 II_calloc = &Ctx.Idents.get("calloc");
473 II_valloc = &Ctx.Idents.get("valloc");
474 II_strdup = &Ctx.Idents.get("strdup");
475 II_strndup = &Ctx.Idents.get("strndup");
    [all...]
ObjCSelfInitChecker.cpp 401 ASTContext &Ctx = MD->getASTContext();
402 IdentifierInfo* NSObjectII = &Ctx.Idents.get("NSObject");
  /external/llvm/include/llvm/Support/
SourceMgr.h 82 /// PrintMessage is called. Ctx is passed into the handler when it is invoked.
83 void setDiagHandler(DiagHandlerTy DH, void *Ctx = 0) {
85 DiagContext = Ctx;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.cpp 128 MCContext &Ctx, MCAsmBackend &MAB,
135 return createMipsELFStreamer(Ctx, MAB, _OS, _Emitter, RelaxAll, NoExecStack);
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCTargetDesc.cpp 159 MCContext &Ctx,
165 return createELFStreamer(Ctx, MAB, OS, Emitter, RelaxAll, NoExecStack);
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_vtbl.c 56 struct i915_context *i915 = i915_context(&intel->ctx);
71 struct i915_context *i915 = i915_context(&intel->ctx);
79 if (intel->ctx.Polygon.StippleFlag && intel->hw_stipple)
105 struct i915_context *i915 = i915_context(&intel->ctx);
106 int lis2 = i915->state.Ctx[I915_CTXREG_LIS2];
107 int lis4 = i915->state.Ctx[I915_CTXREG_LIS4];
258 sz += sizeof(state->Ctx);
292 struct i915_context *i915 = i915_context(&intel->ctx);
297 GET_CURRENT_CONTEXT(ctx);
314 _mesa_error(ctx, GL_OUT_OF_MEMORY, "i915 emit state")
581 struct gl_context *ctx = &intel->ctx; local
717 struct gl_context *ctx = &intel->ctx; local
861 struct gl_context *ctx = &intel->ctx; local
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 27 void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) {
32 List = new (Ctx) void*[Elts];
38 const SourceLocation *Locs, ASTContext &Ctx) {
42 Locations = new (Ctx) SourceLocation[Elts];
44 set(InList, Elts, Ctx);
183 ObjCPropertyDecl::getDefaultSynthIvarName(ASTContext &Ctx) const {
189 return &Ctx.Idents.get(ivarName.str());
632 ASTContext &Ctx = getASTContext();
635 Redecl = const_cast<ObjCMethodDecl*>(Ctx.getObjCMethodRedeclaration(this));
643 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 485 ASTContext &Ctx;
488 SymbolManager(ASTContext &ctx, BasicValueFactory &bv,
491 BPAlloc(bpalloc), BV(bv), Ctx(ctx) {}
555 ASTContext &getContext() { return Ctx; }
590 SymbolReaper(const StackFrameContext *Ctx, const Stmt *s, SymbolManager& symmgr,
592 : LCtx(Ctx), Loc(s), SymMgr(symmgr),
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 140 ASTContext *Ctx;
174 Ctx(0), PP(pp), OutDir(outdir), Opts(opts), Plugins(plugins) {
267 Ctx = &Context;
270 Mgr.reset(new AnalysisManager(*Ctx,
561 SourceManager &SM = Ctx->getSourceManager();
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 913 const DeclContext *Ctx = R.Declaration->getDeclContext();
914 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
916 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/clang/tools/libclang/
IndexingContext.h 282 ASTContext *Ctx;
343 : Ctx(0), ClientData(clientData), CB(indexCallbacks),
347 ASTContext &getASTContext() const { return *Ctx; }
349 void setASTContext(ASTContext &ctx);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
R600MCCodeEmitter.cpp 44 MCContext &Ctx;
49 MCContext &ctx)
50 : MCII(mcii), STI(sti), Ctx(ctx) { }
146 MCContext &Ctx) {
147 return new R600MCCodeEmitter(MCII, STI, Ctx);
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 95 CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext &VMContext,
CodeGenTBAA.cpp 32 CodeGenTBAA::CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext& VMContext,
35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 386 virtual const MCSection *getNonexecutableStackSection(MCContext &Ctx) const{
  /external/llvm/include/llvm/Target/
TargetMachine.h 277 /// code is not supported. It fills the MCContext Ctx pointer which can be
331 /// code is not supported. It fills the MCContext Ctx pointer which can be
335 MCContext *&Ctx,
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
R600MCCodeEmitter.cpp 44 MCContext &Ctx;
49 MCContext &ctx)
50 : MCII(mcii), STI(sti), Ctx(ctx) { }
146 MCContext &Ctx) {
147 return new R600MCCodeEmitter(MCII, STI, Ctx);
  /external/clang/include/clang/Sema/
Template.h 154 DeducedTemplateArgument(ASTContext &Ctx,
158 : TemplateArgument(Ctx, Value, ValueType),
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 56 : ExecutionEngine(m), TM(tm), Ctx(0), MemMgr(MM), Dyld(MM),
97 if (TM->addPassesToEmitMC(PM, Ctx, CompiledObject->getOStream(), false)) {

Completed in 2384 milliseconds

1 2 3 4 5 6 7 891011>>