HomeSort by relevance Sort by last modified time
    Searched refs:FunctionDeclaration (Results 1 - 25 of 50) sorted by null

1 2

  /system/tools/hidl/c2hal/
FunctionDeclaration.cpp 17 #include "FunctionDeclaration.h"
25 FunctionDeclaration::FunctionDeclaration(Type* type,
35 FunctionDeclaration::~FunctionDeclaration() {
46 void FunctionDeclaration::setName(const std::string &name) {
51 const Type* FunctionDeclaration::getType() const {
55 void FunctionDeclaration::generateSource(Formatter &out) const {
69 void FunctionDeclaration::generateParameterSource(Formatter &out) const {
75 void FunctionDeclaration::processContents(AST &)
    [all...]
FunctionDeclaration.h 29 struct FunctionDeclaration : Declaration {
30 FunctionDeclaration(Type* type,
33 ~FunctionDeclaration();
52 DISALLOW_COPY_AND_ASSIGN(FunctionDeclaration);
CompositeDeclaration.cpp 18 #include "FunctionDeclaration.h"
119 if((*it)->decType() != FunctionDeclaration::type()) {
160 if (declaration->decType() == FunctionDeclaration::type()) {
c2hal_y.yy 23 #include "FunctionDeclaration.h"
425 $$ = new FunctionDeclaration($1, $4, $8);
429 $$ = new FunctionDeclaration($1, $2, $4);
433 $$ = new FunctionDeclaration($1, $3, $6);
AST.cpp 19 #include "FunctionDeclaration.h"
163 if ((*it)->decType() == FunctionDeclaration::type()) {
  /external/skia/src/sksl/ir/
SkSLSymbolTable.cpp 13 std::vector<const FunctionDeclaration*> SymbolTable::GetFunctions(const Symbol& s) {
16 return { &((FunctionDeclaration&) s) };
20 return std::vector<const FunctionDeclaration*>();
39 for (const FunctionDeclaration* prev : previousFunctions) {
41 for (const FunctionDeclaration* current : functions) {
79 std::vector<const FunctionDeclaration*> functions;
80 functions.push_back((const FunctionDeclaration*) oldSymbol);
81 functions.push_back((const FunctionDeclaration*) symbol);
86 std::vector<const FunctionDeclaration*> functions;
90 functions.push_back((const FunctionDeclaration*) symbol)
    [all...]
SkSLFunctionDefinition.h 21 FunctionDefinition(Position position, const FunctionDeclaration& declaration,
31 const FunctionDeclaration& fDeclaration;
SkSLFunctionReference.h 23 std::vector<const FunctionDeclaration*> function)
36 const std::vector<const FunctionDeclaration*> fFunctions;
SkSLUnresolvedFunction.h 19 UnresolvedFunction(std::vector<const FunctionDeclaration*> funcs)
33 const std::vector<const FunctionDeclaration*> fFunctions;
SkSLFunctionCall.h 20 FunctionCall(Position position, const Type& type, const FunctionDeclaration& function,
47 const FunctionDeclaration& fFunction;
SkSLSymbolTable.h 19 struct FunctionDeclaration;
22 * Maps identifiers to symbols. Functions, in particular, are mapped to either FunctionDeclaration
47 static std::vector<const FunctionDeclaration*> GetFunctions(const Symbol& s);
SkSLFunctionDeclaration.h 23 struct FunctionDeclaration : public Symbol {
24 FunctionDeclaration(Position position, Modifiers modifiers, String name,
45 bool matches(const FunctionDeclaration& f) const {
  /frameworks/rs/rsov/compiler/spirit/
visitor.h 31 class FunctionDeclaration;
49 virtual void visit(FunctionDeclaration *) = 0;
69 virtual void visit(FunctionDeclaration *fdecl);
visitor.cpp 38 void DoNothingVisitor::visit(FunctionDeclaration *fdecl) {
module.h 43 class FunctionDeclaration;
446 class FunctionDeclaration : public Entity {
448 virtual ~FunctionDeclaration() {}
  /external/swiftshader/third_party/subzero/src/
IceGlobalInits.cpp 64 FunctionDeclaration::getIntrinsicInfo(const GlobalContext *Ctx,
76 bool FunctionDeclaration::validateRegularTypeSignature() const {
84 bool FunctionDeclaration::validateIntrinsicTypeSignature(
96 FunctionDeclaration::getTypeSignatureError(const GlobalContext *Ctx) {
114 void FunctionDeclaration::dumpType(Ostream &Stream) const {
120 void FunctionDeclaration::dump(Ostream &Stream) const {
IceGlobalInits.h 130 class FunctionDeclaration : public GlobalDeclaration {
131 FunctionDeclaration() = delete;
132 FunctionDeclaration(const FunctionDeclaration &) = delete;
133 FunctionDeclaration &operator=(const FunctionDeclaration &) = delete;
136 static FunctionDeclaration *create(GlobalContext *Context,
141 return new (Context->allocate<FunctionDeclaration>())
142 FunctionDeclaration(Signature, CallingConv, Linkage, IsProto);
197 FunctionDeclaration(const FuncSigType &Signature
    [all...]
IceASanInstrumentation.cpp 102 using PrototypeMap = std::unordered_map<std::string, FunctionDeclaration *>;
141 llvm::dyn_cast<FunctionDeclaration>(TargetDecl);
155 FunctionDeclaration *SubstProto;
160 SubstProto = FunctionDeclaration::create(
IceDefs.h 63 class FunctionDeclaration;
152 using FunctionDeclarationList = std::vector<FunctionDeclaration *>;
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.h 105 void writeFunctionStart(const FunctionDeclaration& f);
107 void writeFunctionDeclaration(const FunctionDeclaration& f);
SkSLIRGenerator.h 107 const FunctionDeclaration& function,
109 bool determineCallCost(const FunctionDeclaration& function,
169 const FunctionDeclaration* fCurrentFunction;
SkSLSPIRVCodeGenerator.h 107 SpvId getFunctionType(const FunctionDeclaration& function);
128 SpvId writeFunctionStart(const FunctionDeclaration& f, OutputStream& out);
130 SpvId writeFunctionDeclaration(const FunctionDeclaration& f, OutputStream& out);
286 std::unordered_map<const FunctionDeclaration*, SpvId> fFunctionMap;
SkSLIRGenerator.cpp 525 FunctionDeclaration* invokeDecl = new FunctionDeclaration(Position(),
533 fSymbolTable->add(invokeDecl->fName, std::unique_ptr<FunctionDeclaration>(invokeDecl));
609 const FunctionDeclaration* decl = nullptr;
612 std::vector<const FunctionDeclaration*> functions;
618 functions.push_back((FunctionDeclaration*) entry);
636 FunctionDeclaration newDecl(f.fPosition, f.fModifiers, f.fName, parameters,
664 auto newDecl = std::unique_ptr<FunctionDeclaration>(new FunctionDeclaration(f.fPosition,
    [all...]
  /external/v8/src/asmjs/
asm-typer.h 78 bool ValidateInnerFunction(FunctionDeclaration* decl);
273 AsmType* ValidateModuleFunction(FunctionDeclaration* fun_decl);
283 AsmType* ValidateFunction(FunctionDeclaration* fun_decl);
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.cc 58 void ALAA::VisitFunctionDeclaration(FunctionDeclaration* leaf) {}

Completed in 439 milliseconds

1 2