OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isDependent
(Results
1 - 8
of
8
) sorted by null
/external/clang/lib/AST/
TemplateName.cpp
84
bool TemplateName::
isDependent
() const {
91
// it without the
isDependent
() checking.
108
return
isDependent
();
TemplateBase.cpp
87
bool TemplateArgument::
isDependent
() const {
96
return getAsTemplate().
isDependent
();
118
if (P->
isDependent
())
539
Dependent = Dependent || Info[i].getArgument().
isDependent
();
NestedNameSpecifier.cpp
49
assert((!Prefix || Prefix->
isDependent
()) && "Prefix must be dependent");
162
bool NestedNameSpecifier::
isDependent
() const {
/external/clang/lib/Sema/
SemaCXXScopeSpec.cpp
82
if (NNS->
isDependent
()) {
160
return SS.getScopeRep()->
isDependent
();
170
assert(NNS->
isDependent
() && "Only dependent nested-name-specifier allowed");
317
bool
isDependent
= false;
323
isDependent
= ObjectType->isDependentType();
328
isDependent
= isDependentScopeSpecifier(SS);
344
} else if (
isDependent
) {
404
bool
isDependent
= false;
410
isDependent
= ObjectType->isDependentType();
415
isDependent
= isDependentScopeSpecifier(SS)
[
all
...]
SemaAccess.cpp
125
bool
isDependent
() const { return Dependent; }
411
if (EC.
isDependent
()) {
472
if (!EC.
isDependent
())
505
if (EC.
isDependent
() && MightInstantiateTo(S, *I, Friend))
535
if (EC.
isDependent
() && MightInstantiateTo(S, FTD, Friend))
761
if (EC.
isDependent
() && MightInstantiateTo(ECRecord, NamingClass))
[
all
...]
SemaExprCXX.cpp
108
bool
isDependent
= false;
144
isDependent
= false;
156
isDependent
= isDependentScopeSpecifier(PrefixSS);
159
isDependent
= SearchType->isDependentType();
162
isDependent
= LookupCtx && LookupCtx->isDependentContext();
175
isDependent
= SearchType->isDependentType();
176
assert((
isDependent
|| !SearchType->isIncompleteType()) &&
284
if (
isDependent
) {
[
all
...]
SemaTemplate.cpp
254
bool
isDependent
= false;
260
isDependent
= ObjectType->isDependentType();
261
assert((
isDependent
|| !ObjectType->isIncompleteType() ||
274
isDependent
= isDependentScopeSpecifier(SS);
303
} else if (
isDependent
&& (!S || ObjectType.isNull())) {
316
if (Found.empty() && !
isDependent
) {
360
if (
isDependent
)
[
all
...]
/external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp
[
all
...]
Completed in 123 milliseconds