HomeSort by relevance Sort by last modified time
    Searched full:xlog (Results 1 - 25 of 29) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t034tokenLabelPropertyRef.g 7 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);
t026actions.g 7 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);
t056lexer11.g 4 B : x='a' {this.xlog($x);} ;
t056lexer1.g 3 a : A {this.xlog(this.input);} ;
t056lexer2.g 3 a : A EOF {this.xlog(this.input);} ;
t056lexer5.g 3 a : A {this.xlog(this.input);} ;
t056lexer6.g 3 a : A EOF {this.xlog(this.input);} ;
t056lexer8.g 4 A : I {this.xlog($I.text);} ;
t056lexer10.g 4 A : i+=I WS i+=I {$channel=0; for (var p=0; p<$i.length; p++) this.xlog(" "+$i[p].getText()); } ;
t056lexer3.g 3 a : A EOF {this.xlog($A.text+", channel="+$A.channel);} ;
t056lexer4.g 4 a : X EOF {this.xlog(this.input);} ;
t056lexer7.g 4 A : 'hi' WS (v=I)? {$channel=0; this.xlog($v.text);} ;
t056lexer9.g 4 A : i+=I+ { for (var p=0; p<$i.length; p++) this.xlog(" "+$i[p].getText()); } ;
rhino-python.prog 34 function xlog(msg) {
49 MyLexer.prototype.emitErrorMessage = function(msg) {xlog(msg);}
50 PythonParser.prototype.emitErrorMessage = function(msg) {xlog(msg);}
65 xlog(e.toString());
t026actions.html 27 assertArrayEquals(parser.xlog, ["init;", "after;", "finally;"]);
28 assertArrayEquals(lexer.xlog, ["action;", "foobar 4 1 0 -1 0 0 5", "attribute;", "action;", "_Ab98 4 1 7 -1 0 7 11", "attribute;", "action;", "A12sdf 4 2 1 -1 0 15 20", "attribute;"]);
t034tokenLabelPropertyRef.html 46 assertArrayEquals(["a",4,1,3,0,1], xlog);
t056lexer.html 48 lexer.xlog = function(msg){output += msg;};
49 parser.xlog = lexer.xlog;
Python.g 92 {xlog("found method def "+$NAME.text);}
364 {xlog("found class def "+$NAME.text);}
  /system/core/debuggerd/
utility.h 39 #define XLOG(fmt...) _LOG(NULL, 0, fmt)
41 #define XLOG(fmt...) do {} while(0)
utility.c 62 XLOG("waitpid: n=%d status=%08x\n", n, status);
77 XLOG("not ready yet\n");
debuggerd.c 196 XLOG("reading tid\n");
265 XLOG("handle_request(%d)\n", fd);
270 XLOG("BOOM: pid=%d uid=%d gid=%d tid=%d\n",
309 XLOG("stopped -- dumping to tombstone\n");
314 XLOG("stopped -- dumping to fd\n");
318 XLOG("stopped -- continuing\n");
334 XLOG("stopped -- fatal signal\n");
351 XLOG("stopped -- unexpected signal\n");
368 XLOG("detaching\n");
456 XLOG("waiting for connection\n")
    [all...]
tombstone.c 401 XLOG("Cannot open /proc/%d/task\n", pid);
460 XLOG("Unable to open %s: %s\n", filename, strerror(errno));
490 * NOTE: if you XLOG something here, this will spin forever,
  /external/qemu/hw/
goldfish_nand.c 44 #define XLOG xlog
47 xlog( const char* format, ... ) function
223 XLOG("%s EOF seek failed: %s\n", __FUNCTION__, strerror(errno));
233 XLOG("%s seek failed: %s\n", __FUNCTION__, strerror(errno));
240 XLOG("%s read failed: %s\n", __FUNCTION__, strerror(errno));
278 XLOG("%s, restore failed: size required (%lld) exceeds device limit (%lld)\n",
287 XLOG("%s seek failed: %s\n", __FUNCTION__, strerror(errno));
299 XLOG("%s read failed: expected %d bytes but got %d\n",
305 XLOG("%s, write failed: %s\n", __FUNCTION__, strerror(errno))
    [all...]
  /bionic/libc/netbsd/resolv/
res_cache.c 171 #undef XLOG
174 # define XLOG(...) \
357 XLOG("%s",buff);
361 # define XLOG(...) ((void)0)
565 XLOG("malformed QNAME");
587 XLOG("unsupported TYPE");
592 XLOG("unsupported CLASS");
609 XLOG("query packet too small");
616 XLOG("query packet flags unsupported");
645 XLOG("query packet contains non-query records")
    [all...]
  /bionic/libc/tzcode/
localtime.c 58 # define XLOG(xx) printf xx , fflush(stdout)
60 # define XLOG(x) do{}while (0)
431 XLOG(("tzload: null 'name' parameter\n" ));
451 XLOG(("tzload: null TZDIR macro ?\n" ));
455 XLOG(( "tzload: path too long: %s/%s\n", p, name ));
469 XLOG(( "tzload: could not find '%s'\n", name ));
478 XLOG(( "tzload: could not open '%s', trying '%s'\n", fullname, INDEXFILE ));
480 XLOG(( "tzload: could not find '%s'\n", INDEXFILE ));
498 XLOG(( "tzload: invalid offset (%d)\n", off ));
505 XLOG(( "tzload: could not open '%s'\n", DATAFILE ))
    [all...]

Completed in 911 milliseconds

1 2