Searched refs:parent (Results 1 - 10 of 10) sorted by relevance

/system/media/camera/docs/
H A Dmetadata_model_test.py10 kind = Kind("some_root_kind", parent=None)
11 ins_outer = InnerNamespace("static", parent=kind)
14 ins1 = InnerNamespace("ins1", parent=ins_outer)
15 ins1a = InnerNamespace("ins1", parent=ins_outer) # same name deliberately
17 parent=ins1)
19 parent=ins1a)
21 parent=ins_outer)
38 self.assertEquals(kind, combined_children_namespace.parent)
55 section = Section("some_section", parent=None)
56 kind_static = Kind("static", parent
[all...]
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...]
H A Dmetadata_helpers_test.py77 plain_enum = Enum(parent=None, values=['ON', 'OFF'])
83 labeled_enum = Enum(parent=None, values=['A', 'B', 'C'], ids={
93 mixed_enum = Enum(parent=None,
H A Dmetadata_helpers.py537 enum_value: an EnumValue node with a valid Enum parent
554 enum_value_siblings = list(enum_value.parent.values)
1048 parent = navigable_string.parent
/system/core/include/utils/
H A DLruCache.h85 Entry* parent; member in struct:android::LruCache::Entry
88 Entry(TKey key_, TValue value_) : key(key_), value(value_), parent(NULL), child(NULL) {
212 entry.parent = mYoungest;
220 if (entry.parent != NULL) {
221 entry.parent->child = entry.child;
226 entry.child->parent = entry.parent;
228 mYoungest = entry.parent;
231 entry.parent = NULL;
/system/core/sdcard/
H A Dsdcard.c133 /* Nothing special; this node should just inherit from its parent. */
186 struct node *parent; /* containing directory */ member in struct:node
307 static void add_node_to_parent_locked(struct node *node, struct node *parent) { argument
308 node->parent = parent;
309 node->next = parent->child;
310 parent->child = node;
311 acquire_node_locked(parent);
316 if (node->parent) {
317 if (node->parent
450 derive_permissions_locked(struct fuse* fuse, struct node *parent, struct node *node) argument
596 create_node_locked(struct fuse* fuse, struct node *parent, const char *name, const char* actual_name) argument
713 acquire_or_create_child_locked( struct fuse* fuse, struct node* parent, const char* name, const char* actual_name) argument
809 fuse_reply_entry(struct fuse* fuse, __u64 unique, struct node* parent, const char* name, const char* actual_name, const char* path) argument
[all...]
/system/core/init/
H A Ddevices.c443 const char *parent; local
460 parent = strchr(uevent->path + pdev->path_len, '/');
461 if (!*parent)
464 if (!strncmp(parent, "/usb", 4)) {
466 while (*++parent && *parent != '/');
467 if (*parent)
468 while (*++parent && *parent != '/');
469 if (!*parent)
[all...]
/system/core/logwrapper/
H A Dlogwrap.c293 static int parent(const char *tag, int parent_read, pid_t pid, function
495 ERROR("Cannot create parent ptty\n");
548 rc = parent(argv[0], parent_ptty, pid, status, log_target,
/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.h244 MIPSAssembler(const sp<Assembly>& assembly, ArmToMipsAssembler *parent);
H A DMIPSAssembler.cpp1251 MIPSAssembler::MIPSAssembler(const sp<Assembly>& assembly, ArmToMipsAssembler *parent) argument
1252 : mParent(parent),

Completed in 768 milliseconds