OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScopeFlags
(Results
1 - 8
of
8
) 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
{
105
/// Flags - This contains a set of
ScopeFlags
, which indicates how the scope
159
Scope(Scope *Parent, unsigned
ScopeFlags
, DiagnosticsEngine &Diag)
161
Init(Parent,
ScopeFlags
);
/external/clang/lib/Parse/
ParseStmt.cpp
718
unsigned
ScopeFlags
) {
723
ParseScope CompoundScope(this,
ScopeFlags
);
[
all
...]
ParseOpenMP.cpp
87
const unsigned
ScopeFlags
= Scope::FnScope | Scope::DeclScope;
137
ParseScope OMPDirectiveScope(this,
ScopeFlags
);
ParseCXXInlineMethods.cpp
490
unsigned
ScopeFlags
= Scope::ClassScope|Scope::DeclScope;
491
ParseScope ClassScope(this,
ScopeFlags
, !AlreadyHasClassScope);
492
ParseScopeFlags ClassScopeFlags(this,
ScopeFlags
, AlreadyHasClassScope);
Parser.cpp
365
void Parser::EnterScope(unsigned
ScopeFlags
) {
368
N->Init(getCurScope(),
ScopeFlags
);
371
Actions.CurScope = new Scope(getCurScope(),
ScopeFlags
, Diags);
393
/// Set the flags for the current scope to
ScopeFlags
. If ManageFlags is false,
395
Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned
ScopeFlags
,
400
CurScope->setFlags(
ScopeFlags
);
[
all
...]
ParseExprCXX.cpp
[
all
...]
ParseDecl.cpp
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
665
/// scope is determined by
ScopeFlags
. Objects of this type should
678
//
ScopeFlags
, but only when ManageScope is true (the default). If
680
ParseScope(Parser *Self, unsigned
ScopeFlags
, bool ManageScope = true)
683
Self->EnterScope(
ScopeFlags
);
703
void EnterScope(unsigned
ScopeFlags
);
717
ParseScopeFlags(Parser *Self, unsigned
ScopeFlags
, bool ManageFlags = true);
[
all
...]
Completed in 37 milliseconds