Searched refs:Context (Results 301 - 325 of 602) sorted by relevance

<<11121314151617181920>>

/external/llvm/include/llvm/
H A DType.h74 /// Context - This refers to the LLVMContext in which this type was uniqued.
75 LLVMContext &Context; member in class:llvm::Type
83 : Context(C), ID(tid), SubclassData(0),
110 LLVMContext &getContext() const { return Context; }
/external/llvm/lib/Target/
H A DMangler.cpp109 const MCAsmInfo &MAI = Context.getAsmInfo();
202 if (Context.getAsmInfo().hasMicrosoftFastStdCallMangling()) {
232 return Context.GetOrCreateSymbol(NameStr.str());
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelTree.java23 import android.content.Context;
76 public static final void loadLevelTree(int resource, Context context) {
196 public final static void loadAllDialog(Context context) {
/external/v8/src/
H A Dd8.h190 static Handle<Context> utility_context() { return utility_context_; }
195 static Persistent<Context> utility_context_;
196 static Persistent<Context> evaluation_context_;
H A Dscopes.h290 void AllocateVariables(Handle<Context> context);
406 Handle<Context> context,
409 Handle<Context> context);
H A Dtop.cc436 Context* global_context = isolate->context()->global()->global_context();
439 if (Context::cast(receiver_context)->security_token() ==
926 Handle<Context> Isolate::global_context() {
928 return Handle<Context>(global->global_context());
932 Handle<Context> Isolate::GetCallingGlobalContext() {
938 Context* context = Context::cast(frame->context());
947 if (it.done()) return Handle<Context>::null();
949 Context* context = Context
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebFrame.h43 class Context;
107 WEBKIT_API static WebFrame* frameForContext(v8::Handle<v8::Context>);
265 virtual v8::Local<v8::Context> mainWorldScriptContext() const = 0;
/external/clang/include/clang/AST/
H A DDeclTemplate.h151 static TemplateArgumentList *CreateCopy(ASTContext &Context,
346 unsigned NumTemplateArgs, ASTContext &Context) {
349 TemplateArgs[Arg].Profile(ID, Context);
1349 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1361 Create(ASTContext &Context, TagKind TK, DeclContext *DC,
1368 Create(ASTContext &Context, EmptyShell Empty);
1536 unsigned NumTemplateArgs, ASTContext &Context) {
1539 TemplateArgs[Arg].Profile(ID, Context);
1583 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK,
1604 Create(ASTContext &Context, TagKin
345 Profile(llvm::FoldingSetNodeID &ID, const TemplateArgument *TemplateArgs, unsigned NumTemplateArgs, ASTContext &Context) argument
1535 Profile(llvm::FoldingSetNodeID &ID, const TemplateArgument *TemplateArgs, unsigned NumTemplateArgs, ASTContext &Context) argument
2129 Create(ASTContext &Context, EmptyShell Empty) argument
[all...]
H A DType.h608 bool isPODType(ASTContext &Context) const;
614 bool isCXX11PODType(ASTContext &Context) const;
618 bool isTrivialType(ASTContext &Context) const;
622 bool isTriviallyCopyableType(ASTContext &Context) const;
741 QualType getNonLValueExprType(ASTContext &Context) const;
751 QualType getDesugaredType(const ASTContext &Context) const {
752 return getDesugaredType(*this, Context);
764 QualType getSingleStepDesugaredType(const ASTContext &Context) const;
872 bool hasTrivialAssignment(ASTContext &Context, bool Copying) const;
879 static QualType getDesugaredType(QualType T, const ASTContext &Context);
2212 const ASTContext &Context; member in class:clang::DependentSizedArrayType
2270 const ASTContext &Context; member in class:clang::DependentSizedExtVectorType
2918 const ASTContext &Context; member in class:clang::FunctionType::ExtInfo::FunctionProtoType::DependentTypeOfExprType
2921 DependentTypeOfExprType(const ASTContext &Context, Expr *E) argument
2990 const ASTContext &Context; member in class:clang::FunctionType::ExtInfo::FunctionProtoType::DependentDecltypeType
3871 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context) argument
[all...]
/external/clang/include/clang/Serialization/
H A DASTWriter.h91 ASTContext *Context; member in class:clang::ASTWriter
337 void WriteMetadata(ASTContext &Context, StringRef isysroot,
350 uint64_t WriteDeclContextLexicalBlock(ASTContext &Context, DeclContext *DC);
351 uint64_t WriteDeclContextVisibleBlock(ASTContext &Context, DeclContext *DC);
381 void WriteDecl(ASTContext &Context, Decl *D);
/external/llvm/lib/Target/PTX/
H A DPTXMCAsmStreamer.cpp44 PTXMCAsmStreamer(MCContext &Context, argument
50 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
546 MCStreamer *createPTXAsmStreamer(MCContext &Context, argument
553 return new PTXMCAsmStreamer(Context, OS, isVerboseAsm, useLoc,
/external/llvm/lib/VMCore/
H A DModule.cpp46 : Context(C), Materializer(NULL), ModuleID(MID) {
49 Context.addModule(this);
53 Context.removeModule(this);
119 return Context.getMDKindID(Name);
126 return Context.getMDKindNames(Result);
H A DConstants.cpp366 ConstantInt *ConstantInt::getTrue(LLVMContext &Context) { argument
367 LLVMContextImpl *pImpl = Context.pImpl;
369 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
373 ConstantInt *ConstantInt::getFalse(LLVMContext &Context) { argument
374 LLVMContextImpl *pImpl = Context.pImpl;
376 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
412 ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) { argument
414 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
417 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
486 LLVMContext &Context local
504 LLVMContext &Context = Ty->getContext(); local
519 LLVMContext &Context = Ty->getContext(); local
542 get(LLVMContext &Context, const APFloat& V) argument
629 get(LLVMContext &Context, StringRef Str, bool AddNull) argument
647 getTypeForElements(LLVMContext &Context, ArrayRef<Constant*> V, bool Packed) argument
[all...]
/external/libnfc-nxp/src/
H A DphFriNfc_NdefMap.c123 NdefMap->CompletionRoutine[index].Context = NULL;
181 NdefMap->MapCompletionInfo.Context = NULL;
255 NdefMap->CompletionRoutine[FunctionID].Context = CompletionRoutineContext;
295 || (NdefMap->CompletionRoutine->Context == NULL )
480 || (NdefMap->CompletionRoutine->Context == NULL)
657 || (NdefMap->CompletionRoutine->Context == NULL))
733 else if ( (NdefMap->CompletionRoutine->CompletionRoutine == NULL) || (NdefMap->CompletionRoutine->Context == NULL ))
947 void phFriNfc_NdefMap_Process( void *Context, argument
951 if ( Context != NULL )
953 phFriNfc_NdefMap_t *NdefMap = (phFriNfc_NdefMap_t *)Context;
[all...]
H A DphHal4Nfc_ADD.c610 /*Allocate and copy Remote device info into Hal4 Context*/
892 void *Context
920 Hal4Ctxt->sUpperLayerInfo.DiscoveryCtxt = Context;
925 Hal4Ctxt->sUpperLayerInfo.P2PDiscoveryCtxt = Context;
933 Hal4Ctxt->sUpperLayerInfo.EventNotificationCtxt = Context;
938 Hal4Ctxt->sUpperLayerInfo.DefaultListenerCtxt = Context;
953 void *Context
981 Hal4Ctxt->sUpperLayerInfo.psUpperLayerCtxt = Context;
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp190 : CurBuf(StartBuf), ErrorInfo(Err), SM(sm), Context(C), APFloatVal(0.0) {
461 TyVal = IntegerType::get(Context, NumBits);
598 TYPEKEYWORD("void", Type::getVoidTy(Context));
599 TYPEKEYWORD("float", Type::getFloatTy(Context));
600 TYPEKEYWORD("double", Type::getDoubleTy(Context));
601 TYPEKEYWORD("x86_fp80", Type::getX86_FP80Ty(Context));
602 TYPEKEYWORD("fp128", Type::getFP128Ty(Context));
603 TYPEKEYWORD("ppc_fp128", Type::getPPC_FP128Ty(Context));
604 TYPEKEYWORD("label", Type::getLabelTy(Context));
605 TYPEKEYWORD("metadata", Type::getMetadataTy(Context));
[all...]
/external/llvm/tools/opt/
H A Dopt.cpp354 void getContextName(DIDescriptor Context, std::string &N) { argument
355 if (Context.isNameSpace()) {
356 DINameSpace NS(Context);
361 } else if (Context.isType()) {
362 DIType TY(Context);
475 LLVMContext &Context = getGlobalContext(); local
505 M.reset(ParseIRFile(InputFilename, Err, Context));
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp514 const ASTContext &Context = getContext(); local
516 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
682 ASTContext &Context = getContext(); local
688 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
706 ASTContext &Context = getContext(); local
712 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
738 ASTContext &Context local
[all...]
/external/v8/test/cctest/
H A Dtest-api.cc54 using ::v8::Context;
138 Local<Context> local_env;
2708 Local<v8::Object> global = Context::GetCurrent()->Global();
3340 v8::Persistent<Context> context1 = Context::New();
3972 v8::Persistent<Context> context = Context::New(0, global_template);
3973 Context::Scope context_scope(context);
3990 v8::Handle<Context> context = Context
[all...]
/external/clang/lib/Frontend/
H A DASTUnit.cpp286 if (TheSema->Context.getLangOptions().CPlusPlus &&
378 ASTContext &Context; member in class:__anon2874::ASTInfoCollector
389 ASTInfoCollector(Preprocessor &PP, ASTContext &Context, LangOptions &LangOpt, argument
394 : PP(PP), Context(Context), LangOpt(LangOpt), HSI(HSI), Target(Target),
408 Context.InitBuiltinTypes(*Target);
629 ASTContext &Context = *AST->Ctx; local
631 Reader.reset(new ASTReader(PP, Context));
637 Reader->setListener(new ASTInfoCollector(*AST->PP, Context,
666 Context
1898 CalculateHiddenNames(const CodeCompletionContext &Context, CodeCompletionResult *Results, unsigned NumResults, ASTContext &Ctx, llvm::StringSet<llvm::BumpPtrAllocator> &HiddenNames) argument
1981 ProcessCodeCompleteResults(Sema &S, CodeCompletionContext Context, CodeCompletionResult *Results, unsigned NumResults) argument
[all...]
/external/clang/lib/AST/
H A DDeclBase.cpp269 static AvailabilityResult CheckAvailability(ASTContext &Context, argument
272 StringRef TargetPlatform = Context.getTargetInfo().getPlatformName();
278 VersionTuple TargetMinVersion = Context.getTargetInfo().getPlatformMinVersion();
544 ASTContext &Context = getASTContext();
548 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
553 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
554 Context.eraseDeclAttrs(this);
885 ASTContext &Context local
901 ASTContext &Context = DC->getParentASTContext();; local
[all...]
H A DMicrosoftMangle.cpp31 MangleContext &Context; member in class:__anon2752::MicrosoftCXXNameMangler
34 ASTContext &getASTContext() const { return Context.getASTContext(); }
38 : Context(C), Out(Out_) { }
80 MicrosoftMangleContext(ASTContext &Context, argument
81 DiagnosticsEngine &Diags) : MangleContext(Context, Diags) { }
186 if (!Context.shouldMangleDeclName(FD))
378 Context.mangleBlock(BD, Out);
525 Context.mangleObjCMethodName(MD, Out);
1184 MangleContext *clang::createMicrosoftMangleContext(ASTContext &Context, argument
1186 return new MicrosoftMangleContext(Context, Diag
[all...]
/external/llvm/lib/Analysis/
H A DDebugInfo.cpp1042 DIScope Context = LB.getContext(); local
1043 if (Context.isLexicalBlock())
1044 return processLexicalBlock(DILexicalBlock(Context));
1045 else if (Context.isLexicalBlockFile()) {
1046 DILexicalBlockFile DBF = DILexicalBlockFile(Context);
1050 return processSubprogram(DISubprogram(Context));
1152 /// isSubprogramContext - Return true if Context is either a subprogram
1154 bool llvm::isSubprogramContext(const MDNode *Context) { argument
1155 if (!Context)
1157 DIDescriptor D(Context);
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp233 LLVMContext &Context = currentLoop->getHeader()->getContext(); local
250 ConstantInt::getTrue(Context))) {
281 ConstantInt::getTrue(Context))) {
354 LLVMContext &Context = Header->getContext(); local
369 if (Val) *Val = ConstantInt::getTrue(Context);
372 if (Val) *Val = ConstantInt::getFalse(Context);
891 LLVMContext &Context = Val->getContext(); local
963 BasicBlock *Abort = BasicBlock::Create(Context, "us-unreachable",
966 new UnreachableInst(Context, Abort);
971 ConstantInt::getTrue(Context), NewSISuc
[all...]
/external/clang/include/clang/Parse/
H A DParser.h1541 unsigned Context, SourceLocation &DeclEnd,
1544 unsigned Context,
1549 DeclGroupPtrTy ParseDeclGroup(ParsingDeclSpec &DS, unsigned Context,
1570 DeclSpecContext getDeclSpecContextFromDeclaratorContext(unsigned Context);
1584 Declarator::TheContext Context);
1690 bool isCXXTypeId(TentativeCXXTypeIdContext Context, bool &isAmbiguous);
1691 bool isCXXTypeId(TentativeCXXTypeIdContext Context) { argument
1693 return isCXXTypeId(Context, isAmbiguous);
1757 Declarator::TheContext Context
1924 Decl *ParseNamespace(unsigned Context, SourceLocatio
[all...]

Completed in 561 milliseconds

<<11121314151617181920>>