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

/external/jmonkeyengine/engine/src/core/checkers/quals/
H A DDependent.java19 * private @Nullable @Dependent(result=NonNull.class, when=ThreadSafe.class)
26 public @interface Dependent { interface
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DWorkerScriptController.cpp136 V8DOMWrapper::associateObjectWithWrapper<V8WorkerGlobalScope>(PassRefPtr<WorkerGlobalScope>(m_workerGlobalScope), contextType, jsWorkerGlobalScope, isolate(), WrapperConfiguration::Dependent); member in class:WebCore::WrapperConfiguration
H A DV8WindowShell.cpp329 V8DOMWrapper::associateObjectWithWrapper<V8Window>(PassRefPtr<DOMWindow>(window), &V8Window::wrapperTypeInfo, windowWrapper, m_isolate, WrapperConfiguration::Dependent); member in class:WebCore::WrapperConfiguration
H A DWrapperTypeInfo.h194 Dependent, Independent enumerator in enum:WebCore::WrapperConfiguration::Lifetime
/external/clang/lib/AST/
H A DTemplateBase.cpp530 bool &Dependent,
539 Dependent = Dependent || Info[i].getArgument().isDependent();
574 bool &Dependent,
577 Base::initializeFrom(Info, Dependent, InstantiationDependent,
528 initializeFrom( const TemplateArgumentListInfo &Info, bool &Dependent, bool &InstantiationDependent, bool &ContainsUnexpandedParameterPack) argument
572 initializeFrom(SourceLocation TemplateKWLoc, const TemplateArgumentListInfo &Info, bool &Dependent, bool &InstantiationDependent, bool &ContainsUnexpandedParameterPack) argument
H A DDeclBase.cpp1497 bool Dependent = isDependentContext(); local
1498 if (Dependent)
1503 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
1515 void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) { argument
1520 if (Dependent)
1526 Dependent = Next.getInt();
H A DDeclCXX.cpp100 bool Dependent) {
104 R->DefinitionData = new (C) struct LambdaDefinitionData(R, Info, Dependent);
98 CreateLambda(const ASTContext &C, DeclContext *DC, TypeSourceInfo *Info, SourceLocation Loc, bool Dependent) argument
H A DExprCXX.cpp312 bool Dependent = false; local
316 Dependent,
320 if (Dependent) {
377 bool Dependent = true; local
382 Dependent,
1125 bool Dependent = true; local
1129 Dependent,
1253 // Dependent
H A DItaniumMangle.cpp667 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
668 assert(Dependent && "Not a dependent template name?");
669 if (const IdentifierInfo *Id = Dependent->getIdentifier())
672 mangleOperatorName(Dependent->getOperator(), UnknownArity);
1544 DependentTemplateName *Dependent = Template.getAsDependentTemplateName(); local
1545 assert(Dependent && "Unknown template name kind?");
1546 manglePrefix(Dependent->getQualifier());
1604 const DependentTemplateName *Dependent = TN.getAsDependentTemplateName(); local
1605 assert(Dependent->isIdentifier());
1609 mangleUnresolvedPrefix(Dependent
[all...]
H A DExpr.cpp385 bool Dependent = false; local
389 Dependent,
1334 bool Dependent = false; local
1338 Dependent,
1481 return "Dependent";
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp353 const SymbolRef Dependent) {
362 dependencies->push_back(Dependent);
352 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(0), Dependent(false) {}
85 Dependent(DC->isDependentContext()) {
125 bool isDependent() const { return Dependent; }
144 bool Dependent; member in struct:__anon16248::EffectiveContext
H A DSemaTemplateDeduction.cpp3764 bool Dependent = local
3767 SemaRef.Context.getAutoType(Dependent ? QualType() : Replacement,
3769 Dependent);
H A DSemaExprCXX.cpp3580 bool Dependent = false; local
3583 Dependent = true;
3589 if (!Dependent)
H A DTreeTransform.h6134 bool Dependent = false; local
6149 Dependent = true;
6162 if (!Dependent)
H A DSemaExpr.cpp4353 bool Dependent = false; local
4355 Dependent = true;
4357 Dependent = true;
4359 if (Dependent) {
9755 bool Dependent = ArgTy->isDependentType(); local
9761 if (!Dependent && !ArgTy->isRecordType())
9767 if (!Dependent
/external/clang/include/clang/AST/
H A DDeclCXX.h517 LambdaDefinitionData(CXXRecordDecl *D, TypeSourceInfo *Info, bool Dependent) argument
518 : DefinitionData(D), Dependent(Dependent), NumCaptures(0),
533 unsigned Dependent : 1; member in struct:clang::CXXRecordDecl::LambdaDefinitionData
1590 return isLambda() && getLambdaData().Dependent;
H A DType.h1178 /// Dependent - Whether this type is a dependent type (C++ [temp.dep.type]).
1179 unsigned Dependent : 1;
1364 Type(TypeClass tc, QualType canon, bool Dependent, argument
1370 TypeBits.Dependent = Dependent;
1371 TypeBits.InstantiationDependent = Dependent || InstantiationDependent;
1382 TypeBits.Dependent = D;
1613 bool isDependentType() const { return TypeBits.Dependent; }
1840 : Type(Builtin, QualType(), /*Dependent=*/(K == Dependent),
3905 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, QualType Canonical, bool Dependent, bool InstantiationDependent, bool VariablyModified, bool ContainsUnexpandedParameterPack) argument
[all...]

Completed in 1120 milliseconds