Searched refs:decl_type (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
H A DRedeclarable.h24 template<typename decl_type>
30 struct DeclLink : public llvm::PointerIntPair<decl_type *, 1, bool> {
31 DeclLink(decl_type *D, bool isLatest)
32 : llvm::PointerIntPair<decl_type *, 1, bool>(D, isLatest) { }
34 typedef llvm::PointerIntPair<decl_type *, 1, bool> base_type;
38 decl_type *getNext() const { return base_type::getPointer(); }
42 PreviousDeclLink(decl_type *D) : DeclLink(D, false) { }
46 LatestDeclLink(decl_type *D) : DeclLink(D, true) { }
63 Redeclarable() : RedeclLink(LatestDeclLink(static_cast<decl_type*>(this))) { }
67 decl_type *getPreviousDec
[all...]
H A DDecl.h3296 template<typename decl_type>
3297 void Redeclarable<decl_type>::setPreviousDeclaration(decl_type *PrevDecl) {
3301 decl_type *First;
3308 llvm::cast<decl_type>(PrevDecl->getMostRecentDecl()));
3313 First = static_cast<decl_type*>(this);
3317 First->RedeclLink = LatestDeclLink(static_cast<decl_type*>(this));
3318 if (NamedDecl *ND = dyn_cast<NamedDecl>(static_cast<decl_type*>(this)))
H A DDeclTemplate.h584 template <class decl_type> friend class RedeclarableTemplate;
/external/libsepol/tests/
H A Dtest-deps.c135 * decl_type name of the unique type found in the module's global
138 static void do_deps_modreq_global(int req_met, int b, char *policy, char *decl_type) argument
173 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
217 * decl_type name of the unique type found in the module's global
220 static void do_deps_modreq_opt(int req_met, int ret_val, int b, char *policy, char *decl_type) argument
252 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
/external/clang/test/SemaCXX/
H A Dcxx98-compat.cpp110 decltype(const_expr) decl_type = 0; // expected-warning {{'decltype' type specifier is incompatible with C++98}}
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp1949 const struct glsl_type *decl_type; local
2013 decl_type = this->type->specifier->glsl_type(& type_name, state);
2020 if (decl_type != NULL) {
2034 if ((decl_type == NULL) || decl_type->is_void()) {
2048 var_type = process_array_type(&loc, decl_type, decl->array_size,
2051 var_type = decl_type;
3068 const glsl_type *decl_type = local
3073 const struct glsl_type *field_type = decl_type;
3076 field_type = process_array_type(&loc, decl_type, dec
[all...]

Completed in 165 milliseconds