HomeSort by relevance Sort by last modified time
    Searched refs:elementDescription (Results 26 - 40 of 40) sorted by null

12

  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleSubtreeStream.cs 38 public RewriteRuleSubtreeStream(ITreeAdaptor adaptor, string elementDescription)
39 : base(adaptor, elementDescription) {
43 public RewriteRuleSubtreeStream(ITreeAdaptor adaptor, string elementDescription, object oneElement)
44 : base(adaptor, elementDescription, oneElement) {
48 public RewriteRuleSubtreeStream(ITreeAdaptor adaptor, string elementDescription, IList elements)
49 : base(adaptor, elementDescription, elements) {
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleSubtreeStream.cs 40 public RewriteRuleSubtreeStream( ITreeAdaptor adaptor, string elementDescription )
41 : base( adaptor, elementDescription )
46 public RewriteRuleSubtreeStream( ITreeAdaptor adaptor, string elementDescription, object oneElement )
47 : base( adaptor, elementDescription, oneElement )
52 public RewriteRuleSubtreeStream( ITreeAdaptor adaptor, string elementDescription, IList elements )
53 : base( adaptor, elementDescription, elements )
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleElementStream.as 69 protected var elementDescription:String;
72 public function RewriteRuleElementStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) {
73 this.elementDescription = elementDescription;
98 //System.out.println("add '"+elementDescription+"' is "+el);
144 throw new RewriteEmptyStreamException(elementDescription);
151 throw new RewriteCardinalityException(elementDescription);
197 return elementDescription;
RewriteRuleSubtreeStream.as 32 public function RewriteRuleSubtreeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
33 super(adaptor, elementDescription, element);
RewriteRuleTokenStream.as 34 public function RewriteRuleTokenStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
35 super(adaptor, elementDescription, element);
RewriteRuleNodeStream.as 9 public function RewriteRuleNodeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) {
10 super(adaptor, elementDescription, element);
  /external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleElementStream.js 14 org.antlr.runtime.tree.RewriteRuleElementStream = function(adaptor, elementDescription, el) {
30 this.elementDescription = elementDescription;
99 throw new org.antlr.runtime.tree.RewriteEmptyStreamException(this.elementDescription);
106 throw new org.antlr.runtime.tree.RewriteCardinalityException(this.elementDescription);
146 return this.elementDescription;
RewriteRuleNodeStream.js 4 org.antlr.runtime.tree.RewriteRuleNodeStream = function(adaptor, elementDescription, el) {
RewriteRuleTokenStream.js 1 org.antlr.runtime.tree.RewriteRuleTokenStream = function(adaptor, elementDescription, el) {
  /external/antlr/runtime/ObjC/Framework/
RewriteRuleTokenStream.h 36 description:(NSString *)elementDescription;
39 description:(NSString *)elementDescription
43 description:(NSString *)elementDescription
RewriteRuleElementStream.h 38 __strong NSString *elementDescription;
47 @property (assign) NSString *elementDescription;
  /external/antlr/runtime/C/include/
antlr3rewritestreams.h 86 void * elementDescription;
  /external/antlr/runtime/Python/antlr3/
tree.py 67 def __init__(self, elementDescription):
68 RuntimeError.__init__(self, elementDescription)
70 self.elementDescription = elementDescription
74 return self.elementDescription
80 def __init__(self, elementDescription=None):
81 RewriteCardinalityException.__init__(self, elementDescription)
    [all...]
  /external/antlr/runtime/Python3/antlr3/
tree.py 67 def __init__(self, elementDescription):
68 RuntimeError.__init__(self, elementDescription)
70 self.elementDescription = elementDescription
74 return self.elementDescription
80 def __init__(self, elementDescription=None):
81 RewriteCardinalityException.__init__(self, elementDescription)
    [all...]
  /external/antlr/runtime/C/src/
antlr3rewritestreams.c 247 stream->elementDescription = description;
838 if (stream->elementDescription == NULL)
840 stream->elementDescription = (void*)"<unknown source>";
843 return stream->elementDescription;

Completed in 2208 milliseconds

12