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

1 2

  /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");
174 return A == B ? Dependent : Independent;
199 return Dependent;
284 if (result != Dependent) {
292 return Dependent;
304 case Dependent: ++NumDependent; break;
357 << ": " << (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 55 case BuiltinType::Dependent: ID = PREDEF_TYPE_DEPENDENT_ID; break;
  /external/clang/lib/AST/
ExprCXX.cpp 128 // The type-to-delete may not be a pointer if it's a dependent type.
251 // Determine whether this expression is type-dependent.
267 // If we have explicit template arguments, check for dependent
271 bool Dependent = false;
274 getExplicitTemplateArgs().initializeFrom(*TemplateArgs, Dependent,
278 if (Dependent) {
332 bool Dependent = true;
338 ->initializeFrom(*Args, Dependent, InstantiationDependent,
    [all...]
DeclBase.cpp 715 // Friend function declarations are dependent if their *lexical*
716 // context is dependent.
    [all...]
ItaniumMangle.cpp 596 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
597 assert(Dependent && "Not a dependent template name?");
598 if (const IdentifierInfo *Id = Dependent->getIdentifier())
601 mangleOperatorName(Dependent->getOperator(), UnknownArity);
671 // the template in question is a dependent template name. Should we
685 // the template in question is a dependent template name. Should we
    [all...]
TypeLoc.cpp 237 case BuiltinType::Dependent:
Expr.cpp 145 // An id-expression is type-dependent if it contains:
150 // An identifier is value-dependent if it is:
152 // (TD) - an identifier that was declared with dependent type
153 // (VD) - a name declared with a dependent type,
163 // (TD) - a conversion-function-id that specifies a dependent type
186 // initialized with an expression that is value-dependent.
227 // An id-expression is type-dependent if it contains:
232 // An identifier is value-dependent if it is:
268 bool Dependent = false;
271 getExplicitTemplateArgs().initializeFrom(*TemplateArgs, Dependent,
    [all...]
MicrosoftMangle.cpp 708 case BuiltinType::Dependent:
    [all...]
  /external/clang/include/clang/AST/
DeclContextInternals.h 202 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
Type.h     [all...]
TemplateBase.h 60 /// 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,
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 257 const SymbolRef Dependent) {
266 dependencies->push_back(Dependent);
  /external/clang/tools/libclang/
CXType.cpp 56 BTCASE(Dependent);
318 TKIND(Dependent);
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 146 namespace Dependent {
  /external/mesa3d/docs/OLD/
MESA_program_debug.spec 294 New Implementation Dependent State
  /external/clang/lib/Sema/
SemaAccess.cpp 80 EffectiveContext() : Inner(0), Dependent(false) {}
84 Dependent(DC->isDependentContext()) {
119 bool isDependent() const { return Dependent; }
138 bool Dependent;
279 assert(T->isDependentType() && "non-dependent base wasn't a record?");
308 "can't handle friends with dependent contexts here");
447 // If the context isn't dependent, it can't be a dependent match.
451 // If the template names don't match, it can't be a dependent
457 // context, it can't be a dependent match
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 230 /// SymbolMetadata - Represents path-dependent metadata about a specific region.
402 /// different loop iterations, thus, making the symbol path-dependent.
424 /// The dependent symbol should stay alive as long as the primary is alive.
425 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent);
519 /// 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.");
371 case BuiltinType::Dependent:
CGRTTI.cpp 198 case BuiltinType::Dependent:
398 llvm_unreachable("Non-canonical and dependent types shouldn't get here");
596 llvm_unreachable("Non-canonical and dependent types shouldn't get here");
    [all...]

Completed in 505 milliseconds

1 2