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

1 2 3 4 5

  /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 116 vector<unique_ptr<Declaration>> test_methods;
120 vector<unique_ptr<Declaration>> test_sub_methods;
123 unique_ptr<Declaration> test{new ClassDecl { "TestClass", "",
126 unique_ptr<Declaration> test_sub{new ClassDecl { "TestSubClass",
129 vector<unique_ptr<Declaration>> classes;
136 vector<unique_ptr<Declaration>> test_ns_vec;
generate_cpp.cpp 154 unique_ptr<Declaration> BuildMethodDecl(const AidlMethod& method,
165 return unique_ptr<Declaration>{
173 vector<unique_ptr<Declaration>> decls,
178 LOG(FATAL) << "C++ generation requires a package declaration "
190 unique_ptr<CppNamespace> NestInNamespaces(unique_ptr<Declaration> decl,
192 vector<unique_ptr<Declaration>> decls;
251 unique_ptr<Declaration> DefineClientTransaction(const TypeNamespace& types,
371 return unique_ptr<Declaration>(ret.release());
382 vector<unique_ptr<Declaration>> file_decls;
387 file_decls.push_back(unique_ptr<Declaration>{new ConstructorImpl
    [all...]
ast_cpp.cpp 37 std::vector<unique_ptr<Declaration>> public_members,
38 std::vector<unique_ptr<Declaration>> private_members)
67 void ClassDecl::AddPublic(std::unique_ptr<Declaration> member) {
71 void ClassDecl::AddPrivate(std::unique_ptr<Declaration> member) {
382 std::vector<unique_ptr<Declaration>> declarations)
387 unique_ptr<Declaration> declaration)
389 declarations_.push_back(std::move(declaration));
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 97 // Make this a declaration and drop it's comdat.
115 // Make this a declaration and drop it's comdat.
134 llvm::Value *Declaration;
136 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
140 Declaration =
145 CurI->replaceAllUsesWith(Declaration);
  /external/v8/src/ast/
ast-expression-visitor.h 33 void VisitDeclarations(ZoneList<Declaration*>* d) override;
ast-expression-rewriter.h 32 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
ast-literal-reindexer.h 27 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
prettyprinter.h 90 void PrintDeclarations(ZoneList<Declaration*>* declarations);
118 void PrintDeclarations(ZoneList<Declaration*>* declarations);
scopes.h 18 // A hash map to support fast variable declaration and lookup.
147 void DeclareFunctionVar(VariableDeclaration* declaration) {
149 // Handle implicit declaration of the function name in named function
151 decls_.InsertAt(0, declaration, zone());
152 function_ = declaration;
221 // Adds the specific declaration node to the list of declarations in
224 void AddDeclaration(Declaration* declaration);
243 // declarations, i.e. a var declaration that has been hoisted from a nested
245 Declaration* CheckConflictingVarDeclarations()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
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_IMMEDIATE_ARRAY) {
135 if (decl->Declaration.File == TGSI_FILE_RESOURCE) {
139 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
tgsi_dump.c 248 ENM(decl->Declaration.File, tgsi_file_names);
251 if (decl->Declaration.File == TGSI_FILE_INPUT &&
256 if (decl->Declaration.Dimension) {
272 decl->Declaration.UsageMask );
274 if (decl->Declaration.Local)
277 if (decl->Declaration.Semantic) {
288 if (decl->Declaration.File == TGSI_FILE_RESOURCE) {
297 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
316 if (decl->Declaration.Interpolate) {
318 decl->Declaration.File == TGSI_FILE_INPUT
    [all...]
tgsi_build.c 83 * declaration
88 struct tgsi_declaration *declaration,
91 assert( declaration->NrTokens < 0xFF );
93 declaration->NrTokens++;
101 struct tgsi_declaration declaration; local
103 declaration.Type = TGSI_TOKEN_TYPE_DECLARATION;
104 declaration.NrTokens = 1;
105 declaration.File = TGSI_FILE_NULL;
106 declaration.UsageMask = TGSI_WRITEMASK_XYZW;
107 declaration.Interpolate = 0
128 struct tgsi_declaration declaration; local
354 struct tgsi_declaration *declaration; local
    [all...]
tgsi_parse.h 67 struct tgsi_declaration Declaration;
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs_draw.c 83 decl.Declaration.File = TGSI_FILE_TEMPORARY;
96 decl.Declaration.File = TGSI_FILE_OUTPUT;
97 decl.Declaration.Interpolate = 1;
98 decl.Declaration.Semantic = TRUE;
151 if (decl->Declaration.File == TGSI_FILE_OUTPUT) {
205 } else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
214 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 41 /// \brief Priority for a declaration that is in the local scope.
43 /// \brief Priority for a member declaration found from the current
51 /// \brief Priority for a non-type declaration.
123 /// \brief Determine the type that this declaration will have if it is used
141 /// declaration.
176 /// \brief Code completion occurred where a statement (or declaration) is
440 /// \brief A brief documentation comment attached to the declaration of
626 RK_Declaration = 0, ///< Refers to a declaration
632 /// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are
633 /// referring to. In the latter case, the declaration might be NULL
    [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 443 OS << *Results[I].Declaration;
525 /// \brief Retrieve the effective availability of the given declaration.
536 if (!Declaration) {
544 switch (getDeclAvailability(Declaration)) {
559 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Declaration))
563 CursorKind = getCursorKindForDecl(Declaration);
568 if (isa<ObjCInterfaceDecl>(Declaration))
570 else if (isa<ObjCProtocolDecl>(Declaration))
608 DeclarationName Name = R.Declaration->getDeclName();
  /external/mesa3d/src/gallium/auxiliary/util/
u_pstipple.c 193 * TGSI declaration transform callback.
205 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
211 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
216 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
300 decl.Declaration.File = TGSI_FILE_INPUT;
301 decl.Declaration.Interpolate = 1;
302 decl.Declaration.Semantic = 1;
313 decl.Declaration.File = TGSI_FILE_SAMPLER;
320 decl.Declaration.File = TGSI_FILE_TEMPORARY;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_pstipple.c 135 * TGSI declaration transform callback.
144 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
151 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
156 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
169 * TGSI immediate declaration transform callback.
236 decl.Declaration.File = TGSI_FILE_INPUT;
237 decl.Declaration.Interpolate = 1;
238 decl.Declaration.Semantic = 1;
249 decl.Declaration.File = TGSI_FILE_SAMPLER;
256 decl.Declaration.File = TGSI_FILE_TEMPORARY
    [all...]
draw_pipe_aaline.c 148 * TGSI declaration transform callback.
157 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
162 else if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
169 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
177 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
238 decl.Declaration.File = TGSI_FILE_INPUT;
240 decl.Declaration.Interpolate = 1;
241 decl.Declaration.Semantic = 1;
251 decl.Declaration.File = TGSI_FILE_SAMPLER;
258 decl.Declaration.File = TGSI_FILE_TEMPORARY
    [all...]
draw_pipe_aapoint.c 129 * TGSI declaration transform callback.
138 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
143 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
151 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
202 decl.Declaration.File = TGSI_FILE_INPUT;
204 decl.Declaration.Interpolate = 1;
205 decl.Declaration.Semantic = 1;
215 decl.Declaration.File = TGSI_FILE_TEMPORARY;
221 decl.Declaration.File = TGSI_FILE_TEMPORARY;
  /external/v8/src/crankshaft/
typing.h 72 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
  /external/clang/include/clang/AST/
TemplateBase.h 48 /// The template argument is a declaration that was provided for a pointer,
50 Declaration,
133 /// declaration, which is either an external declaration or a
134 /// template declaration.
137 DeclArg.Kind = Declaration;
242 /// \brief Retrieve the declaration for a declaration non-type
245 assert(getKind() == Declaration && "Unexpected kind");
250 assert(getKind() == Declaration && "Unexpected kind")
    [all...]
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
_htmlparser.py 30 Declaration,
109 cls = Declaration
  /external/v8/tools/
jsmin.py 38 around curly braces, so the declaration must be above the first use.
89 def Declaration(self, m):
294 self.Declaration,

Completed in 345 milliseconds

1 2 3 4 5