HomeSort by relevance Sort by last modified time
    Searched defs:ScopeFlags (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 489 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
490 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
491 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
    [all...]
ParseOpenMP.cpp 118 unsigned ScopeFlags =
154 ScopeFlags |= Scope::OpenMPLoopDirectiveScope;
156 ScopeFlags |= Scope::OpenMPSimdDirectiveScope;
157 ParseScope OMPDirectiveScope(this, ScopeFlags);
ParseStmt.cpp 821 unsigned ScopeFlags) {
826 ParseScope CompoundScope(this, ScopeFlags);
    [all...]
Parser.cpp 352 void Parser::EnterScope(unsigned ScopeFlags) {
355 N->Init(getCurScope(), ScopeFlags);
358 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
379 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
381 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags,
386 CurScope->setFlags(ScopeFlags);
    [all...]
ParseExprCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
Scope.h 40 /// ScopeFlags - These are bitfields that are or'd together when creating a
42 enum ScopeFlags {
126 /// Flags - This contains a set of ScopeFlags, which indicates how the scope
192 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag)
194 Init(Parent, ScopeFlags);

Completed in 62 milliseconds