Searched refs:clang (Results 26 - 44 of 44) sorted by relevance

12

/frameworks/compile/slang/
H A Dslang_rs_export_var.cpp19 #include "clang/AST/ASTContext.h"
20 #include "clang/AST/Type.h"
30 const clang::VarDecl *VD,
40 const clang::Expr *Initializer = VD->getAnyInitializer();
50 clang::Expr::NPC_ValueDependentIsNotNull)) {
51 mInit.Val = clang::APValue(llvm::APSInt(1));
61 const clang::InitListExpr *IList =
62 static_cast<const clang::InitListExpr*>(Initializer);
73 clang::Expr::EvalResult tempInit;
98 clang
[all...]
H A Dslang_rs_export_element.cpp19 #include "clang/AST/Decl.h"
20 #include "clang/AST/Type.h"
22 #include "clang/Basic/SourceLocation.h"
23 #include "clang/Basic/IdentifierTable.h"
72 const clang::Type *T,
88 case clang::Type::Builtin:
89 case clang::Type::Pointer: {
102 case clang::Type::ExtVector: {
107 static_cast<const clang::ExtVectorType*>(
131 const clang
[all...]
H A Dslang_rs_export_type.h25 #include "clang/AST/Decl.h"
26 #include "clang/AST/Type.h"
37 inline const clang::Type* GetCanonicalType(const clang::Type* T) {
44 inline const clang::Type* GetCanonicalType(clang::QualType QT) {
48 inline const clang::Type* GetExtVectorElementType(const clang::ExtVectorType *T) {
55 inline const clang::Type* GetPointeeType(const clang
[all...]
H A Dslang_rs.cpp26 #include "clang/Basic/SourceLocation.h"
28 #include "clang/Frontend/FrontendDiagnostic.h"
30 #include "clang/Sema/SemaDiagnostic.h"
182 clang::DiagnosticsEngine &DiagEngine = getDiagnostics();
185 clang::diag::Severity::Error))
186 DiagEngine.Report(clang::diag::warn_unknown_warning_option)
190 clang::diag::ext_typecheck_convert_discards_qualifiers,
191 clang::diag::Severity::Error,
192 clang::SourceLocation());
196 clang
[all...]
H A Dslang_rs_export_func.h26 #include "clang/AST/Decl.h"
36 namespace clang { namespace
38 } // namespace clang
54 const clang::FunctionDecl *FD)
72 const clang::FunctionDecl *FD);
H A Drs_cc_options.cpp17 #include "clang/Basic/DiagnosticOptions.h"
18 #include "clang/Driver/DriverDiagnostic.h"
19 #include "clang/Driver/Options.h"
20 #include "clang/Frontend/Utils.h"
84 clang::DiagnosticsEngine &DiagEngine) {
95 DiagEngine.Report(clang::diag::err_drv_missing_argument)
98 clang::DiagnosticOptions DiagOpts;
101 clang::ProcessWarningOptions(DiagEngine, DiagOpts);
107 DiagEngine.Report(clang::diag::err_drv_unknown_argument)
165 DiagEngine.Report(clang
[all...]
H A Dslang_rs_backend.cpp22 #include "clang/AST/ASTContext.h"
23 #include "clang/Frontend/CodeGenOptions.h"
50 clang::DiagnosticsEngine *DiagEngine,
51 const clang::CodeGenOptions &CodeGenOpts,
52 const clang::TargetOptions &TargetOpts,
56 clang::SourceManager &SourceMgr,
75 void RSBackend::AnnotateFunction(clang::FunctionDecl *FD) {
84 bool RSBackend::HandleTopLevelDecl(clang::DeclGroupRef D) {
88 for (clang::DeclGroupRef::iterator I = D.begin(), E = D.end();
90 clang
[all...]
H A Dslang_rs_reflection_cpp.h76 void genInitValue(const clang::APValue &Val, bool asBool = false);
102 const clang::APValue &Val);
105 const clang::APValue &Val);
107 const clang::APValue &Val);
H A Dslang_backend.cpp24 #include "clang/AST/ASTContext.h"
25 #include "clang/AST/Decl.h"
26 #include "clang/AST/DeclGroup.h"
28 #include "clang/Basic/Diagnostic.h"
29 #include "clang/Basic/TargetInfo.h"
30 #include "clang/Basic/TargetOptions.h"
32 #include "clang/CodeGen/ModuleBuilder.h"
34 #include "clang/Frontend/CodeGenOptions.h"
35 #include "clang/Frontend/FrontendDiagnostic.h"
121 mDiagEngine.Report(clang
[all...]
H A Dllvm-rs-cc.cpp17 #include "clang/Basic/DiagnosticOptions.h"
18 #include "clang/Driver/DriverDiagnostic.h"
19 #include "clang/Driver/Options.h"
20 #include "clang/Frontend/TextDiagnosticPrinter.h"
21 #include "clang/Frontend/Utils.h"
141 clang::DiagnosticsEngine *DiagEngine, slang::DiagnosticBuffer *DiagClient,
228 llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs> DiagIDs(
229 new clang::DiagnosticIDs());
231 llvm::IntrusiveRefCntPtr<clang::DiagnosticOptions> DiagOpts(
232 new clang
[all...]
H A Dslang_rs_reflection_cpp.cpp560 const clang::APValue &val = EV->getInit();
595 const clang::APValue &val = EV->getInit();
627 const clang::APValue &val = EV->getInit();
867 const clang::APValue &Val) {
890 case clang::APValue::Int:
891 case clang::APValue::Float: {
898 case clang::APValue::Vector: {
902 const clang::APValue &ElementVal = Val.getVectorElt(i);
908 case clang::APValue::MemberPointer:
909 case clang
[all...]
H A Drs_cc_options.h130 RSCCOptions &Opts, clang::DiagnosticsEngine &DiagEngine);
H A Dslang_rs_reflection.h176 const clang::APValue &Val);
178 const clang::APValue &Val);
180 const clang::APValue &Val);
181 void genInitValue(const clang::APValue &Val, bool asBool);
H A Dslang_rs_reflection.cpp455 const clang::APValue &Val) {
457 slangAssert((Val.getKind() == clang::APValue::Int) &&
467 const clang::APValue &Val) {
477 const clang::APValue &Val) {
500 case clang::APValue::Int:
501 case clang::APValue::Float: {
508 case clang::APValue::Vector: {
518 const clang::APValue &ElementVal = Val.getVectorElt(i);
524 case clang::APValue::MemberPointer:
525 case clang
[all...]
H A DAndroid.mk47 CLANG_ROOT_PATH := external/clang
49 include $(CLANG_ROOT_PATH)/clang.mk
/frameworks/rs/java/tests/ImageProcessing2/
H A DAndroid.mk31 LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE := $(TOPDIR)external/clang/lib/Headers \
/frameworks/rs/java/tests/RSTest_CompatLib/
H A DAndroid.mk34 $(TOPDIR)external/clang/lib/Headers \
/frameworks/rs/
H A Dupdate_rs_prebuilts.sh146 cp $MY_ANDROID_DIR/external/clang/lib/Headers/*.h renderscript/clang-include
/frameworks/rs/driver/runtime/
H A Dbuild_bc_lib_internal.mk70 external/clang/lib/Headers

Completed in 1941 milliseconds

12