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 IDLNode
78 if parent_namespace and node.cls in IDLNode.NamedSet:
148 # A specialized version of the IDLNode for containing the whole of the
153 class IDLAst(IDLNode):
155 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
29 # which will be passed as a child to a standard IDLNode.
41 # IDLNode
45 # allow for look-ups. IDLNode is derived from IDLRelease, so it is
48 class IDLNode(IDLRelease):
50 # Set of object IDLNode types which have a name and belong in the namespace.
364 # A specialized version of IDLNode which tracks errors and warnings.
366 class IDLFile(IDLNode):
372 IDLNode.__init__(self, 'File', name, 1, 0, attrs + children
    [all...]
idl_lint.py 11 from idl_node import IDLAttribute, IDLNode
idl_parser.py 35 from idl_node import IDLAttribute, IDLFile, IDLNode
227 Filedoc = IDLNode('Comment', self.lexobj.filename, p.lineno(2)-1,
945 out = IDLNode(cls, filename, lineno, pos, childlist)
    [all...]
idl_c_header.py 14 from idl_node import IDLAttribute, 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...]
idl_c_proto.py 13 from idl_node import IDLNode
  /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 36 from idl_node import IDLNode
296 ast = IDLNode('AST', '__AST__', 0, 0, nodes)
idl_parser.py 37 from idl_node import IDLAttribute, IDLNode
96 if type(p) == IDLNode:
978 out = IDLNode(cls, filename, lineno, pos, childlist)
1079 return IDLNode('File', filename, 0, 0, nodes + [name])
    [all...]

Completed in 195 milliseconds