HomeSort by relevance Sort by last modified time
    Searched full:xlog (Results 1 - 25 of 30) 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 51 #define XLOG(fmt...) _LOG(NULL, SCOPE_AT_FAULT, fmt)
53 #define XLOG(fmt...) do {} while(0)
debuggerd.c 197 XLOG("reading tid\n");
219 XLOG("crash request of size %d abort_msg_address=%#08x\n", status, msg.abort_msg_address);
272 XLOG("handle_request(%d)\n", fd);
278 XLOG("BOOM: pid=%d uid=%d gid=%d tid=%d\n",
317 XLOG("stopped -- dumping to tombstone\n");
322 XLOG("stopped -- dumping to fd\n");
327 XLOG("stopped -- continuing\n");
346 XLOG("stopped -- fatal signal\n");
363 XLOG("stopped -- unexpected signal\n");
380 XLOG("detaching\n")
    [all...]
utility.c 98 XLOG("waitpid: n=%d status=%08x\n", n, status);
113 XLOG("not ready yet\n");
  /bionic/libc/netbsd/resolv/
res_cache.c 172 #undef XLOG
175 # define XLOG(...) __libc_format_log(ANDROID_LOG_DEBUG,"libc",__VA_ARGS__)
357 XLOG("%s",buff);
361 # define XLOG(...) ((void)0)
565 XLOG("malformed QNAME");
585 XLOG("unsupported TYPE");
590 XLOG("unsupported CLASS");
607 XLOG("query packet too small");
614 XLOG("query packet flags unsupported");
643 XLOG("query packet contains non-query records")
    [all...]
  /external/qemu/hw/
goldfish_nand.c 41 #define XLOG xlog
44 xlog( const char* format, ... ) function
220 XLOG("%s EOF seek failed: %s\n", __FUNCTION__, strerror(errno));
230 XLOG("%s seek failed: %s\n", __FUNCTION__, strerror(errno));
237 XLOG("%s read failed: %s\n", __FUNCTION__, strerror(errno));
275 XLOG("%s, restore failed: size required (%lld) exceeds device limit (%lld)\n",
284 XLOG("%s seek failed: %s\n", __FUNCTION__, strerror(errno));
296 XLOG("%s read failed: expected %d bytes but got %d\n",
302 XLOG("%s, write failed: %s\n", __FUNCTION__, strerror(errno))
    [all...]
  /bionic/libc/arch-mips/bionic/
cacheflush.c 33 #define XLOG(...) __libc_format_log(ANDROID_LOG_DEBUG,"libc-cacheflush",__VA_ARGS__)
69 XLOG("called with (start,len) instead of (start,end)");
  /bionic/libc/tzcode/
localtime.c 52 # define XLOG(xx) printf xx , fflush(stdout)
54 # define XLOG(x) do{}while (0)
423 XLOG(("tzload: null 'name' parameter\n" ));
443 XLOG(("tzload: null TZDIR macro ?\n" ));
447 XLOG(( "tzload: path too long: %s/%s\n", p, name ));
461 XLOG(( "tzload: could not find '%s'\n", name ));
473 XLOG(( "tzload: could not read content of '%s'\n", DATAFILE ));
650 XLOG(( "tzload: load ok !!\n" ));
    [all...]

Completed in 3029 milliseconds

1 2