Searched defs:Dependent (Results 1 - 16 of 16) sorted by relevance

/external/clang/lib/AST/
H A DTemplateBase.cpp536 bool &Dependent,
545 Dependent = Dependent || Info[i].getArgument().isDependent();
580 bool &Dependent,
583 Base::initializeFrom(Info, Dependent, InstantiationDependent,
534 initializeFrom( const TemplateArgumentListInfo &Info, bool &Dependent, bool &InstantiationDependent, bool &ContainsUnexpandedParameterPack) argument
578 initializeFrom(SourceLocation TemplateKWLoc, const TemplateArgumentListInfo &Info, bool &Dependent, bool &InstantiationDependent, bool &ContainsUnexpandedParameterPack) argument
H A DDeclBase.cpp1572 bool Dependent = isDependentContext(); local
1573 if (Dependent)
1578 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
1590 void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) { argument
1595 if (Dependent)
1601 Dependent = Next.getInt();
H A DDeclCXX.cpp113 bool Dependent, bool IsGeneric,
120 new (C) struct LambdaDefinitionData(R, Info, Dependent, IsGeneric,
111 CreateLambda(const ASTContext &C, DeclContext *DC, TypeSourceInfo *Info, SourceLocation Loc, bool Dependent, bool IsGeneric, LambdaCaptureDefault CaptureDefault) argument
H A DExprCXX.cpp373 bool Dependent = false; local
377 Dependent,
381 if (Dependent) {
438 bool Dependent = true; local
443 Dependent,
1207 bool Dependent = true; local
1211 Dependent,
1330 // Dependent
H A DItaniumMangle.cpp656 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
657 assert(Dependent && "Not a dependent template name?");
658 if (const IdentifierInfo *Id = Dependent->getIdentifier())
661 mangleOperatorName(Dependent->getOperator(), UnknownArity);
1539 DependentTemplateName *Dependent = Template.getAsDependentTemplateName(); local
1540 assert(Dependent && "Unknown template name kind?");
1541 manglePrefix(Dependent->getQualifier());
1599 const DependentTemplateName *Dependent = TN.getAsDependentTemplateName(); local
1600 assert(Dependent->isIdentifier());
1604 mangleUnresolvedPrefix(Dependent
[all...]
H A DExpr.cpp360 bool Dependent = false; local
364 Dependent,
1373 bool Dependent = false; local
1377 Dependent,
1526 return "Dependent";
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DWrapperTypeInfo.h82 Dependent, enumerator in enum:blink::WrapperTypeInfo::Lifetime
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp348 const SymbolRef Dependent) {
357 dependencies->push_back(Dependent);
347 addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent) argument
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp146 namespace Dependent { namespace
/external/clang/lib/Sema/
H A DSemaAccess.cpp81 EffectiveContext() : Inner(nullptr), Dependent(false) {}
85 Dependent(DC->isDependentContext()) {
125 bool isDependent() const { return Dependent; }
144 bool Dependent; member in struct:__anon17997::EffectiveContext
H A DSemaOpenMP.cpp1275 bool Dependent() const;
1290 bool OpenMPIterationSpaceChecker::Dependent() const { function in class:__anon18074::OpenMPIterationSpaceChecker
1684 if (ISC.Dependent())
H A DSemaTemplateDeduction.cpp3930 bool Dependent = local
3933 SemaRef.Context.getAutoType(Dependent ? QualType() : Replacement,
3935 Dependent);
H A DTreeTransform.h6265 bool Dependent = false; local
6280 Dependent = true;
6293 if (!Dependent)
H A DSemaExpr.cpp4501 bool Dependent = false; local
4503 Dependent = true;
4505 Dependent = true;
4507 if (Dependent) {
10186 bool Dependent = ArgTy->isDependentType(); local
10192 if (!Dependent && !ArgTy->isRecordType())
10198 if (!Dependent
/external/clang/include/clang/AST/
H A DDeclCXX.h534 bool Dependent, bool IsGeneric,
536 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
551 unsigned Dependent : 1; member in struct:clang::CXXRecordDecl::LambdaDefinitionData
1673 return isLambda() && getLambdaData().Dependent;
533 LambdaDefinitionData(CXXRecordDecl *D, TypeSourceInfo *Info, bool Dependent, bool IsGeneric, LambdaCaptureDefault CaptureDefault) argument
H A DType.h1177 /// Dependent - Whether this type is a dependent type (C++ [temp.dep.type]).
1178 unsigned Dependent : 1;
1363 Type(TypeClass tc, QualType canon, bool Dependent, argument
1369 TypeBits.Dependent = Dependent;
1370 TypeBits.InstantiationDependent = Dependent || InstantiationDependent;
1381 TypeBits.Dependent = D;
1612 bool isDependentType() const { return TypeBits.Dependent; }
1843 : Type(Builtin, QualType(), /*Dependent=*/(K == Dependent),
3950 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, QualType Canonical, bool Dependent, bool InstantiationDependent, bool VariablyModified, bool ContainsUnexpandedParameterPack) argument
[all...]

Completed in 5590 milliseconds