HomeSort by relevance Sort by last modified time
    Searched refs:IDLNode (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/ppapi/generators/
idl_ast.py 8 from idl_node import IDLAttribute, IDLFile, IDLNode
94 if parent_namespace and node.cls in IDLNode.NamedSet:
162 # A specialized version of the IDLNode for containing the whole of the
167 class IDLAst(IDLNode):
169 IDLNode.__init__(self, 'AST', 'BuiltIn', 1, 0, children)
idl_node.py 11 # IDL Node defines the IDLAttribute and IDLNode objects which are constructed
13 # objects are assigned to the IDLNode's property dictionary instead of being
31 # which will be passed as a child to a standard IDLNode.
43 # IDLNode
47 # allow for look-ups. IDLNode is derived from IDLRelease, so it is
50 class IDLNode(IDLRelease):
52 # Set of object IDLNode types which have a name and belong in the namespace.
103 if not IDLNode.show_versions: ver = ''
422 # A specialized version of IDLNode which tracks errors and warnings.
424 class IDLFile(IDLNode)
    [all...]
idl_lint.py 11 from idl_node import IDLAttribute, IDLNode
idl_parser.py 35 from idl_node import IDLAttribute, IDLFile, IDLNode
228 Filedoc = IDLNode('Comment', self.lexobj.filename, p.lineno(2)-1,
877 out = IDLNode(cls, filename, lineno, pos, childlist)
    [all...]
idl_c_header.py 14 from idl_node import IDLAttribute, IDLNode
idl_c_proto.py 13 from idl_node import IDLNode
idl_thunk.py 14 from idl_node import IDLAttribute, IDLNode
199 interface - IDLNode for the interface
200 member - IDLNode for member function
231 member - IDLNode for the member function
256 filenode - IDLNode for the file
258 node - IDLNode for the interface
259 member - IDLNode for the member function
352 filenode - IDLNode for the file
353 node - IDLNode for the interface
354 member - IDLNode for the member functio
    [all...]
  /external/chromium_org/tools/idl_parser/
idl_node.py 11 # IDL Node defines the IDLAttribute and IDLNode objects which are constructed
13 # objects are assigned to the IDLNode's property dictionary instead of being
40 # which will be passed as a child to a standard IDLNode.
56 # which will be passed as a child to a standard IDLNode.
71 # IDLNode
75 # allow for look-ups. IDLNode is derived from IDLRelease, so it is
78 class IDLNode(object):
200 if type(child) == IDLNode:
idl_ppapi_parser.py 38 from idl_node import IDLAttribute, IDLNode
293 ast = IDLNode('AST', '__AST__', 0, 0, nodes)
idl_parser.py 37 from idl_node import IDLAttribute, IDLNode
82 if type(p) == IDLNode:
895 out = IDLNode(cls, filename, lineno, pos, childlist)
994 return IDLNode('File', filename, 0, 0, nodes + [name])
1027 ast = IDLNode('AST', '__AST__', 0, 0, nodes)

Completed in 90 milliseconds