OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getLexicalParent
(Results
1 - 4
of
4
) sorted by null
/external/clang/include/clang/AST/
DeclBase.h
865
///
getLexicalParent
- Returns the containing lexical DeclContext. May be
872
/// //
getLexicalParent
() == translation unit
874
DeclContext *
getLexicalParent
() {
877
const DeclContext *
getLexicalParent
() const {
878
return const_cast<DeclContext*>(this)->
getLexicalParent
();
[
all
...]
/external/clang/lib/AST/
DeclBase.cpp
685
getLexicalParent
()->getRedeclContext()->isRecord())
686
return
getLexicalParent
();
714
return
getLexicalParent
()->isDependentContext();
[
all
...]
/external/clang/lib/Parse/
ParseTemplate.cpp
[
all
...]
/external/clang/lib/Sema/
SemaDecl.cpp
722
DC = DC->
getLexicalParent
();
732
while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->
getLexicalParent
()))
743
return DC->
getLexicalParent
()->
getLexicalParent
();
745
return DC->
getLexicalParent
();
[
all
...]
Completed in 17 milliseconds