/external/clang/test/Index/ |
comment-cplus11-specific.cpp | 14 //! This is documentation for the typedef (which shows up). 15 typedef inner::Opaque Typedef; 16 // CHECK: (CXComment_Text Text=[ This is documentation for the typedef (which shows up).])))] 22 typedef inner::Opaque NoDocTypedef;
|
/external/clang/lib/Analysis/ |
FormatString.cpp | 775 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); 778 const IdentifierInfo *Identifier = Typedef->getIdentifier(); 797 QualType T = Typedef->getUnderlyingType(); 801 Typedef = cast<TypedefType>(T)->getDecl();
|
/frameworks/compile/slang/ |
slang_rs_export_element.cpp | 132 // Following the typedef chain to see whether it's an element name like 133 // rs_pixel_rgb or its alias (via typedef). 135 if (T->getTypeClass() != clang::Type::Typedef) {
|
slang_rs_context.cpp | 164 case clang::Decl::Typedef: {
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
ir.py | 233 node = self.typedef.cbasetype().get_rest() 682 class Typedef(genpyx.Typedef, Declarator): 684 return 'typedef ' + Declarator.cstr(self,l) #.strip() 850 self.typedefs = {} # map names to Typedef's 907 if verbose and node.marked and not node.typedef.marked: 908 print '3:', node.typedef.cstr(), '<--', node.cstr() 909 node.typedef.marked = node.typedef.marked or node.marked 1000 if isinstance(declarator, Typedef) [all...] |
lexer.py | 16 #from cparse import BasicType, Qualifier, StorageClass, Typedef, Ellipses, GCCBuiltin 36 self.lookup['typedef'] = host.Typedef()
|
cparse.py | 66 class Typedef(StorageClass): 69 def __init__(self,s='typedef'): 515 return self.find(Typedef) is not None 723 self.parse_error(lexer,"typedef in struct or union")
|
genpyx.py | 327 " this is the common part of pyxstr that gets called from both Declarator and Typedef " 343 #if isinstance(self,Typedef): 399 class Typedef(Declarator): 409 ## "typedef struct {...} foo;" => "typedef struct foo {...} foo;"
|
/external/clang/lib/AST/ |
Comment.cpp | 232 case Decl::Typedef: { 234 // If this is a typedef to something we consider a function, extract 263 // Is this a typedef for a function type?
|
TypePrinter.cpp | 173 case Type::Typedef: 841 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl()) 842 OS << Typedef->getIdentifier()->getName() << "::"; 876 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) { 877 assert(Typedef->getIdentifier() && "Typedef without identifier?"); 878 OS << Typedef->getIdentifier()->getName(); [all...] |
DeclBase.cpp | 507 case Typedef: [all...] |
ASTContext.cpp | 138 // If location of the typedef name is in a macro, it is because being 461 // Attach any tag type's documentation to its typedef if latter [all...] |
ASTImporter.cpp | 608 case Type::Typedef: [all...] |
/external/clang/lib/Sema/ |
SemaTemplateInstantiateDecl.cpp | 224 // Create the new typedef 225 TypedefNameDecl *Typedef; 227 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(), 230 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(), 233 Typedef->setInvalidDecl(); 235 // If the old typedef was the name for linkage purposes of an anonymous 236 // tag decl, re-establish that relationship for the new typedef. 242 newTag->setTypedefNameForAnonDecl(Typedef); 254 // If the typedef types are not identical, reject them. 255 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef); [all...] |
/external/clang/lib/Serialization/ |
ASTCommon.cpp | 154 case Decl::Typedef:
|
ASTReader.cpp | 211 typedef llvm::StringMap<std::pair<StringRef, bool /*IsUndef*/> > 213 typedef llvm::DenseMap<DeclarationName, SmallVector<NamedDecl *, 8> > [all...] |
/external/protobuf/editors/ |
proto.vim | 95 HiLink pbTypedef Typedef
|
/external/clang/tools/libclang/ |
CXType.cpp | 82 TKCASE(Typedef); 384 case Type::Typedef: 466 TKIND(Typedef);
|
CXCursor.cpp | 922 if (const TypedefType *Typedef = Ty->getAs<TypedefType>()) 923 return MakeCursorTypeRef(Typedef->getDecl(), Loc, TU); 1011 typedef llvm::DenseMap<CXCursor, unsigned> CXCursorSet_Impl; [all...] |
CIndex.cpp | 777 // If we have a function declared directly (without the use of a typedef), [all...] |
/external/chromium_org/tools/clang/plugins/ |
FindBadConstructs.cpp | 419 case Type::Typedef: {
|
/external/clang/lib/Frontend/ |
ASTConsumers.cpp | 36 typedef RecursiveASTVisitor<ASTPrinter> base; 416 case Decl::Typedef: 419 Out << "<typedef> " << *TD << '\n';
|
/system/media/camera/docs/ |
metadata_model.py | 35 Typedef: A node corresponding to a <typedef> element under <types>. 199 types: An iterable of all Typedef instances available in the graph. 263 def insert_type(self, type_name, type_selector="typedef", **kwargs): 269 type_selector: The selector for the type, e.g. 'typedef' 271 Args (if type_selector == 'typedef'): 275 metadata.insert_type('rectangle', 'typedef', 283 if type_selector != 'typedef': 288 self._types.append(Typedef(type_name, self, kwargs.get('languages'))) 616 class Typedef(Node) 1165 def typedef(self): member in class:Entry [all...] |
/external/chromium/testing/gmock/scripts/generator/cpp/ |
ast.py | 272 class Typedef(_GenericDeclaration): 693 # Keep the state whether we are currently handling a typedef or not. [all...] |
/external/clang/include/clang/AST/ |
Decl.h | 347 typedef Redeclarable<NamespaceDecl> redeclarable_base; 366 typedef redeclarable_base::redecl_iterator redecl_iterator; 642 typedef clang::StorageClass StorageClass; 673 typedef llvm::PointerUnion4<Stmt *, EvaluatedStmt *, 756 typedef Redeclarable<VarDecl> redeclarable_base; 766 typedef redeclarable_base::redecl_iterator redecl_iterator; [all...] |