Searched refs:Context (Results 351 - 375 of 602) sorted by relevance

<<11121314151617181920>>

/external/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h161 LLVMContext &Context; member in class:llvm::CCState
180 LLVMContext &getContext() const { return Context; }
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp756 LLVMContext &Context = Arg->getContext(); local
758 Type *VoidPtrTy = Type::getInt8PtrTy(Context);
775 Type *Tys[3] = {VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context)};
786 Size = ConstantInt::get(Type::getInt64Ty(Context),
794 ConstantInt::get(Type::getInt32Ty(Context), 1),
795 ConstantInt::getFalse(Context) // isVolatile
892 LLVMContext &Context = TheCall->getContext(); local
1141 new UnreachableInst(Context, Term);
/external/llvm/tools/bugpoint/
H A DBugDriver.h47 LLVMContext& Context; member in class:llvm::BugDriver
72 LLVMContext& getContext() const { return Context; }
/external/llvm/tools/lli/
H A Dlli.cpp162 LLVMContext &Context = getGlobalContext(); local
179 Module *Mod = ParseIRFile(InputFile, Err, Context);
267 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
268 Type::getInt32Ty(Context),
/external/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp83 LLVMContext &Context = getGlobalContext(); local
90 M.reset(getLazyIRFileModule(InputFilename, Err, Context));
/external/v8/src/
H A Dmksnapshot.cc221 Persistent<Context> context = v8::Context::New();
H A Dtype-info.h239 TypeFeedbackOracle(Handle<Code> code, Handle<Context> global_context);
282 Handle<Context> global_context_;
H A Dapi.cc563 void Context::Enter() {
564 // TODO(isolates): Context should have a pointer to isolate.
566 if (IsDeadCheck(isolate, "v8::Context::Enter()")) return;
569 i::Handle<i::Context> env = Utils::OpenHandle(this);
577 void Context::Exit() {
578 // TODO(isolates): Context should have a pointer to isolate.
583 "v8::Context::Exit()",
589 i::Context* last_context =
595 void Context::SetData(v8::Handle<String> data) {
596 // TODO(isolates): Context shoul
[all...]
/external/v8/test/cctest/
H A Dtest-func-name-inference.cc49 static v8::Persistent<v8::Context> env;
55 env = v8::Context::New();
H A Dtest-log.cc170 env_(v8::Context::New()) {
183 v8::Handle<v8::Context>& env() { return env_; }
200 v8::Handle<v8::Context> env_;
383 v8::Persistent<v8::Context> context = v8::Context::New();
386 v8::Context::Scope context_scope(context);
509 v8::Handle<v8::Context> env = v8::Context::New();
1129 v8::Handle<v8::Context> env = v8::Context
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptFunctionCall.cpp189 ASSERT(v8::Context::InContext());
193 v8::Handle<v8::Object> object = v8::Context::GetCurrent()->Global();
/external/clang/lib/CodeGen/
H A DCGClass.cpp26 ComputeNonVirtualBaseClassOffset(ASTContext &Context, argument
39 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
764 FieldHasTrivialDestructorBody(ASTContext &Context, const FieldDecl *Field);
767 HasTrivialDestructorBody(ASTContext &Context, argument
783 if (!FieldHasTrivialDestructorBody(Context, Field))
796 if (!HasTrivialDestructorBody(Context, NonVirtualBase,
808 if (!HasTrivialDestructorBody(Context, VirtualBase,
818 FieldHasTrivialDestructorBody(ASTContext &Context, argument
821 QualType FieldBaseElementType = Context.getBaseElementType(Field->getType());
828 return HasTrivialDestructorBody(Context, FieldClassDec
833 CanSkipVTablePointerInitialization(ASTContext &Context, const CXXDestructorDecl *Dtor) argument
1677 UseVirtualCall(ASTContext &Context, const CXXOperatorCallExpr *CE, const CXXMethodDecl *MD) argument
[all...]
H A DCGBlocks.cpp1395 ASTContext &Context = CGF.getContext(); local
1397 QualType R = Context.VoidTy;
1400 ImplicitParamDecl dst(0, SourceLocation(), 0, Context.VoidPtrTy);
1403 ImplicitParamDecl src(0, SourceLocation(), 0, Context.VoidPtrTy);
1419 = &Context.Idents.get("__Block_byref_object_copy_");
1421 FunctionDecl *FD = FunctionDecl::Create(Context,
1422 Context.getTranslationUnitDecl(),
1467 ASTContext &Context = CGF.getContext(); local
1468 QualType R = Context.VoidTy;
1471 ImplicitParamDecl src(0, SourceLocation(), 0, Context
[all...]
H A DCGExprConstant.cpp84 const ASTContext &Context = CGM.getContext(); local
86 CharUnits FieldOffsetInChars = Context.toCharUnitsFromBits(FieldOffset);
134 const ASTContext &Context = CGM.getContext(); local
135 const uint64_t CharWidth = Context.getCharWidth();
136 uint64_t NextFieldOffsetInBits = Context.toBits(NextFieldOffsetInChars);
139 CharUnits PadSize = Context.toCharUnitsFromBits(
141 Context.getTargetInfo().getCharAlign()));
146 uint64_t FieldSize = Field->getBitWidthValue(Context);
161 NextFieldOffsetInBits = Context.toBits(NextFieldOffsetInChars);
958 Success = E->EvaluateAsLValue(Result, Context);
[all...]
H A DCGCall.cpp50 static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) { argument
51 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
52 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
119 ArgTys.push_back(GetThisType(Context, RD));
133 ArgTys.push_back(GetThisType(Context, MD->getParent()));
141 ArgTys.push_back(GetThisType(Context, D->getParent()));
142 CanQualType ResTy = Context.VoidTy;
158 ArgTys.push_back(GetThisType(Context, D->getParent()));
159 CanQualType ResTy = Context.VoidTy;
184 ArgTys.push_back(Context
[all...]
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp122 static ScopePair GetDiagForGotoScopeDecl(ASTContext &Context, const Decl *D) { argument
136 if (Context.getLangOptions().ObjCAutoRefCount && VD->hasLocalStorage()) {
150 if (Context.getLangOptions().CPlusPlus && VD->hasLocalStorage()) {
180 if (Context.getLangOptions().CPlusPlus0x) {
221 std::pair<unsigned,unsigned> Diags = GetDiagForGotoScopeDecl(S.Context, D);
/external/replicaisland/src/com/replica/replicaisland/
H A DGame.java19 import android.content.Context;
62 public void bootstrap(Context context, int viewWidth, int viewHeight, int gameWidth, int gameHeight, int difficulty) {
111 WindowManager windowMgr = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
330 Context context = params.context;
458 public void onResume(Context context, boolean force) {
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DlibEGL.cpp12 #include "libGLESv2/Context.h"
48 bool validate(egl::Display *display, gl::Context *context)
806 EGLContext context = display->createContext(config, static_cast<gl::Context*>(share_context));
836 display->destroyContext((gl::Context*)ctx);
856 gl::Context *context = static_cast<gl::Context*>(ctx);
/external/clang/lib/AST/
H A DStmtPrinter.cpp32 ASTContext &Context; member in class:__anon2759::StmtPrinter
41 : OS(os), Context(C), IndentLevel(Indentation), Helper(helper),
1243 Size->printPretty(s, Context, Helper, Policy);
1605 void Stmt::dumpPretty(ASTContext& Context) const {
1606 printPretty(llvm::errs(), Context, 0, local
1607 PrintingPolicy(Context.getLangOptions()));
1610 void Stmt::printPretty(raw_ostream &OS, ASTContext& Context, argument
1619 if (Policy.Dump && &Context) {
1620 dump(OS, Context.getSourceManager());
1624 StmtPrinter P(OS, Context, Helpe
[all...]
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp258 /// \brief Context under which completion occurred.
505 CodeCompletionContext Context,
520 enum CodeCompletionContext::Kind contextKind = Context.getKind();
526 if (Context.getNumSelIdents() > 0) {
527 for (unsigned i = 0; i < Context.getNumSelIdents(); i++) {
528 IdentifierInfo *selIdent = Context.getSelIdents()[i];
530 StringRef selectorString = Context.getSelIdents()[i]->getName();
537 QualType baseType = Context.getBaseType();
504 ProcessCodeCompleteResults(Sema &S, CodeCompletionContext Context, CodeCompletionResult *Results, unsigned NumResults) argument
/external/libnfc-nxp/src/
H A DphFriNfc_DesfireMap.c619 void phFriNfc_Desfire_Process(void *Context, argument
623 phFriNfc_NdefMap_t *NdefMap = (phFriNfc_NdefMap_t *)Context;
1757 CompletionRoutine(NdefMap->CompletionRoutine->Context,\
1764 CompletionRoutine(NdefMap->CompletionRoutine->Context,\
1771 CompletionRoutine(NdefMap->CompletionRoutine->Context,\
1778 CompletionRoutine(NdefMap->CompletionRoutine->Context,\
1803 NdefMap->MapCompletionInfo.Context = NdefMap;
/external/clang/include/clang/AST/
H A DTemplateBase.h226 static TemplateArgument CreatePackCopy(ASTContext &Context,
359 void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context) const;
511 ASTContext &Context) const;
/external/llvm/lib/AsmParser/
H A DLLParser.h88 LLVMContext &Context; member in class:llvm::LLParser
128 Context(m->getContext()), Lex(F, SM, Err, m->getContext()),
132 LLVMContext &getContext() { return Context; }
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp300 LLVMContext &Context = getGlobalContext(); local
313 Result = ParseBitcodeFile(Buffer.get(), Context, &ErrorMessage);
336 Result = ParseBitcodeFile(buff.get(), Context, &ErrorMessage);
/external/llvm/unittests/Support/
H A DValueHandleTest.cpp296 LLVMContext *Context; member in class:__anon7199::RecoveringVH
299 Context(&getGlobalContext()) {}
302 Context(&getGlobalContext()) {}

Completed in 516 milliseconds

<<11121314151617181920>>