Searched defs:parent (Results 26 - 48 of 48) sorted by path

12

/system/libvintf/
H A Dparse_xml.cpp69 inline void appendChild(NodeType *parent, NodeType *child) { argument
70 parent->InsertEndChild(child);
73 inline void appendChild(DocType *parent, NodeType *child) { argument
74 parent->InsertEndChild(child);
82 inline void appendText(NodeType *parent, const std::string &text, DocType *d) { argument
83 parent->InsertEndChild(d->NewText(text.c_str()));
94 inline NodeType *getChild(NodeType *parent, const std::string &name) { argument
95 return parent->FirstChildElement(name.c_str());
98 inline NodeType *getRootChild(DocType *parent) { argument
99 return parent
102 getChildren(NodeType *parent, const std::string &name) argument
216 appendTextElement(NodeType *parent, const std::string &name, const std::string &text, DocType *d) const argument
225 appendTextElements(NodeType *parent, const std::string &name, const Array &array, DocType *d) const argument
235 appendChildren(NodeType* parent, const XmlNodeConverter<T>& conv, const Array& array, DocType* d, SerializeFlags flags = SerializeFlag::EVERYTHING) const argument
[all...]
/system/media/camera/docs/
H A Dmetadata_model.py47 parent: An edge to a parent Node.
57 def parent(self): member in class:Node
126 parent = self.parent
128 while parent is not None:
129 if pred(parent):
130 yield parent
131 parent = parent
[all...]
/system/timezone/distro/installer/src/test/com/android/timezone/distro/installer/
H A DTimeZoneDistroInstallerTest.java88 private static File createSubDirectory(File parent, String subDirName) { argument
89 File dir = new File(parent, subDirName);
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
H A DTreeNode.java22 * An abstract base class for a general tree node. Each tree node has an id, a link to its parent
29 private V parent; field in class:TreeNode
47 return parent;
52 parent = newParent;
56 * Adds the child and sets the parent of the child. The child must not already have a parent.
86 * identify the child node to remove. The parent of the node to be removed is set to null.
/system/tools/aidl/
H A Dast_cpp.cpp32 ClassDecl::ClassDecl(const std::string& name, const std::string& parent) argument
34 parent_(parent) {}
36 ClassDecl::ClassDecl(const std::string& name, const std::string& parent, argument
40 parent_(parent),
/system/tools/hidl/
H A DArrayType.cpp27 ArrayType::ArrayType(const Reference<Type>& elementType, ConstantExpression* size, Scope* parent) argument
28 : Type(parent), mElementType(elementType), mSizes{size} {
H A DCompoundType.cpp30 const Location& location, Scope* parent)
31 : Scope(localName, fullName, location, parent), mStyle(style), mFields(NULL) {}
29 CompoundType(Style style, const char* localName, const FQName& fullName, const Location& location, Scope* parent) argument
H A DDeathRecipientType.cpp24 DeathRecipientType::DeathRecipientType(Scope* parent) : Type(parent) {} argument
H A DEnumType.cpp31 const Reference<Type>& storageType, Scope* parent)
32 : Scope(localName, fullName, location, parent), mValues(), mStorageType(storageType) {}
833 BitFieldType::BitFieldType(Scope* parent) : TemplatedType(parent) {} argument
30 EnumType(const char* localName, const FQName& fullName, const Location& location, const Reference<Type>& storageType, Scope* parent) argument
H A DFmqType.cpp26 FmqType::FmqType(const char* nsp, const char* name, Scope* parent) argument
27 : TemplatedType(parent), mNamespace(nsp), mName(name) {}
H A DHandleType.cpp26 HandleType::HandleType(Scope* parent) : Type(parent) {} argument
H A DInterface.cpp72 Scope* parent, const Reference<Type>& superType, const Hash* fileHash)
73 : Scope(localName, fullName, location, parent), mSuperType(superType), mFileHash(fileHash) {}
71 Interface(const char* localName, const FQName& fullName, const Location& location, Scope* parent, const Reference<Type>& superType, const Hash* fileHash) argument
H A DMemoryType.cpp26 MemoryType::MemoryType(Scope* parent) : Type(parent) {} argument
H A DNamedType.cpp22 Scope* parent)
23 : Type(parent), mLocalName(localName), mFullName(fullName), mLocation(loc) {}
21 NamedType(const char* localName, const FQName& fullName, const Location& loc, Scope* parent) argument
H A DPointerType.cpp24 PointerType::PointerType(Scope* parent) : Type(parent) {} argument
H A DRefType.cpp27 RefType::RefType(Scope* parent) : TemplatedType(parent) {} argument
H A DScalarType.cpp23 ScalarType::ScalarType(Kind kind, Scope* parent) : Type(parent), mKind(kind) {} argument
H A DScope.cpp32 Scope::Scope(const char* localName, const FQName& fullName, const Location& location, Scope* parent) argument
33 : NamedType(localName, fullName, location, parent) {}
232 Scope* parent)
233 : Scope(localName, fullName, location, parent) {}
231 RootScope(const char* localName, const FQName& fullName, const Location& location, Scope* parent) argument
H A DStringType.cpp25 StringType::StringType(Scope* parent) : Type(parent) {} argument
H A DType.cpp31 Type::Type(Scope* parent) : mParent(parent) {} argument
309 const Type* refTypeParent = refType->parent();
310 for (const Type* ancestor = this; ancestor != nullptr; ancestor = ancestor->parent()) {
362 Scope* Type::parent() { function in class:android::Type
366 const Scope* Type::parent() const { function in class:android::Type
756 TemplatedType::TemplatedType(Scope* parent) : Type(parent) {} argument
H A DTypeDef.cpp25 Scope* parent, const Reference<Type>& type)
26 : NamedType(localName, fullName, location, parent), mReferencedType(type) {}
24 TypeDef(const char* localName, const FQName& fullName, const Location& location, Scope* parent, const Reference<Type>& type) argument
H A DVectorType.cpp28 VectorType::VectorType(Scope* parent) : TemplatedType(parent) {} argument
/system/tools/hidl/test/hidl_test/
H A Dhidl_test_client.cpp566 "android.hardware.tests.inheritance@1.0::IParent/parent",
625 std::set<std::string> activeSet = {"parent", "child"};
642 sp<IParent> parent = new SimpleParent(); local
650 EXPECT_EQ(::android::OK, parent->registerAsService(kInstanceName));
654 EXPECT_FALSE(interfacesEqual(parent, IChild::getService(kInstanceName)));
655 EXPECT_TRUE(interfacesEqual(parent, IParent::getService(kInstanceName)));
1589 static void expectGoodParent(sp<IParent> parent) { argument
1590 ASSERT_NE(parent.get(), nullptr);
1591 parent = IParent::castFrom(parent);
1604 sp<IParent> parent = IParent::castFrom(grandparent); local
[all...]

Completed in 169 milliseconds

12