HomeSort by relevance Sort by last modified time
    Searched defs:Context (Results 1 - 25 of 216) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/lib/AST/
LambdaMangleContext.cpp 1 //===--- LambdaMangleContext.cpp - Context for mangling lambdas -*- C++ -*-===//
22 ASTContext &Context = CallOperator->getASTContext();
24 QualType Key = Context.getFunctionType(Context.VoidTy,
28 Key = Context.getCanonicalType(Key);
MicrosoftCXXABI.cpp 26 ASTContext &Context;
28 MicrosoftCXXABI(ASTContext &Ctx) : Context(Ctx) { }
33 if (Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86)
44 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
48 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
ItaniumCXXABI.cpp 32 ASTContext &Context;
34 ItaniumCXXABI(ASTContext &Ctx) : Context(Ctx) { }
54 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
56 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
  /external/linux-tools-perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Context.pm 1 package Perf::Trace::Context;
23 XSLoader::load('Perf::Trace::Context', $VERSION);
29 Perf::Trace::Context - Perl extension for accessing functions in perf.
33 use Perf::Trace::Context;
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 26 LLVMContext Context;
30 Module *M = new Module("test", Context);
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
42 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", F);
45 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
46 Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/llvm/tools/llvm-as/
llvm-as.cpp 91 LLVMContext &Context = getGlobalContext();
97 std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename, Err, Context));
  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 37 static Module *ReadModule(LLVMContext &Context, StringRef Name) {
39 Module *M = ParseIRFile(Name, Diag, Context);
74 LLVMContext Context;
77 Module *LModule = ReadModule(Context, LeftFilename);
78 Module *RModule = ReadModule(Context, RightFilename);
82 DifferenceEngine Engine(Context, Consumer);
DifferenceEngine.h 37 /// A RAII object for recording the current context.
38 struct Context {
39 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) {
43 ~Context() {
62 DifferenceEngine(LLVMContext &context, Consumer &consumer)
63 : context(context), consumer(consumer), globalValueOracle(0) {}
87 LLVMContext &context; member in class:llvm::DifferenceEngine
  /external/chromium/webkit/glue/
websocketstreamhandle_impl.cc 23 // WebSocketStreamHandleImpl::Context -----------------------------------------
25 class WebSocketStreamHandleImpl::Context
26 : public base::RefCounted<Context>,
29 explicit Context(WebSocketStreamHandleImpl* handle);
52 friend class base::RefCounted<Context>;
53 ~Context() {
61 // |bridge_| is alive from Connect to DidClose, so Context must be alive
65 DISALLOW_COPY_AND_ASSIGN(Context);
68 WebSocketStreamHandleImpl::Context::Context(WebSocketStreamHandleImpl* handle
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dot.rb 51 class Context
109 tree_template = Context.new( tree_template, :nodes => [], :edges => [] )
154 edge_template = Context.new( edge_template,
165 node_template = Context.new( NODE_TEMPLATE )
  /external/clang/include/clang/AST/
EvaluatedExprVisitor.h 31 ASTContext &Context;
34 explicit EvaluatedExprVisitor(ASTContext &Context) : Context(Context) { }
53 return this->Visit(E->getChosenSubExpr(Context));
65 if (!E->isTypeOperand() && E->Classify(Context).isGLValue())
  /external/clang/lib/Basic/
Builtins.cpp 29 const Builtin::Info &Builtin::Context::GetRecord(unsigned ID) const {
36 Builtin::Context::Context() {
42 void Builtin::Context::InitializeTarget(const TargetInfo &Target) {
50 void Builtin::Context::InitializeBuiltins(IdentifierTable &Table,
67 Builtin::Context::GetBuiltinNames(SmallVectorImpl<const char *> &Names,
80 void Builtin::Context::ForgetBuiltin(unsigned ID, IdentifierTable &Table) {
85 Builtin::Context::isPrintfLike(unsigned ID, unsigned &FormatIdx,
104 Builtin::Context::isScanfLike(unsigned ID, unsigned &FormatIdx,
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 40 ASTContext &Context;
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 56 LLVMContext Context;
59 Module *M = new Module("test", Context);
65 cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context),
66 Type::getInt32Ty(Context),
71 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
97 cast<Function>(M->getOrInsertFunction("foo", Type::getInt32Ty(Context),
101 BB = BasicBlock::Create(Context, "EntryBlock", FooF);
  /external/llvm/include/llvm/
CallGraphSCCPass.h 81 void *Context; // The CGPassManager object that is vending this.
84 CallGraphSCC(void *context) : Context(context) {}
  /external/llvm/include/llvm/Support/
MDBuilder.h 27 LLVMContext &Context;
30 MDBuilder(LLVMContext &context) : Context(context) {}
34 return MDString::get(Context, Str);
48 Value *Op = ConstantFP::get(Type::getFloatTy(Context), Accuracy);
49 return MDNode::get(Context, Op);
65 Type *Ty = IntegerType::get(Context, Lo.getBitWidth());
67 return MDNode::get(Context, Range);
80 MDNode *Dummy = MDNode::getTemporary(Context, ArrayRef<Value*>())
    [all...]
  /external/llvm/include/llvm/Target/
Mangler.h 36 MCContext &Context;
50 Mangler(MCContext &context, const TargetData &td)
51 : Context(context), TD(td), NextAnonGlobalID(1) {}
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.h 47 LLVMContext &Context;
49 BitcodeReaderValueList(LLVMContext &C) : Context(C) {}
97 LLVMContext &Context;
99 BitcodeReaderMDValueList(LLVMContext& C) : Context(C) {}
125 LLVMContext &Context;
184 : Context(C), TheModule(0), Buffer(buffer), BufferOwned(false),
190 : Context(C), TheModule(0), Buffer(0), BufferOwned(false),
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 119 MCContext &Context = Streamer.getContext();
121 MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, Context);
122 const MCExpr *Four = MCConstantExpr::Create(4, Context);
123 return MCBinaryExpr::CreateAdd(Res, Four, Context);
  /external/llvm/tools/bugpoint/
bugpoint.cpp 140 LLVMContext& Context = getGlobalContext();
158 UseValgrind, Context);
  /external/llvm/tools/llvm-link/
llvm-link.cpp 57 LLVMContext& Context) {
69 Result = ParseIRFile(FNStr, Err, Context);
81 LLVMContext &Context = getGlobalContext();
89 InputFilenames[BaseArg], Context));
98 InputFilenames[i], Context));
  /external/llvm/tools/llvm-ranlib/
llvm-ranlib.cpp 51 LLVMContext &Context = getGlobalContext();
79 AutoArchive(Archive::OpenAndLoad(ArchivePath, Context, &err_msg));
  /external/skia/include/gpu/gl/
SkMesaGLContext.h 17 typedef intptr_t Context;
32 Context fOldContext;
44 Context fContext;
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.h 52 LLVMContext &Context;
54 BitcodeReaderValueList(LLVMContext &C) : Context(C) {}
102 LLVMContext &Context;
104 BitcodeReaderMDValueList(LLVMContext& C) : Context(C) {}
130 LLVMContext &Context;
190 : Context(C), TheModule(0), Buffer(buffer), BufferOwned(false),
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.h 52 LLVMContext &Context;
54 BitcodeReaderValueList(LLVMContext &C) : Context(C) {}
102 LLVMContext &Context;
104 BitcodeReaderMDValueList(LLVMContext& C) : Context(C) {}
130 LLVMContext &Context;
184 : Context(C), TheModule(0), Buffer(buffer), BufferOwned(false),

Completed in 1256 milliseconds

1 2 3 4 5 6 7 8 9