Searched refs:result (Results 76 - 100 of 11104) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRDebugEventListener.h196 /** A semantic predicate was evaluate with this result and action text */
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
255 * In our case, it will always be the result of calling
H A DANTLRDebugEventProxy.h93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRDebugEventListener.h196 /** A semantic predicate was evaluate with this result and action text */
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
255 * In our case, it will always be the result of calling
H A DANTLRDebugEventProxy.h93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRDebugEventListener.h196 /** A semantic predicate was evaluate with this result and action text */
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
255 * In our case, it will always be the result of calling
H A DANTLRDebugEventProxy.h93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRDebugEventListener.h196 /** A semantic predicate was evaluate with this result and action text */
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
255 * In our case, it will always be the result of calling
H A DANTLRDebugEventProxy.h93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py92 # Track the last mark() call result value for use in rewind().
607 def semanticPredicate(self, result, predicate):
608 """A semantic predicate was evaluate with this result and action text"""
692 In our case, it will always be the result of calling
1011 def semanticPredicate(self, result, predicate):
1014 str(int(result)),
H A Dmain.py236 result = getattr(parser, options.parserRule)()
237 if result is not None:
238 if hasattr(result, 'tree') and result.tree is not None:
239 self.writeln(options, result.tree.toStringTree())
241 self.writeln(options, repr(result))
294 result = getattr(parser, options.parserRule)()
295 if result is not None:
296 assert hasattr(result, 'tree'), "Parser did not return an AST"
297 nodeStream = antlr3.tree.CommonTreeNodeStream(result
[all...]
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py134 result = runner.run(suite)
144 if not result.wasSuccessful() or loadFailures:
266 result = runner.run(suite)
276 if not result.wasSuccessful() or loadFailures:
H A Dxmlrunner.py87 """A test result class that stores result as XML.
176 result = _XMLTestResult(classname)
186 test(result)
200 result.print_report(stream, time_taken, out_s, err_s)
204 return result
223 XML result against the expected XML string. Fail if the expected
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt015calc.py15 result = parser.evaluate()
16 assert result == expected, "%r != %r" % (result, expected)
39 # FIXME: most parse errors result in TypeErrors in action code, because
H A Dt048rewrite.py28 result = tokens.toString()
30 self.failUnlessEqual(result, expecting)
37 result = tokens.toString()
39 self.failUnlessEqual(result, expecting)
47 result = tokens.toString()
49 self.failUnlessEqual(result, expecting)
56 result = tokens.toString()
58 self.failUnlessEqual(result, expecting)
65 result = tokens.toString()
67 self.failUnlessEqual(result, expectin
[all...]
H A Dt055templates.py21 result = getattr(parser, grammarEntry)()
22 if result.st is not None:
23 return result.st.toString()
375 result = parser.prog()
H A Dt056lexer.py21 result = getattr(parser, grammarEntry)()
22 return result
H A Dt057autoAST.py76 result = ""
79 if hasattr(r, 'result'):
80 result += r.result
83 result += r.tree.toStringTree()
86 return result
89 return result, parser._errors
639 a returns [result] : id=ID id=ID {$result = "2nd id="+$id.text+";";} ;
655 a returns [result]
[all...]
H A Dt058rewriteAST.py76 result = ""
79 if hasattr(r, 'result'):
80 result += r.result
83 result += r.tree.toStringTree()
86 return result
89 return result, parser._errors
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestdottreegen.py44 result = st.toString()
70 self.assertEqual(result, expected)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddebug.rb261 result = yield
262 @debug_listener.semantic_predicate( result, description )
263 return result
576 # A semantic predicate was evaluate with this result and action text
578 def semantic_predicate( result, predicate )
645 # In our case, it will always be the result of calling
H A Ddot.rb67 @__template__.result( binding )
H A Dmain.rb193 @output.print( "\n" ) # ensures result output is on a new line after EOF is entered
208 @output.print( "\n" ) # ensures result output is on a new line after EOF is entered
459 result = parser.send( @parser_rule ) and present( result )
571 if result = @parser.send( @parser_rule )
572 result.respond_to?( :tree ) or fail( "Parser did not return an AST for rule #@parser_rule" )
573 @node_stream = ANTLR3::CommonTreeNodeStream.new( result.tree )
576 if result = @walker.send( @walker_rule )
577 out = result.tree.inspect rescue result
[all...]
H A Dprofile.rb319 def semantic_predicate( result, predicate )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Devent-hub.rb189 def semantic_predicate( result, predicate )
191 listener.semantic_predicate( result, predicate )
H A Dsocket.rb179 def semantic_predicate( result, predicate )
180 pure_boolean = !( !result )

Completed in 1259 milliseconds

1234567891011>>