HomeSort by relevance Sort by last modified time
    Searched defs:Dependent (Results 1 - 12 of 12) sorted by null

  /external/jmonkeyengine/engine/src/core/checkers/quals/
Dependent.java 19 * private @Nullable @Dependent(result=NonNull.class, when=ThreadSafe.class)
26 public @interface Dependent {
  /external/llvm/include/llvm/Analysis/
LoopDependenceAnalysis.h 46 enum DependenceResult { Independent = 0, Dependent = 1, Unknown = 2 };
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 146 namespace Dependent {
  /external/clang/lib/AST/
ExprCXX.cpp 136 // The type-to-delete may not be a pointer if it's a dependent type.
265 // Determine whether this expression is type-dependent.
281 // If we have explicit template arguments, check for dependent
285 bool Dependent = false;
289 Dependent,
293 if (Dependent) {
350 bool Dependent = true;
355 Dependent,
    [all...]
DeclBase.cpp 754 // Friend function declarations are dependent if their *lexical*
755 // context is dependent.
    [all...]
Expr.cpp 148 // An id-expression is type-dependent if it contains:
153 // An identifier is value-dependent if it is:
155 // (TD) - an identifier that was declared with dependent type
156 // (VD) - a name declared with a dependent type,
166 // (TD) - a conversion-function-id that specifies a dependent type
189 // initialized with an expression that is value-dependent.
191 // expression that is value-dependent [C++11].
194 // expression that is value-dependent [C++11]
237 // An id-expression is type-dependent if it contains:
242 // An identifier is value-dependent if it is
    [all...]
ItaniumMangle.cpp 639 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
640 assert(Dependent && "Not a dependent template name?");
641 if (const IdentifierInfo *Id = Dependent->getIdentifier())
644 mangleOperatorName(Dependent->getOperator(), UnknownArity);
738 // the template in question is a dependent template name. Should we
752 // the template in question is a dependent template name. Should we
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 81 EffectiveContext() : Inner(0), Dependent(false) {}
85 Dependent(DC->isDependentContext()) {
120 bool isDependent() const { return Dependent; }
139 bool Dependent;
287 assert(T->isDependentType() && "non-dependent base wasn't a record?");
316 "can't handle friends with dependent contexts here");
455 // If the context isn't dependent, it can't be a dependent match.
459 // If the template names don't match, it can't be a dependent
465 // context, it can't be a dependent match
    [all...]
SemaExprCXX.cpp 232 // (dependent) template name being specialized.
246 // We didn't find our type, but that's okay: it's dependent
    [all...]
TreeTransform.h 196 /// non-dependent types.
662 /// \brief Build a new dependent-sized array type given the element type,
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 570 LambdaDefinitionData(CXXRecordDecl *D, bool Dependent)
571 : DefinitionData(D), Dependent(Dependent), NumCaptures(0),
577 /// \brief Whether this lambda is known to be dependent, even if its
578 /// context isn't dependent.
580 /// A lambda with a non-dependent context can be dependent if it occurs
585 unsigned Dependent : 1;
765 /// \brief Determine whether this class has any dependent base classes.
    [all...]

Completed in 205 milliseconds