HomeSort by relevance Sort by last modified time
    Searched refs:Dependent (Results 1 - 25 of 42) sorted by null

1 2

  /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/llvm/lib/Analysis/
LoopDependenceAnalysis.cpp 43 STATISTIC(NumDependent, "Number of pairs with dependent accesses");
172 return A == B ? Dependent : Independent;
197 return Dependent;
282 if (result != Dependent) {
290 return Dependent;
302 case Dependent: ++NumDependent; break;
355 << ": " << (LDA->depends(*x, *y) ? "dependent" : "independent")
  /external/mesa3d/docs/
MESA_window_pos.spec 118 New Implementation Dependent State
MESA_resize_buffers.spec 75 New Implementation Dependent State
MESA_shader_debug.spec 206 implementation dependent double-quoted string, each of this
250 New Implementation Dependent State
MESA_swap_control.spec 93 the maximum implementation-dependent value supported before being
119 New Implementation Dependent State
MESA_swap_frame_usage.spec 194 New Implementation Dependent State
  /external/clang/lib/Serialization/
ASTCommon.cpp 56 case BuiltinType::Dependent: ID = PREDEF_TYPE_DEPENDENT_ID; break;
  /external/clang/include/clang/AST/
DeclContextInternals.h 202 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
TemplateBase.h 61 /// The template argument is a value- or type-dependent expression
118 /// parameters. However, the template name could be a dependent template
132 /// parameters. However, the template name could be a dependent template
153 /// lists used for dependent types and for expression; it will not
154 /// occur in a non-dependent, canonical template argument list.
236 /// \brief Whether this template argument is dependent on a template
241 /// \brief Whether this template argument is dependent on a template
588 bool &Dependent, bool &InstantiationDependent,
623 bool &Dependent, bool &InstantiationDependent,
Type.h     [all...]
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...]
  /external/clang/lib/AST/
DeclBase.cpp 754 // Friend function declarations are dependent if their *lexical*
755 // context is dependent.
    [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...]
NSAPI.cpp 302 case BuiltinType::Dependent:
TypeLoc.cpp 235 case BuiltinType::Dependent:
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...]
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 146 namespace Dependent {
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 368 const SymbolRef Dependent) {
377 dependencies->push_back(Dependent);
  /external/clang/tools/libclang/
CXType.cpp 56 BTCASE(Dependent);
394 TKIND(Dependent);
  /external/mesa3d/docs/OLD/
MESA_program_debug.spec 294 New Implementation Dependent State
  /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...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 264 /// SymbolMetadata - Represents path-dependent metadata about a specific region.
518 /// different loop iterations, thus, making the symbol path-dependent.
547 /// The dependent symbol should stay alive as long as the primary is alive.
548 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent);
642 /// Mark the symbols dependent on the input symbol as live.
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 307 llvm_unreachable("Non-canonical or dependent types aren't possible.");
370 case BuiltinType::Dependent:

Completed in 1751 milliseconds

1 2