Home
last modified time | relevance | path

Searched refs:xlog (Results 1 – 16 of 16) sorted by relevance

/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt026actions.g7 this.xlog = [];
13 this.xlog = [];
14 this.xlog.push("init;");
17 this.xlog.push("after;");
22 this.xlog.push("catch;");
26 this.xlog.push("finally;");
34 this.xlog.push("action;");
35 this.xlog.push([$text, $type, $line, $pos, $index, $channel, $start, $stop].join(" "));
37 this.xlog.push(this.foobar);
Dt034tokenLabelPropertyRef.g7 var xlog = [];
12 xlog.push($t.text);
13 xlog.push($t.type);
14 xlog.push($t.line);
15 xlog.push($t.pos);
16 xlog.push($t.channel);
17 xlog.push($t.index);
Drhino-python.prog34 function xlog(msg) {
49 MyLexer.prototype.emitErrorMessage = function(msg) {xlog(msg);}
50 PythonParser.prototype.emitErrorMessage = function(msg) {xlog(msg);}
65 xlog(e.toString());
Dt056lexer11.g4 B : x='a' {this.xlog($x);} ;
Dt056lexer2.g3 a : A EOF {this.xlog(this.input);} ;
Dt056lexer1.g3 a : A {this.xlog(this.input);} ;
Dt056lexer5.g3 a : A {this.xlog(this.input);} ;
Dt056lexer8.g4 A : I {this.xlog($I.text);} ;
Dt056lexer6.g3 a : A EOF {this.xlog(this.input);} ;
Dt056lexer3.g3 a : A EOF {this.xlog($A.text+", channel="+$A.channel);} ;
Dt056lexer4.g4 a : X EOF {this.xlog(this.input);} ;
Dt056lexer7.g4 A : 'hi' WS (v=I)? {$channel=0; this.xlog($v.text);} ;
Dt056lexer9.g4 A : i+=I+ { for (var p=0; p<$i.length; p++) this.xlog(" "+$i[p].getText()); } ;
Dt056lexer10.g4 A : i+=I WS i+=I {$channel=0; for (var p=0; p<$i.length; p++) this.xlog(" "+$i[p].getText()); } ;
DPython.g92 {xlog("found method def "+$NAME.text);}
364 {xlog("found class def "+$NAME.text);}
/external/qemu/hw/
Dgoldfish_nand.c41 #define XLOG xlog
44 xlog( const char* format, ... ) in xlog() function