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 584 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
585 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
586 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
    [all...]
ParseOpenMP.cpp 176 unsigned ScopeFlags =
266 ScopeFlags |= Scope::OpenMPLoopDirectiveScope;
268 ScopeFlags |= Scope::OpenMPSimdDirectiveScope;
269 ParseScope OMPDirectiveScope(this, ScopeFlags);
    [all...]
ParseStmt.cpp 842 unsigned ScopeFlags) {
847 ParseScope CompoundScope(this, ScopeFlags);
    [all...]
Parser.cpp 373 void Parser::EnterScope(unsigned ScopeFlags) {
376 N->Init(getCurScope(), ScopeFlags);
379 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
400 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
402 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags,
407 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 {
132 /// Flags - This contains a set of ScopeFlags, which indicates how the scope
200 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag)
202 Init(Parent, ScopeFlags);

Completed in 78 milliseconds