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

12

/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1Class.java4 Universal, Application, Context, Private enum constant in enum:Asn1Class
/frameworks/compile/slang/
H A Dslang_rs_export_var.cpp29 RSExportVar::RSExportVar(RSContext *Context, argument
32 : RSExportable(Context, RSExportable::EX_VAR),
45 Initializer->EvaluateAsRValue(mInit, Context->getASTContext());
49 if (Initializer->isNullPointerConstant(Context->getASTContext(),
53 if (!Initializer->EvaluateAsRValue(mInit, Context->getASTContext())) {
54 Context->ReportError(Initializer->getExprLoc(),
64 Context->ReportError(VD->getLocation(),
75 Context->getASTContext())) {
76 Context->ReportError(IList->getInit(i)->getExprLoc(),
85 Context
[all...]
H A Dllvm-rs-as.cpp108 LLVMContext &Context = getGlobalContext(); local
126 std::unique_ptr<Module> M(parseAssemblyFile(InputFilename, Err, Context));
H A Dslang_rs_check_ast.h32 slang::RSContext *Context; member in class:slang::RSCheckAST
51 : Context(Con),
H A Dslang_rs_pragma_handler.h38 RSPragmaHandler(llvm::StringRef Name, RSContext *Context) argument
40 mContext(Context) {
H A Dslang_rs_special_func.cpp55 slang::RSContext *Context,
57 slangAssert(Context && FD);
68 Context->ReportError(PVD->getLocation(),
78 Context->ReportError(FD->getLocation(),
85 Context->ReportError(FD->getLocation(),
93 Context->ReportError(FD->getLocation(),
54 validateSpecialFuncDecl(unsigned int targetAPI, slang::RSContext *Context, clang::FunctionDecl const *FD) argument
H A Dslang_rs_export_func.h53 RSExportFunc(RSContext *Context, const llvm::StringRef &Name, argument
55 : RSExportable(Context, RSExportable::EX_FUNC),
61 mShouldMangle = Context->getMangleContext().shouldMangleDeclName(FD);
65 Context->getMangleContext().mangleName(FD, BufStm);
71 static RSExportFunc *Create(RSContext *Context,
H A Dslang_rs_exportable.h40 RSExportable(RSContext *Context, RSExportable::Kind K) argument
41 : mContext(Context),
43 Context->newExportable(this);
H A Dslang_rs_export_element.cpp71 RSExportType *RSExportElement::Create(RSContext *Context, argument
84 if (!RSExportType::NormalizeType(T, TypeName, Context, nullptr,
94 RSExportPrimitiveType::Create(Context,
107 RSExportVectorType::Create(Context,
131 RSExportType *RSExportElement::CreateFromDecl(RSContext *Context, argument
141 return RSExportType::Create(Context, T, NotLegacyKernelArgument);
161 return RSExportType::Create(Context, T, NotLegacyKernelArgument);
163 return RSExportElement::Create(Context, T, EI);
H A Dslang_rs_export_func.cpp35 static bool ValidateFuncDecl(slang::RSContext *Context, argument
37 slangAssert(Context && FD);
40 Context->ReportError(
50 RSExportFunc *RSExportFunc::Create(RSContext *Context, argument
57 if (!ValidateFuncDecl(Context, FD)) {
61 F = new RSExportFunc(Context, Name, FD);
67 clang::ASTContext &Ctx = Context->getASTContext();
108 RSExportType::Create(Context, T.getTypePtr(), NotLegacyKernelArgument);
H A Dslang_rs_export_foreach.cpp55 RSContext *Context, const clang::FunctionDecl *FD) {
56 slangAssert(Context && FD);
61 if (Context->getTargetAPI() < SLANG_JB_TARGET_API) {
64 Context->ReportError(FD->getLocation(),
77 valid &= validateAndConstructKernelParams(Context, FD);
79 valid &= validateAndConstructOldStyleParams(Context, FD);
82 valid &= setSignatureMetadata(Context, FD);
87 RSContext *Context, const clang::FunctionDecl *FD) {
88 slangAssert(Context && FD);
95 clang::ASTContext &C = Context
54 validateAndConstructParams( RSContext *Context, const clang::FunctionDecl *FD) argument
86 validateAndConstructOldStyleParams( RSContext *Context, const clang::FunctionDecl *FD) argument
164 validateAndConstructKernelParams( RSContext *Context, const clang::FunctionDecl *FD) argument
253 processSpecialParameters( RSContext *Context, const clang::FunctionDecl *FD, size_t *IndexOfFirstSpecialParameter) argument
268 setSignatureMetadata(RSContext *Context, const clang::FunctionDecl *FD) argument
309 Create(RSContext *Context, const clang::FunctionDecl *FD) argument
422 CreateDummyRoot(RSContext *Context) argument
[all...]
H A Dslang_rs_export_foreach.h71 RSExportForEach(RSContext *Context, const llvm::StringRef &Name) argument
72 : RSExportable(Context, RSExportable::EX_FOREACH),
80 bool validateAndConstructParams(RSContext *Context,
83 bool validateAndConstructOldStyleParams(RSContext *Context,
86 bool validateAndConstructKernelParams(RSContext *Context,
89 bool processSpecialParameters(RSContext *Context,
93 bool setSignatureMetadata(RSContext *Context,
96 static RSExportForEach *Create(RSContext *Context,
99 static RSExportForEach *CreateDummyRoot(RSContext *Context);
H A Dslang_rs_special_kernel_param.cpp97 slang::RSContext *Context,
105 clang::ASTContext &C = Context->getASTContext();
129 Context->ReportError(
141 Context->ReportError(PVD->getLocation(),
146 << listSpecialKernelParameters(Context->getTargetAPI());
155 if (Context->getTargetAPI() < SP.minAPI) {
156 Context->ReportError(PVD->getLocation(),
167 Context->ReportError(
182 Context->ReportError(PVD->getLocation(),
192 Context
96 processSpecialKernelParameters( slang::RSContext *Context, std::function<std::string ()> DiagnosticDescription, const clang::FunctionDecl *FD, size_t *IndexOfFirstSpecialParameter, unsigned int *SignatureMetadata) argument
[all...]
H A Dslang_rs_export_reduce.h80 RSExportReduce(RSContext *Context, argument
88 : RSExportable(Context, RSExportable::EX_REDUCE),
133 static RSExportReduce *Create(RSContext *Context,
H A Dslang_rs_pragma_handler.cpp48 RSExportTypePragmaHandler(llvm::StringRef Name, RSContext *Context) argument
49 : RSPragmaHandler(Name, Context) { }
60 RSJavaPackageNamePragmaHandler(llvm::StringRef Name, RSContext *Context) argument
61 : RSPragmaHandler(Name, Context) { }
129 RSReducePragmaHandler(llvm::StringRef Name, RSContext *Context) argument
130 : RSPragmaHandler(Name, Context) { }
351 RSReflectLicensePragmaHandler(llvm::StringRef Name, RSContext *Context) argument
352 : RSPragmaHandler(Name, Context) { }
381 RSVersionPragmaHandler(llvm::StringRef Name, RSContext *Context) argument
382 : RSPragmaHandler(Name, Context) { }
396 RSPrecisionPragmaHandler(llvm::StringRef Name, RSContext *Context) argument
[all...]
H A Dslang_backend.cpp207 Backend::Backend(RSContext *Context, clang::DiagnosticsEngine *DiagEngine, argument
219 mBufferOutStream(*mpOS), mContext(Context),
227 mASTChecker(Context, Context->getTargetAPI(), IsFilterscript),
228 mForEachHandler(Context),
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSX86TranslateGEPPass.cpp40 llvm::LLVMContext *Context; member in class:__anon1185::RSX86TranslateGEPPass
86 llvm::Type::getInt32Ty(*Context), EltOffset);
91 llvm::Type::getInt32Ty(*Context),
107 llvm::Type::getInt8PtrTy(*Context),
114 llvm::Type::getInt8Ty(*Context), Int8Ptr, llvm::makeArrayRef(Indices),
138 Context = &F.getParent()->getContext();
H A DRSCompilerDriver.cpp310 BCCContext& Context, const char* pOutputFilepath, const char* pRuntimePath,
331 llvm::LLVMContext& context = Context.getLLVMContext();
360 if (!fuseKernels(Context, sourcesToFuse, slots, nameOfFused, &module)) {
376 if (!renameInvoke(Context, source, slot, newName, &module)) {
386 Source::CreateFromModule(Context, pOutputFilepath, module, true));
309 buildScriptGroup( BCCContext& Context, const char* pOutputFilepath, const char* pRuntimePath, const char* pRuntimeRelaxedPath, bool dumpIR, const char* buildChecksum, const std::vector<Source*>& sources, const std::list<std::list<std::pair<int, int>>>& toFuse, const std::list<std::string>& fused, const std::list<std::list<std::pair<int, int>>>& invokes, const std::list<std::string>& invokeBatchNames) argument
H A DRSScriptGroupFusion.cpp78 // The whitelist of supported signature bits. Context or user data arguments are
133 llvm::FunctionType* getFusedFuncType(bcc::BCCContext& Context, argument
154 llvm::Type* I32Ty = llvm::IntegerType::get(Context.getLLVMContext(), 32);
176 bool fuseKernels(bcc::BCCContext& Context, argument
186 getFusedFuncType(Context, sources, slots, mergedModule, &fusedFunctionSignature);
195 llvm::LLVMContext& ctxt = Context.getLLVMContext();
319 bool renameInvoke(BCCContext& Context, const Source* source, const int slot, argument
336 llvm::BasicBlock* block = llvm::BasicBlock::Create(Context.getLLVMContext(),
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp98 LLVMContext& Context) {
100 std::unique_ptr<Module> Result = parseIRFile(FN, Err, Context);
115 LLVMContext &Context = getGlobalContext(); local
121 std::unique_ptr<Module> M(LoadFile(argv[0], InputFilenames[0], Context));
96 LoadFile(const char *argv0, const std::string &FN, LLVMContext& Context) argument
/frameworks/base/tools/aapt2/
H A DStringPool.h45 struct Context { struct in class:aapt::StringPool
63 const Context& getContext() const;
86 const Context& getContext() const;
99 Context context;
146 Ref makeRef(const StringPiece16& str, const Context& context);
158 StyleRef makeRef(const StyleString& str, const Context& context);
198 Ref makeRefImpl(const StringPiece16& str, const Context& context, bool unique);
/frameworks/base/tools/aapt2/test/
H A DContext.h33 class Context : public IAaptContext { class in namespace:aapt::test
64 Context() : mNameMangler({}) { function in class:aapt::test::Context
76 std::unique_ptr<Context> mContext = std::unique_ptr<Context>(new Context());
99 std::unique_ptr<Context> build() {
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp189 bool compileScriptGroup(BCCContext& Context, RSCompilerDriver& RSCD) { argument
193 bcc::Source::CreateFromFile(Context, OptInputFilenames[i]);
214 Context, outputFilepath.c_str(), OptBCLibFilename.c_str(),
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp37 } Context; typedef in typeref:struct:__anon1826
104 Context *context = (Context *) pContext;
290 Context context;
/frameworks/rs/
H A DrsContext.cpp60 pthread_mutex_t Context::gInitMutex = PTHREAD_MUTEX_INITIALIZER;
61 pthread_mutex_t Context::gMessageMutex = PTHREAD_MUTEX_INITIALIZER;
62 pthread_mutex_t Context::gLibMutex = PTHREAD_MUTEX_INITIALIZER;
64 bool Context::initGLThread() {
77 void Context::deinitEGL() {
83 Context::PushState::PushState(Context *con) {
96 Context::PushState::~PushState() {
109 uint32_t Context::runScript(Script *s) {
116 uint32_t Context
450 Context::Context() { function in class:Context
[all...]

Completed in 1505 milliseconds

12