OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeclRefExprBits
(Results
1 - 4
of
4
) sorted by null
/external/clang/include/clang/AST/
Expr.h
734
///
DeclRefExprBits
.HasQualifier:
737
///
DeclRefExprBits
.HasFoundDecl:
741
///
DeclRefExprBits
.HasExplicitTemplateArgs:
768
bool hasFoundDecl() const { return
DeclRefExprBits
.HasFoundDecl; }
804
DeclRefExprBits
.HasQualifier = 0;
805
DeclRefExprBits
.HasExplicitTemplateArgs = 0;
806
DeclRefExprBits
.HasFoundDecl = 0;
[
all
...]
Stmt.h
200
DeclRefExprBitfields
DeclRefExprBits
;
[
all
...]
/external/clang/lib/Serialization/
ASTReaderStmt.cpp
309
E->
DeclRefExprBits
.HasQualifier = Record[Idx++];
310
E->
DeclRefExprBits
.HasFoundDecl = Record[Idx++];
311
E->
DeclRefExprBits
.HasExplicitTemplateArgs = Record[Idx++];
[
all
...]
/external/clang/lib/AST/
Expr.cpp
311
DeclRefExprBits
.HasQualifier = QualifierLoc ? 1 : 0;
314
DeclRefExprBits
.HasFoundDecl = FoundD ? 1 : 0;
317
DeclRefExprBits
.HasExplicitTemplateArgs = TemplateArgs ? 1 : 0;
[
all
...]
Completed in 158 milliseconds