OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeclKind
(Results
1 - 3
of
3
) sorted by null
/external/clang/include/clang/AST/
DeclBase.h
224
///
DeclKind
- This indicates which class this is.
225
unsigned
DeclKind
: 8;
280
Loc(L),
DeclKind
(DK), InvalidDecl(0),
290
: NextDeclInContext(0),
DeclKind
(DK), InvalidDecl(0),
313
Kind getKind() const { return static_cast<Kind>(
DeclKind
); }
807
///
DeclKind
- This indicates which class this is.
808
unsigned
DeclKind
: 8;
845
:
DeclKind
(K), ExternalLexicalStorage(false),
853
return static_cast<Decl::Kind>(
DeclKind
);
892
return
DeclKind
== Decl::Block
[
all
...]
/external/clang/lib/AST/
DeclBase.cpp
45
switch (
DeclKind
) {
64
switch (
DeclKind
) {
416
unsigned Decl::getIdentifierNamespaceForKind(Kind
DeclKind
) {
417
switch (
DeclKind
) {
721
if (
DeclKind
== Decl::Enum)
723
else if (
DeclKind
== Decl::LinkageSpec)
731
while (DC->
DeclKind
!= Decl::TranslationUnit) {
732
if (DC->
DeclKind
== Decl::LinkageSpec)
751
switch (
DeclKind
) {
776
if (
DeclKind
>= Decl::firstTag && DeclKind <= Decl::lastTag)
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp
57
unsigned
DeclKind
= D->getKind();
59
CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(
DeclKind
);
64
checkers = &CachedDeclCheckersMap[
DeclKind
];
Completed in 200 milliseconds