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

  /external/clang/include/clang/Sema/
Scope.h 32 /// ScopeFlags - These are bitfields that are or'd together when creating a
34 enum ScopeFlags {
101 /// Flags - This contains a set of ScopeFlags, which indicates how the scope
159 Scope(Scope *Parent, unsigned ScopeFlags, Diagnostic &Diag)
161 Init(Parent, ScopeFlags);
  /external/clang/lib/Parse/
ParseStmt.cpp 684 unsigned ScopeFlags) {
691 ParseScope CompoundScope(this, ScopeFlags);
    [all...]
ParseCXXInlineMethods.cpp 433 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope|Scope::ThisScope;
434 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
435 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
Parser.cpp 325 void Parser::EnterScope(unsigned ScopeFlags) {
328 N->Init(getCurScope(), ScopeFlags);
331 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
353 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
355 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags,
360 CurScope->setFlags(ScopeFlags);
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 526 /// scope is determined by ScopeFlags. Objects of this type should
539 // ScopeFlags, but only when ManageScope is true (the default). If
541 ParseScope(Parser *Self, unsigned ScopeFlags, bool ManageScope = true)
544 Self->EnterScope(ScopeFlags);
564 void EnterScope(unsigned ScopeFlags);
577 ParseScopeFlags(Parser *Self, unsigned ScopeFlags, bool ManageFlags = true);
    [all...]

Completed in 25 milliseconds