Home
last modified time | relevance | path

Searched refs:Dcl (Results 1 – 24 of 24) sorted by relevance

/external/clang/lib/ARCMigrate/
DTransAutoreleasePool.cpp44 Decl *Dcl; member in __anonbc8f1e4f0111::ReleaseCollector
49 : Dcl(D), Releases(releases) { } in ReleaseCollector()
58 if (DE->getDecl() == Dcl) in VisitObjCMessageExpr()
94 clearRefsIn(info.Dcl, info.Refs); in ~AutoreleasePoolRewriter()
115 clearUnavailableDiags(info.Dcl); in ~AutoreleasePoolRewriter()
116 Pass.TA.removeStmt(info.Dcl); in ~AutoreleasePoolRewriter()
175 info.Dcl = DclS; in VisitCompoundStmt()
420 DeclStmt *Dcl; member
424 PoolVarInfo() : Dcl(nullptr) { } in PoolVarInfo()
DTransGCAttrs.cpp118 Attr.Dcl = D; in handleAttr()
187 if (Attr.FullyMigratable && Attr.Dcl) { in errorForGCAttrsOnNonObjC()
345 if (Attr.Dcl) { in dumpGCAttrs()
347 Attr.Dcl->dump(); in dumpGCAttrs()
DTransforms.cpp228 ValueDecl *Dcl; member in __anon6f7c78620111::ReferenceCollector
233 : Dcl(D), Refs(refs) { } in ReferenceCollector()
236 if (E->getDecl() == Dcl) in VisitDeclRefExpr()
DTransforms.h91 Decl *Dcl; member
/external/clang/tools/libclang/
DCIndexHigh.cpp49 const Decl *Dcl; member
60 Dcl = getCanonical(D); in FindFileIdRefVisitData()
61 getTopOverriddenMethods(TU, Dcl, TopMethods); in FindFileIdRefVisitData()
102 if (D == Dcl) in isHit()
222 const Decl *Dcl = cxcursor::getCursorDecl(declCursor); in findIdRefsInFile() local
223 if (!Dcl) in findIdRefsInFile()
226 FindFileIdRefVisitData data(TU, FID, Dcl, in findIdRefsInFile()
230 if (const DeclContext *DC = Dcl->getParentFunctionOrMethod()) { in findIdRefsInFile()
DIndexing.cpp813 return Entity->IndexCtx->getClientEntity(Entity->Dcl); in clang_index_getClientEntity()
821 Entity->IndexCtx->setClientEntity(Entity->Dcl, client); in clang_index_setClientEntity()
DCXIndexDataConsumer.h51 const NamedDecl *Dcl; member
DCXIndexDataConsumer.cpp995 const NamedDecl *BaseD = BaseList.BaseEntities[i].Dcl; in handleCXXRecordDecl()
1148 EntityInfo.Dcl = D; in getEntityInfo()
/external/clang/include/clang/Serialization/
DASTWriter.h313 const Decl *Dcl; member
322 DeclUpdate(unsigned Kind) : Kind(Kind), Dcl(nullptr) {} in DeclUpdate()
323 DeclUpdate(unsigned Kind, const Decl *Dcl) : Kind(Kind), Dcl(Dcl) {} in DeclUpdate() argument
336 const Decl *getDecl() const { return Dcl; } in getDecl()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp863 static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl, in CheckConstexprDeclStmt() argument
891 << isa<CXXConstructorDecl>(Dcl); in CheckConstexprDeclStmt()
905 << isa<CXXConstructorDecl>(Dcl); in CheckConstexprDeclStmt()
924 << isa<CXXConstructorDecl>(Dcl) in CheckConstexprDeclStmt()
932 isa<CXXConstructorDecl>(Dcl))) in CheckConstexprDeclStmt()
938 << isa<CXXConstructorDecl>(Dcl); in CheckConstexprDeclStmt()
946 << isa<CXXConstructorDecl>(Dcl); in CheckConstexprDeclStmt()
960 << isa<CXXConstructorDecl>(Dcl); in CheckConstexprDeclStmt()
977 const FunctionDecl *Dcl, in CheckConstexprCtorInitializer() argument
998 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init); in CheckConstexprCtorInitializer()
[all …]
DSemaDeclObjC.cpp2005 Decl *Dcl = Decls[i]; in ActOnFinishObjCImplementation() local
2006 if (!Dcl) in ActOnFinishObjCImplementation()
2008 if (Dcl->getDeclContext()->isFileContext()) in ActOnFinishObjCImplementation()
2009 Dcl->setTopLevelDeclInObjCContainer(); in ActOnFinishObjCImplementation()
2010 DeclsInGroup.push_back(Dcl); in ActOnFinishObjCImplementation()
DSemaDecl.cpp4790 Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg()); in ActOnDeclarator() local
4793 Dcl && Dcl->getDeclContext()->isFileContext()) in ActOnDeclarator()
4794 Dcl->setTopLevelDeclInObjCContainer(); in ActOnDeclarator()
4796 return Dcl; in ActOnDeclarator()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp270 void RewriteInterfaceDecl(ObjCInterfaceDecl *Dcl);
271 void RewriteImplementationDecl(Decl *Dcl);
278 void RewriteCategoryDecl(ObjCCategoryDecl *Dcl);
279 void RewriteProtocolDecl(ObjCProtocolDecl *Dcl);
288 void RewriteObjCQualifiedInterfaceTypes(Decl *Dcl);
2105 void RewriteObjC::RewriteObjCQualifiedInterfaceTypes(Decl *Dcl) { in RewriteObjCQualifiedInterfaceTypes() argument
2109 if (VarDecl *VD = dyn_cast<VarDecl>(Dcl)) { in RewriteObjCQualifiedInterfaceTypes()
2113 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Dcl)) { in RewriteObjCQualifiedInterfaceTypes()
2124 else if (FieldDecl *FD = dyn_cast<FieldDecl>(Dcl)) { in RewriteObjCQualifiedInterfaceTypes()
DRewriteModernObjC.cpp322 void RewriteInterfaceDecl(ObjCInterfaceDecl *Dcl);
323 void RewriteImplementationDecl(Decl *Dcl);
330 void RewriteCategoryDecl(ObjCCategoryDecl *Dcl);
331 void RewriteProtocolDecl(ObjCProtocolDecl *Dcl);
340 void RewriteObjCQualifiedInterfaceTypes(Decl *Dcl);
2190 void RewriteModernObjC::RewriteObjCQualifiedInterfaceTypes(Decl *Dcl) { in RewriteObjCQualifiedInterfaceTypes() argument
2194 if (VarDecl *VD = dyn_cast<VarDecl>(Dcl)) { in RewriteObjCQualifiedInterfaceTypes()
2198 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Dcl)) { in RewriteObjCQualifiedInterfaceTypes()
2209 else if (FieldDecl *FD = dyn_cast<FieldDecl>(Dcl)) { in RewriteObjCQualifiedInterfaceTypes()
2213 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(Dcl)) { in RewriteObjCQualifiedInterfaceTypes()
/external/clang/lib/Parse/
DParseExprCXX.cpp1808 DeclResult Dcl = Actions.ActOnCXXConditionDeclaration(getCurScope(), in ParseCXXCondition() local
1810 if (Dcl.isInvalid()) in ParseCXXCondition()
1812 Decl *DeclOut = Dcl.get(); in ParseCXXCondition()
DParseObjc.cpp2271 P.Diag(Dcl->getLocStart(), diag::note_objc_container_start) in ~ObjCImplParsingDataRAII()
2281 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl); in finish()
DParseExpr.cpp1694 CurParsedObjCImpl ? CurParsedObjCImpl->Dcl in ParsePostfixExpressionSuffix()
/external/clang/include/clang/Parse/
DParser.h1346 Decl *Dcl; member
1352 : P(parser), Dcl(D), HasCFunction(false) { in ObjCImplParsingDataRAII()
/external/clang/include/clang/Sema/
DSema.h1764 void ActOnInitializerError(Decl *Dcl);
4195 void ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace);
5092 void ActOnCXXEnterDeclInitializer(Scope *S, Decl *Dcl);
5096 void ActOnCXXExitDeclInitializer(Scope *S, Decl *Dcl);
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D758e8a07a1242bb51c1cd0df3c3fc1f5.000134ae.honggfuzz.cov241 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
461 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
D31069aefb9833a50edee27d7402d2c72.0001c486.honggfuzz.cov215 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
435 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D758e8a07a1242bb51c1cd0df3c3fc1f5.000134ae.honggfuzz.cov241 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
461 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
D31069aefb9833a50edee27d7402d2c72.0001c486.honggfuzz.cov215 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
435 …�TP�P���ƄlK�,!�#,�� ��!����so^L0^���{��hiE��=|h4]ö��2�Va'�B� ����<g\Dcl�3_���3��ٙ��Sg�Oo�P…
/external/clang/lib/AST/
DExprConstant.cpp9483 if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) { in CheckICE() local
9484 if (!Dcl->getType()->isIntegralOrEnumerationType()) in CheckICE()
9490 if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE()) in CheckICE()