OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InnerNamespace
(Results
1 - 3
of
3
) sorted by null
/system/media/camera/docs/
metadata_model_test.py
11
ins_outer =
InnerNamespace
("static", parent=kind)
14
ins1 =
InnerNamespace
("ins1", parent=ins_outer)
15
ins1a =
InnerNamespace
("ins1", parent=ins_outer) # same name deliberately
34
self.assertIsInstance(combined_children_namespace,
InnerNamespace
)
60
ins1 =
InnerNamespace
("ins1", parent=kind_static)
61
ins2 =
InnerNamespace
("ins2", parent=kind_dynamic)
94
ins1 =
InnerNamespace
("ins1", parent=kind_static)
95
ins1a =
InnerNamespace
("ins1", parent=kind_static) # same name deliberately
metadata_model.py
28
InnerNamespace
: A node corresponding to a <namespace> nested under a <kind>.
531
#parent is
InnerNamespace
or Kind
541
ins = ins_dict.get(ins_str,
InnerNamespace
(ins_str, parent))
565
#parent is
InnerNamespace
or Kind
784
namespaces: A sequence of
InnerNamespace
children.
854
# new_type is either Kind or
InnerNamespace
862
InnerNamespace
(ins.name, parent=self))
876
class
InnerNamespace
(Node):
883
parent: An edge to the parent, which is an
InnerNamespace
or a Kind.
884
namespaces: A sequence of
InnerNamespace
children
[
all
...]
metadata_helpers.py
43
isinstance(x, metadata_model.
InnerNamespace
)
51
Find all descendants that are Section or
InnerNamespace
instances.
57
A list of Section/
InnerNamespace
instances
66
Find the closest ancestor that is either a Section or
InnerNamespace
.
72
An instance of Section or
InnerNamespace
82
node: a Section or
InnerNamespace
instance
92
not isinstance(node, metadata_model.
InnerNamespace
):
93
raise TypeError("expected node to be a Section or
InnerNamespace
")
230
node: An instance of Section,
InnerNamespace
, or Kind
[
all
...]
Completed in 134 milliseconds