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

1 2 3 4 5 6 7 8 910

  /system/tools/hidl/c2hal/
Declaration.cpp 17 #include "Declaration.h"
26 Declaration::Declaration(const std::string &name)
30 Declaration::~Declaration() {}
32 const std::string& Declaration::getName() const {
35 void Declaration::setName(const std::string &name) {
39 void Declaration::forceCamelCase() {
44 void Declaration::forcePascalCase() {
49 void Declaration::forceUpperSnakeCase()
    [all...]
TypeDef.cpp 21 TypeDef::TypeDef(const std::string &name, Declaration* declaration)
22 : Declaration(name), mDeclaration(declaration)
Note.cpp 22 : Declaration(name)
25 Note::Note(Declaration *decl)
26 : Declaration(""),
Note.h 24 #include "Declaration.h"
31 struct Note : Declaration {
34 Note(Declaration *decl);
44 Declaration *mDecl = nullptr;
TypeDef.h 24 #include "Declaration.h"
28 struct TypeDef : Declaration {
29 TypeDef(const std::string &name, Declaration* declaration);
39 Declaration* mDeclaration;
CompositeDeclaration.h 20 #include "Declaration.h"
25 struct CompositeDeclaration : Declaration {
29 std::vector<android::Declaration *> *fieldDeclarations);
35 const std::vector<android::Declaration *>* getFieldDeclarations() const;
51 std::vector<android::Declaration *> *mFieldDeclarations;
Declaration.h 30 struct Declaration {
31 Declaration(const std::string &name);
32 virtual ~Declaration();
62 DISALLOW_COPY_AND_ASSIGN(Declaration);
FunctionDeclaration.h 20 #include "Declaration.h"
26 struct Declaration;
29 struct FunctionDeclaration : Declaration {
32 std::vector<Declaration *> *params);
48 std::vector<Declaration *> *mParams;
EnumVarDeclaration.cpp 25 : Declaration(""), mExpression(expression)
35 Declaration::setName(name);
VarDeclaration.cpp 22 : Declaration(""),
33 Declaration::setName(name);
Include.cpp 22 : Declaration(name), mIsLibrary(isLibrary)
AST.h 35 struct Declaration;
51 void setDeclarations(std::vector<Declaration *> *declarations);
74 std::vector<Declaration *> *mDeclarations = NULL;
82 status_t generateFile(CompositeDeclaration* declaration) const;
FunctionDeclaration.cpp 27 std::vector<Declaration *> *params)
28 : Declaration(""),
47 Declaration::setName(name);
CompositeDeclaration.cpp 20 #include "Declaration.h"
31 std::vector<android::Declaration *> *fieldDeclarations)
32 : Declaration(""),
49 Declaration::setName(name);
56 const std::vector<android::Declaration *>*
98 for (auto *declaration : *mFieldDeclarations) {
99 declaration->generateCommentText(out);
100 declaration->generateSource(out);
108 for (auto &declaration : *mFieldDeclarations) {
109 declaration->processContents(ast)
    [all...]
EnumVarDeclaration.h 24 #include "Declaration.h"
30 struct EnumVarDeclaration : Declaration {
Include.h 20 #include "Declaration.h"
29 struct Include : Declaration {
VarDeclaration.h 20 #include "Declaration.h"
25 struct VarDeclaration : Declaration{
Define.cpp 26 : Declaration(name), mSlurp(slurp)
  /system/tools/aidl/
ast_cpp.h 43 class Declaration : public AstNode {
45 Declaration() = default;
46 virtual ~Declaration() = default;
49 DISALLOW_COPY_AND_ASSIGN(Declaration);
50 }; // class Declaration
52 class ClassDecl : public Declaration {
58 std::vector<std::unique_ptr<Declaration>> public_members,
59 std::vector<std::unique_ptr<Declaration>> private_members);
64 void AddPublic(std::unique_ptr<Declaration> member);
65 void AddPrivate(std::unique_ptr<Declaration> member)
    [all...]
ast_cpp_unittest.cpp 117 vector<unique_ptr<Declaration>> test_methods;
121 vector<unique_ptr<Declaration>> test_sub_methods;
124 unique_ptr<Declaration> test{new ClassDecl { "TestClass", "",
127 unique_ptr<Declaration> test_sub{new ClassDecl { "TestSubClass",
130 vector<unique_ptr<Declaration>> classes;
137 vector<unique_ptr<Declaration>> test_ns_vec;
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 100 // Make this a declaration and drop it's comdat.
118 // Make this a declaration and drop it's comdat.
137 llvm::Value *Declaration;
139 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
143 Declaration =
148 CurI->replaceAllUsesWith(Declaration);
  /external/v8/src/ast/
ast-expression-rewriter.h 32 virtual void VisitDeclarations(Declaration::List* declarations);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_two_side.c 76 if (decl->Declaration.File == TGSI_FILE_INPUT) {
88 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
109 decl.Declaration.File = TGSI_FILE_INPUT;
110 decl.Declaration.Interpolate = 1;
111 decl.Declaration.Semantic = 1;
125 decl.Declaration.File = TGSI_FILE_TEMPORARY;
135 decl.Declaration.File = TGSI_FILE_INPUT;
136 decl.Declaration.Semantic = 1;
tgsi_emulate.c 53 decl->Declaration.File == TGSI_FILE_INPUT) {
54 assert(decl->Declaration.Interpolate);
70 decl.Declaration.File = TGSI_FILE_INPUT;
76 decl.Declaration.File = TGSI_FILE_OUTPUT;
77 decl.Declaration.Semantic = true;
tgsi_parse.c 108 copy_token(&decl->Declaration, &token);
112 if (decl->Declaration.Dimension) {
116 if (decl->Declaration.Interpolate) {
120 if (decl->Declaration.Semantic) {
124 if (decl->Declaration.File == TGSI_FILE_IMAGE) {
128 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
132 if (decl->Declaration.Array) {

Completed in 333 milliseconds

1 2 3 4 5 6 7 8 910