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

<<11121314

  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundCheckerV2.cpp 222 static bool IsCompleteType(ASTContext &Ctx, QualType Ty) {
CheckSecuritySyntaxOnly.cpp 28 static bool isArc4RandomAvailable(const ASTContext &Ctx) {
29 const llvm::Triple &T = Ctx.getTargetInfo().getTriple();
  /external/llvm/include/llvm/MC/
MCObjectFileInfo.h 190 MCContext &ctx);
347 MCContext *Ctx;
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 56 : Fn(F), Target(TM), Ctx(mmi.getContext()), MMI(mmi), GMI(gmi) {
439 MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx,
450 return Ctx.GetOrCreateSymbol(Name.str());
457 return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
    [all...]
  /external/llvm/lib/IR/
Type.cpp 507 LLVMContext &Ctx = type->getContext();
515 return llvm::StructType::get(Ctx, StructFields);
548 LLVMContext &Ctx = type->getContext();
556 return llvm::StructType::create(Ctx, StructFields, Name);
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 763 MCContext &Ctx = getContext();
778 MCSymbol *Sym = Ctx.CreateTempSymbol();
781 Ctx);
782 Expr = Value == 0 ? Base : MCBinaryExpr::CreateAdd(Base, Expr, Ctx);
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 309 OwningPtr<MCContext> Ctx;
313 Ctx.reset(new MCContext(AsmInfo.get(), MRI.get(), MOFI.get()));
315 TheTarget->createMCRelocationInfo(TripleName, *Ctx.get()));
318 MCObjectSymbolizer::createObjectSymbolizer(*Ctx.get(), RelInfo, Obj));
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.h 162 struct gl_context *ctx; member in struct:i915_fragment_program
219 GLuint Ctx[I915_CTX_SETUP_SIZE];
343 extern void i915_update_stencil(struct gl_context * ctx);
344 extern void i915_update_provoking_vertex(struct gl_context *ctx);
345 extern void i915_update_sprite_point_enable(struct gl_context *ctx);
365 i915_context(struct gl_context * ctx)
367 return (struct i915_context *) ctx;
372 #define I915_CONTEXT(ctx) i915_context(ctx)
i915_fragprog.c 170 p->ctx->FragmentProgram.Parameters[source->
1339 struct gl_context *ctx = &i915->intel.ctx; local
    [all...]
  /frameworks/compile/slang/
slang_rs_context.h 106 clang::ASTContext &Ctx,
  /external/clang/lib/AST/
Type.cpp 66 bool QualType::isConstant(QualType T, ASTContext &Ctx) {
70 if (const ArrayType *AT = Ctx.getAsArrayType(T))
71 return AT->getElementType().isConstant(Ctx);
622 /// \param Ctx The context in which this type occurs.
625 bool Type::isIntegralType(ASTContext &Ctx) const {
630 if (!Ctx.getLangOpts().CPlusPlus)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_fragprog.c 170 p->ctx->FragmentProgram.Parameters[source->
1339 struct gl_context *ctx = &i915->intel.ctx; local
    [all...]
  /external/clang/lib/Sema/
Sema.cpp     [all...]
SemaTemplate.cpp     [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 197 void IndexingContext::setASTContext(ASTContext &ctx) {
198 Ctx = &ctx;
199 cxtu::getASTUnit(CXTU)->setASTContext(&ctx);
300 addContainerInMap(Ctx->getTranslationUnitDecl(), idxCont);
714 SourceManager &SM = Ctx->getSourceManager();
792 SourceManager &SM = Ctx->getSourceManager();
890 SourceManager &SM = Ctx->getSourceManager();
    [all...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 298 AnalysisDeclContext *ctx,
302 ID.AddPointer(ctx);
325 LocationContextManager::getLocationContext(AnalysisDeclContext *ctx,
329 LOC::Profile(ID, ctx, parent, d);
335 L = new LOC(ctx, parent, d);
342 LocationContextManager::getStackFrame(AnalysisDeclContext *ctx,
347 StackFrameContext::Profile(ID, ctx, parent, s, blk, idx);
352 L = new StackFrameContext(ctx, parent, s, blk, idx);
359 LocationContextManager::getScope(AnalysisDeclContext *ctx,
362 return getLocationContext<ScopeContext, Stmt>(ctx, parent, s)
    [all...]
FormatString.cpp 447 analyze_format_string::OptionalAmount::getArgType(ASTContext &Ctx) const {
448 return Ctx.IntTy;
LiveVariables.cpp 35 DataflowWorklist(const CFG &cfg, AnalysisDeclContext &Ctx)
37 POV(Ctx.getAnalysis<PostOrderCFGView>()) {}
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 95 ASTContext &Ctx = SVB.getContext();
97 while (const ArrayType *AT = Ctx.getAsArrayType(Ty)) {
SymbolManager.cpp 317 ASTContext &Ctx = R->getMemRegionManager()->getContext();
318 return Ctx.getSizeType();
  /external/llvm/lib/MC/
MCStreamer.cpp 24 MCStreamer::MCStreamer(StreamerKind Kind, MCContext &Ctx)
25 : Kind(Kind), Context(Ctx), EmitEHFrame(true), EmitDebugFrame(false),
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 516 MCContext &Ctx) const;
524 unsigned JTI, MCContext &Ctx) const;
    [all...]
  /external/clang/include/clang/AST/
DeclarationName.h 340 const ASTContext &Ctx;
  /external/clang/include/clang/Sema/
Lookup.h 684 /// \param Ctx the original context from which the lookup started.
688 virtual void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp     [all...]

Completed in 734 milliseconds

<<11121314