Searched defs:Context (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DContext.pm1 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/clang/lib/AST/
H A DLambdaMangleContext.cpp1 //===--- LambdaMangleContext.cpp - Context for mangling lambdas -*- C++ -*-===//
22 ASTContext &Context = CallOperator->getASTContext(); local
24 QualType Key = Context.getFunctionType(Context.VoidTy,
28 Key = Context.getCanonicalType(Key);
H A DItaniumCXXABI.cpp32 ASTContext &Context; member in class:__anon3069::ItaniumCXXABI
34 ItaniumCXXABI(ASTContext &Ctx) : Context(Ctx) { }
54 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
56 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
H A DMicrosoftCXXABI.cpp26 ASTContext &Context; member in class:__anon3073::MicrosoftCXXABI
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));
/external/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp26 LLVMContext Context; local
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/lib/VMCore/
H A DLeakDetector.cpp27 static void clearGarbage(LLVMContext &Context) { argument
29 Context.pImpl->LLVMObjects.clear();
52 void LeakDetector::checkForGarbageImpl(LLVMContext &Context, argument
54 LLVMContextImpl *pImpl = Context.pImpl;
68 clearGarbage(Context);
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.h38 struct Context { struct in class:llvm::DifferenceEngine
39 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { function in struct:llvm::DifferenceEngine::Context
43 ~Context() {
H A Dllvm-diff.cpp37 static Module *ReadModule(LLVMContext &Context, StringRef Name) { argument
39 Module *M = ParseIRFile(Name, Diag, Context);
74 LLVMContext Context; local
77 Module *LModule = ReadModule(Context, LeftFilename);
78 Module *RModule = ReadModule(Context, RightFilename);
82 DifferenceEngine Engine(Context, Consumer);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddot.rb51 class Context class in class:ANTLR3.DOT
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/lib/CodeGen/
H A DCodeGenTBAA.h40 ASTContext &Context; member in class:clang::CodeGen::CodeGenTBAA
/external/clang/lib/Serialization/
H A DASTCommon.h34 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) { argument
49 if (T == Context.AutoDeductTy)
51 if (T == Context.AutoRRefDeductTy)
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp1 //== CheckerContext.cpp - Context info for path-sensitive checkers-----------=//
45 StringRef Name, ASTContext &Context) {
51 StringRef BName = Context.BuiltinInfo.GetName(BId);
44 isCLibraryFunction(const FunctionDecl *FD, StringRef Name, ASTContext &Context) argument
/external/clang/tools/libclang/
H A DCXSourceLocation.h41 static inline CXSourceLocation translateSourceLocation(ASTContext &Context, argument
43 return translateSourceLocation(Context.getSourceManager(),
44 Context.getLangOpts(),
59 static inline CXSourceRange translateSourceRange(ASTContext &Context, argument
61 return translateSourceRange(Context.getSourceManager(),
62 Context.getLangOpts(),
/external/libnfc-nxp/src/
H A DphLibNfc_target.c69 void *Context,
344 void *Context,
349 phLibNfc_LibContext_t *pLibNfc_Ctxt = (phLibNfc_LibContext_t *)Context;
343 phLibNfc_RemoteDev_Send_Cb( void *Context, NFCSTATUS status ) argument
/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp56 LLVMContext Context; local
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/Support/
H A DIRReader.h37 LLVMContext &Context) {
41 Module *M = getLazyBitcodeModule(Buffer, Context, &ErrMsg);
52 return ParseAssembly(Buffer, 0, Err, Context);
61 LLVMContext &Context) {
69 return getLazyIRModule(File.take(), Err, Context);
78 LLVMContext &Context) {
82 Module *M = ParseBitcodeFile(Buffer, Context, &ErrMsg);
91 return ParseAssembly(Buffer, 0, Err, Context);
99 LLVMContext &Context) {
107 return ParseIR(File.take(), Err, Context);
35 getLazyIRModule(MemoryBuffer *Buffer, SMDiagnostic &Err, LLVMContext &Context) argument
59 getLazyIRFileModule(const std::string &Filename, SMDiagnostic &Err, LLVMContext &Context) argument
76 ParseIR(MemoryBuffer *Buffer, SMDiagnostic &Err, LLVMContext &Context) argument
97 ParseIRFile(const std::string &Filename, SMDiagnostic &Err, LLVMContext &Context) argument
[all...]
H A DTypeBuilder.h53 /// static StructType *get(LLVMContext &Context) {
57 /// TypeBuilder<types::i<32>, xcompile>::get(Context),
58 /// TypeBuilder<types::i<32>*, xcompile>::get(Context),
59 /// TypeBuilder<types::i<8>*[], xcompile>::get(Context),
106 static PointerType *get(LLVMContext &Context) { argument
107 return PointerType::getUnqual(TypeBuilder<T,cross>::get(Context));
117 static ArrayType *get(LLVMContext &Context) { argument
118 return ArrayType::get(TypeBuilder<T, cross>::get(Context), N);
124 static ArrayType *get(LLVMContext &Context) { argument
125 return ArrayType::get(TypeBuilder<T, cross>::get(Context),
249 get(LLVMContext &Context) argument
255 get(LLVMContext &Context) argument
266 get(LLVMContext &Context) argument
278 get(LLVMContext &Context) argument
293 get(LLVMContext &Context) argument
309 get(LLVMContext &Context) argument
324 get(LLVMContext &Context) argument
331 get(LLVMContext &Context) argument
341 get(LLVMContext &Context) argument
353 get(LLVMContext &Context) argument
368 get(LLVMContext &Context) argument
384 get(LLVMContext &Context) argument
[all...]
/external/llvm/include/llvm/Target/
H A DMangler.h36 MCContext &Context; member in class:llvm::Mangler
51 : Context(context), TD(td), NextAnonGlobalID(1) {}
/external/llvm/lib/AsmParser/
H A DParser.cpp28 LLVMContext &Context) {
37 OwningPtr<Module> M2(new Module(F->getBufferIdentifier(), Context));
44 LLVMContext &Context) {
52 return ParseAssembly(File.take(), 0, Err, Context);
56 SMDiagnostic &Err, LLVMContext &Context) {
61 return ParseAssembly(F, M, Err, Context);
25 ParseAssembly(MemoryBuffer *F, Module *M, SMDiagnostic &Err, LLVMContext &Context) argument
43 ParseAssemblyFile(const std::string &Filename, SMDiagnostic &Err, LLVMContext &Context) argument
55 ParseAssemblyString(const char *AsmString, Module *M, SMDiagnostic &Err, LLVMContext &Context) argument
/external/llvm/tools/llvm-as/
H A Dllvm-as.cpp91 LLVMContext &Context = getGlobalContext(); local
97 std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename, Err, Context));
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp57 LLVMContext& Context) {
69 Result = ParseIRFile(FNStr, Err, Context);
81 LLVMContext &Context = getGlobalContext(); local
89 InputFilenames[BaseArg], Context));
98 InputFilenames[i], Context));
55 LoadFile(const char *argv0, const std::string &FN, LLVMContext& Context) argument
/external/llvm/tools/llvm-ranlib/
H A Dllvm-ranlib.cpp51 LLVMContext &Context = getGlobalContext(); local
79 AutoArchive(Archive::OpenAndLoad(ArchivePath, Context, &err_msg));
/external/skia/include/gpu/gl/
H A DSkMesaGLContext.h17 typedef intptr_t Context; typedef in class:SkMesaGLContext
32 Context fOldContext;
44 Context fContext;
/external/chromium/webkit/glue/
H A Dwebsocketstreamhandle_impl.cc23 // WebSocketStreamHandleImpl::Context -----------------------------------------
25 class WebSocketStreamHandleImpl::Context class in class:webkit_glue::WebSocketStreamHandleImpl
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(WebSocketStreamHandleImp function in class:webkit_glue::WebSocketStreamHandleImpl::Context
[all...]
/external/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h31 ASTContext &Context; member in class:clang::EvaluatedExprVisitor
34 explicit EvaluatedExprVisitor(ASTContext &Context) : Context(Context) { } argument
53 return this->Visit(E->getChosenSubExpr(Context));
65 if (!E->isTypeOperand() && E->Classify(Context).isGLValue())

Completed in 699 milliseconds

1234567891011>>