HomeSort by relevance Sort by last modified time
    Searched refs:Dependent (Results 1 - 25 of 45) 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/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/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
TemplateBase.h 64 /// of the other forms yet, either because it's dependent or because we're
66 /// TemplateSpecializationType). Also used to represent a non-dependent
156 /// parameters. However, the template name could be a dependent template
170 /// parameters. However, the template name could be a dependent template
190 /// lists used for dependent types and for expression; it will not
191 /// occur in a non-dependent, canonical template argument list.
220 /// \brief Whether this template argument is dependent on a template
225 /// \brief Whether this template argument is dependent on a template
603 bool &Dependent, bool &InstantiationDependent,
638 bool &Dependent, bool &InstantiationDependent
    [all...]
Type.h     [all...]
DeclCXX.h 534 bool Dependent, bool IsGeneric,
536 : DefinitionData(D), Dependent(Dependent), IsGenericLambda(IsGeneric),
549 /// \brief Whether this lambda is known to be dependent, even if its
550 /// context isn't dependent.
552 /// A lambda with a non-dependent context can be dependent if it occurs
557 unsigned Dependent : 1;
744 /// \brief Determine whether this class has any dependent base classes which
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 898 // Friend function declarations are dependent if their *lexical*
899 // context is dependent.
904 // FIXME: A variable template is a dependent context, but is not a
906 // should be considered dependent.
    [all...]
ExprCXX.cpp 219 // The type-to-delete may not be a pointer if it's a dependent type.
347 // Determine whether this expression is type-dependent.
363 // If we have explicit template arguments, check for dependent
367 bool Dependent = false;
371 Dependent,
375 if (Dependent) {
431 bool Dependent = true;
436 Dependent,
451 assert(QualifierLoc && "should be created for dependent qualifiers");
    [all...]
ItaniumMangle.cpp 672 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
673 assert(Dependent && "Not a dependent template name?");
674 if (const IdentifierInfo *Id = Dependent->getIdentifier())
677 mangleOperatorName(Dependent->getOperator(), UnknownArity);
770 // the template in question is a dependent template name. Should we
783 // the template in question is a dependent template name. Should we
    [all...]
TypeLoc.cpp 328 case BuiltinType::Dependent:
NSAPI.cpp 467 case BuiltinType::Dependent:
  /external/clang/lib/Serialization/
ASTCommon.cpp 112 case BuiltinType::Dependent:
347 // Friend declarations in dependent contexts aren't anonymous in the usual
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 146 namespace Dependent {
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 348 const SymbolRef Dependent) {
357 dependencies->push_back(Dependent);
  /external/guice/core/test/com/google/inject/
BindingTest.java 50 static class Dependent {
52 @Inject Dependent(A a, B b) {}
  /external/mesa3d/docs/OLD/
MESA_program_debug.spec 294 New Implementation Dependent State
  /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;
307 assert(T->isDependentType() && "non-dependent base wasn't a record?");
335 "can't handle friends with dependent contexts here");
472 // If the context isn't dependent, it can't be a dependent match.
476 // If the template names don't match, it can't be a dependent
482 // context, it can't be a dependent match
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
cdi-api-1.0.jar 
  /prebuilts/tools/common/m2/repository/javax/enterprise/cdi-api/1.0/
cdi-api-1.0.jar 
  /external/clang/tools/libclang/
CXType.cpp 56 BTCASE(Dependent);
465 TKIND(Dependent);
798 // We recurse into all record fields to detect incomplete and dependent types.
806 // check that PT is not incomplete/dependent
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 263 /// 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);
649 /// Mark the symbols dependent on the input symbol as live.

Completed in 657 milliseconds

1 2