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

1 2

  /packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
serialize.cpp 64 class Dependent : public Person {
66 Dependent(const std::string& name, unsigned age, Education* education = 0) : Person(name, age), education_(education) {}
67 Dependent(const Dependent& rhs) : Person(rhs), education_(0) { education_ = (rhs.education_ == 0) ? 0 : new Education(*rhs.education_); }
68 virtual ~Dependent();
70 Dependent& operator=(const Dependent& rhs) {
98 Dependent::~Dependent() {
107 void AddDependent(const Dependent& dependent) {
    [all...]
  /external/swiftshader/third_party/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 {
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/
DxeMain.h 191 BOOLEAN Dependent;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
PiSmmCore.h 95 BOOLEAN Dependent;
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 146 // The type-to-delete may not be a pointer if it's a dependent type.
277 // Determine whether this expression is type-dependent.
293 // If we have explicit template arguments, check for dependent
297 bool Dependent = false;
302 Dependent, InstantiationDependent, ContainsUnexpandedParameterPack);
304 if (Dependent) {
360 bool Dependent = true;
366 Dependent, InstantiationDependent, ContainsUnexpandedParameterPack);
380 assert(QualifierLoc && "should be created for dependent qualifiers");
    [all...]
DeclBase.cpp 941 // Friend function declarations are dependent if their *lexical*
942 // context is dependent.
947 // FIXME: A variable template is a dependent context, but is not a
949 // should be considered dependent.
    [all...]
Expr.cpp 222 // An id-expression is type-dependent if it contains:
227 // An identifier is value-dependent if it is:
229 // (TD) - an identifier that was declared with dependent type
230 // (VD) - a name declared with a dependent type,
240 // (TD) - a conversion-function-id that specifies a dependent type
263 // initialized with an expression that is value-dependent.
265 // expression that is value-dependent [C++11].
268 // expression that is value-dependent [C++11]
350 bool Dependent = false;
355 Dependent, InstantiationDependent, ContainsUnexpandedParameterPack)
    [all...]
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 81 EffectiveContext() : Inner(nullptr), Dependent(false) {}
85 Dependent(DC->isDependentContext()) {
125 bool isDependent() const { return Dependent; }
144 bool Dependent;
308 assert(T->isDependentType() && "non-dependent base wasn't a record?");
336 "can't handle friends with dependent contexts here");
467 // If the context isn't dependent, it can't be a dependent match.
471 // If the template names don't match, it can't be a dependent
477 // context, it can't be a dependent match
    [all...]
SemaTemplateDeduction.cpp 49 /// \brief Allow non-dependent types to differ, e.g., when performing
173 // If we deduced a constant in one case and either a dependent expression or
205 // If we deduced a dependent expression in one case and either an integral
226 // If we deduced a declaration and a dependent expression, keep the
246 // If we deduced a null pointer and a dependent expression, keep the
313 /// from the given type- or value-dependent expression.
325 "Expression template argument must be type- or value-dependent.");
382 // The parameter type is dependent and is not a template template parameter,
408 // Mismatch of non-dependent template parameter to argument.
441 // Check whether the template argument is a dependent template-id
    [all...]
  /external/guice/core/test/com/google/inject/
BindingTest.java 50 static class Dependent {
52 @Inject Dependent(A a, B b) {}
  /external/clang/include/clang/AST/
DeclCXX.h 531 bool Dependent, bool IsGeneric,
533 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
546 /// \brief Whether this lambda is known to be dependent, even if its
547 /// context isn't dependent.
549 /// A lambda with a non-dependent context can be dependent if it occurs
554 unsigned Dependent : 1;
749 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclCXX.h 541 bool Dependent, bool IsGeneric,
543 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
555 /// \brief Whether this lambda is known to be dependent, even if its
556 /// context isn't dependent.
558 /// A lambda with a non-dependent context can be dependent if it occurs
563 unsigned Dependent : 1;
760 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
DeclCXX.h 541 bool Dependent, bool IsGeneric,
543 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
555 /// \brief Whether this lambda is known to be dependent, even if its
556 /// context isn't dependent.
558 /// A lambda with a non-dependent context can be dependent if it occurs
563 unsigned Dependent : 1;
760 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
DeclCXX.h 541 bool Dependent, bool IsGeneric,
543 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
555 /// \brief Whether this lambda is known to be dependent, even if its
556 /// context isn't dependent.
558 /// A lambda with a non-dependent context can be dependent if it occurs
563 unsigned Dependent : 1;
760 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
DeclCXX.h 548 bool Dependent, bool IsGeneric,
550 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
562 /// \brief Whether this lambda is known to be dependent, even if its
563 /// context isn't dependent.
565 /// A lambda with a non-dependent context can be dependent if it occurs
570 unsigned Dependent : 1;
767 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
DeclCXX.h 548 bool Dependent, bool IsGeneric,
550 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
562 /// \brief Whether this lambda is known to be dependent, even if its
563 /// context isn't dependent.
565 /// A lambda with a non-dependent context can be dependent if it occurs
570 unsigned Dependent : 1;
767 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
DeclCXX.h 548 bool Dependent, bool IsGeneric,
550 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
562 /// \brief Whether this lambda is known to be dependent, even if its
563 /// context isn't dependent.
565 /// A lambda with a non-dependent context can be dependent if it occurs
570 unsigned Dependent : 1;
767 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
DeclCXX.h 548 bool Dependent, bool IsGeneric,
550 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
562 /// \brief Whether this lambda is known to be dependent, even if its
563 /// context isn't dependent.
565 /// A lambda with a non-dependent context can be dependent if it occurs
570 unsigned Dependent : 1;
767 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclCXX.h 541 bool Dependent, bool IsGeneric,
543 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
555 /// \brief Whether this lambda is known to be dependent, even if its
556 /// context isn't dependent.
558 /// A lambda with a non-dependent context can be dependent if it occurs
563 unsigned Dependent : 1;
760 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
DeclCXX.h 541 bool Dependent, bool IsGeneric,
543 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
555 /// \brief Whether this lambda is known to be dependent, even if its
556 /// context isn't dependent.
558 /// A lambda with a non-dependent context can be dependent if it occurs
563 unsigned Dependent : 1;
760 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
DeclCXX.h 541 bool Dependent, bool IsGeneric,
543 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
555 /// \brief Whether this lambda is known to be dependent, even if its
556 /// context isn't dependent.
558 /// A lambda with a non-dependent context can be dependent if it occurs
563 unsigned Dependent : 1;
760 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
DeclCXX.h 548 bool Dependent, bool IsGeneric,
550 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
562 /// \brief Whether this lambda is known to be dependent, even if its
563 /// context isn't dependent.
565 /// A lambda with a non-dependent context can be dependent if it occurs
570 unsigned Dependent : 1;
767 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
DeclCXX.h 548 bool Dependent, bool IsGeneric,
550 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
562 /// \brief Whether this lambda is known to be dependent, even if its
563 /// context isn't dependent.
565 /// A lambda with a non-dependent context can be dependent if it occurs
570 unsigned Dependent : 1;
767 /// \brief Determine whether this class has any dependent base classes which
    [all...]

Completed in 1203 milliseconds

1 2