HomeSort by relevance Sort by last modified time
    Searched refs:CurScope (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 154 ScopeTy *CurScope;
162 ScopedHashTable() : CurScope(0) {}
163 ScopedHashTable(AllocatorTy A) : CurScope(0), Allocator(A) {}
165 assert(CurScope == 0 && TopLevelMap.empty() && "Scope imbalance!");
188 insertIntoScope(CurScope, Key, Val);
202 ScopeTy *getCurScope() { return CurScope; }
203 const ScopeTy *getCurScope() const { return CurScope; }
223 PrevScope = HT.CurScope;
224 HT.CurScope = this;
230 assert(HT.CurScope == this && "Scope imbalance!")
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 202 void Sema::addLambdaParameters(CXXMethodDecl *CallOperator, Scope *CurScope) {
209 if (CurScope && Param->getIdentifier()) {
210 CheckShadow(CurScope, Param);
212 PushOnScopeChains(Param, CurScope);
219 Scope *CurScope) {
223 if (Scope *TmplScope = CurScope->getTemplateParamParent())
260 MethodTyInfo = GetTypeForDeclarator(ParamInfo, CurScope);
281 ProcessDeclAttributes(CurScope, Method, ParamInfo);
284 PushDeclContext(CurScope, Method);
357 LookupName(R, CurScope);
    [all...]
SemaStmt.cpp 332 Stmt *SubStmt, Scope *CurScope) {
    [all...]
SemaExprMember.cpp 98 Scope *CurScope,
229 switch (ClassifyImplicitMemberAccess(*this, CurScope, R)) {
    [all...]
SemaExpr.cpp     [all...]
SemaLookup.cpp     [all...]
  /external/clang/lib/Parse/
Parser.cpp 40 Actions.CurScope = 0;
312 Actions.CurScope = N;
314 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
328 Actions.CurScope = OldScope->getParent();
340 : CurScope(ManageFlags ? Self->getCurScope() : 0) {
341 if (CurScope) {
342 OldFlags = CurScope->getFlags();
343 CurScope->setFlags(ScopeFlags);
350 if (CurScope)
351 CurScope->setFlags(OldFlags)
    [all...]
ParseStmt.cpp 496 Actions.ProcessDeclAttributeList(Actions.CurScope, LD, Attrs);
    [all...]
ParseDecl.cpp 802 Actions.ActOnReenterTemplateScope(Actions.CurScope, D);
808 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/clang/include/clang/Parse/
Parser.h 695 Scope *CurScope;
    [all...]

Completed in 140 milliseconds