HomeSort by relevance Sort by last modified time
    Searched refs:bot (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
commitannouncer_unittest.py 28 from webkitpy.tool.bot.commitannouncer import CommitAnnouncer
35 bot = CommitAnnouncer(tool, "test_password")
38 bot._format_commit_detail("""\
57 bot._format_commit_detail("""\
73 bot._format_commit_detail("""\
89 bot._format_commit_detail("""\
101 bot._format_commit_detail("""\
122 bot._format_commit_detail("""\
142 bot._format_commit_detail("""\
162 bot._format_commit_detail("""
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
scanio.c 2 unsigned cnt = s->tok - s->bot;
7 memcpy(s->bot, s->tok, len);
8 s->eot = &s->bot[len];
14 memcpy(s->bot, s->tok, s->lim - s->tok);
18 s->tok = s->bot;
22 uchar *buf = (uchar*) malloc(((s->lim - s->bot) + 512)*sizeof(uchar));
23 memcpy(buf, s->bot, s->lim - s->bot);
25 s->ptr = &buf[s->ptr - s->bot];
27 s->eot = &buf[s->eot - s->bot];
    [all...]
  /external/chromium_org/build/android/buildbot/tests/
bb_run_bot_test.py 16 for bot, proc in bot_process_map:
20 print 'Error running the bot script with id="%s"' % bot, err
27 (bot, subprocess.Popen(
28 [os.path.join(BUILDBOT_DIR, 'bb_run_bot.py'), '--bot-id', bot,
30 for bot in bb_run_bot.GetBotStepMap()]
  /external/chromium_org/gpu/tools/
check_gpu_bots.py 215 bot = waterfall[bot_name]
217 if bot['state'] != 'offline':
220 gpu_bot = GpuBot(waterfall_name, bot_name, bot)
238 def getMostRecentlyCompletedBuildForBot(bot):
239 if bot.bot_data is not None and 'most_recent_build' in bot.bot_data:
240 return bot.bot_data['most_recent_build']
246 builds = Waterfall.getLastNBuildsForBuilder(NUM_BUILDS, bot.waterfall_name,
247 bot.bot_name)
254 if bot.bot_data is not None
    [all...]
  /external/chromium_org/third_party/webrtc/tools/rtcbot/test/
ping_pong.js 9 function testPingPong(bot) {
10 test.log('bot:alice > Sending Ping to bot');
11 bot.ping(gotAnswer);
14 test.log('bot > ' + answer);
  /external/pixman/demos/
trap-test.c 28 trap.bot.l = pixman_int_to_fixed (50) + 0x8000;
29 trap.bot.r = pixman_int_to_fixed (150) + 0x8000;
30 trap.bot.y = pixman_int_to_fixed (150);
  /external/pixman/test/
a1-trap-test.c 28 trap.bot.l = pixman_double_to_fixed (0.5);
29 trap.bot.r = pixman_double_to_fixed (1.5);
30 trap.bot.y = pixman_double_to_fixed (1.5);
  /external/chromium_org/third_party/boringssl/src/crypto/poly1305/
poly1305_arm_asm.S 173 # asm 1: vld1.8 {<y0=reg128#1%bot},[<input_1=int32#2]!
178 # asm 1: vld1.8 {>y12=reg128#2%bot->y12=reg128#2%top},[<input_1=int32#2]!
183 # asm 1: vld1.8 {>y34=reg128#3%bot->y34=reg128#3%top},[<input_1=int32#2]!
195 # asm 1: vld1.8 {<z0=reg128#4%bot},[<input_1=int32#2]!
200 # asm 1: vld1.8 {>z12=reg128#5%bot->z12=reg128#5%top},[<input_1=int32#2]!
205 # asm 1: vld1.8 {>z34=reg128#6%bot->z34=reg128#6%top},[<input_1=int32#2]!
220 # asm 1: vld1.8 {>x01=reg128#9%bot->x01=reg128#9%top},[<input_0=int32#1,: 128]!
225 # asm 1: vld1.8 {>x23=reg128#10%bot->x23=reg128#10%top},[<input_0=int32#1,: 128]!
230 # asm 1: vld1.8 {<x4=reg128#11%bot},[<input_0=int32#1,: 64]
322 # asm 1: vst1.8 {<u4=reg128#8%bot-<u4=reg128#8%top},[<ptr=int32#2,: 128
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
FocusOverlay.java 265 float bot = mFocusDebugCornersRect.bottom; local
269 canvas.drawLines(new float[]{left, bot - delta, left, bot, left, bot, left + delta, bot}, mDebugCornersPaint);
270 canvas.drawLines(new float[]{right, bot - delta, right, bot, right, bot, right - delta, bot}, mDebugCornersPaint);
274 canvas.drawText(mDebugMessage, left - 4, bot + 44, mDebugTextPaint)
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Geometry.h 36 if (y < brect.bot) brect.bot = y;
44 if (rrect.bot < brect.bot) brect.bot = rrect.bot;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Geometry.h 36 if (y < brect.bot) brect.bot = y;
44 if (rrect.bot < brect.bot) brect.bot = rrect.bot;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Geometry.h 36 if (y < brect.bot) brect.bot = y;
44 if (rrect.bot < brect.bot) brect.bot = rrect.bot;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/bootstrap/
scanner.c 31 s->bot = s->tok = s->ptr = s->cur = s->pos = s->lim = s->top =
41 unsigned int cnt = s->tok - s->bot;
43 memcpy(s->bot, s->tok, s->lim - s->tok);
44 s->tok = s->bot;
51 unsigned char *buf = malloc(((s->lim - s->bot) + BSIZE));
54 s->ptr = &buf[s->ptr - s->bot];
55 cursor = &buf[cursor - s->bot];
56 s->pos = &buf[s->pos - s->bot];
57 s->lim = &buf[s->lim - s->bot];
59 if (s->bot)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
scanner.c 31 s->bot = s->tok = s->ptr = s->cur = s->pos = s->lim = s->top =
41 unsigned int cnt = s->tok - s->bot;
43 memcpy(s->bot, s->tok, s->lim - s->tok);
44 s->tok = s->bot;
51 unsigned char *buf = malloc(((s->lim - s->bot) + BSIZE) + 1);
54 s->ptr = &buf[s->ptr - s->bot];
55 cursor = &buf[cursor - s->bot];
56 s->pos = &buf[s->pos - s->bot];
57 s->lim = &buf[s->lim - s->bot];
59 if (s->bot)
    [all...]
scanner.h 9 unsigned char *bot, *tok, *ptr, *cur, *pos, *lim, *top, *eof; member in struct:Scanner
  /cts/apps/CtsVerifier/
Android.mk 46 notification-bot := $(call intermediates-dir-for,APPS,NotificationBot)/package.apk
52 && adb install -r $(notification-bot) \
88 $(verifier-zip) : $(notification-bot)
92 $(ACP) -fp $(notification-bot) $(verifier-dir)/NotificationBot.apk
  /external/chromium_org/third_party/skia/experimental/benchtools/
greenify.py 60 def git_commit_expectations(repo_dir, exp_dir, bot, build, commit):
61 commit_msg = """Greenify bench bot %s at build %s
66 NOTRY=true""" % (bot, build)
74 filename = 'bench_expectations_%s.txt' % bot
101 def widen_bench_ranges(url, bot, repo_dir, exp_dir):
102 fname = 'bench_expectations_%s.txt' % bot
105 print 'This bot has no expectations! %s' % bot
184 bot = path[4]
192 if not widen_bench_ranges(args.url, bot, repo_dir, exp_dir)
    [all...]
  /external/chromium_org/third_party/webrtc/tools/rtcbot/
botmanager.js 23 // TODO(andresp): There should be a way to control which bot was spawned
24 // and what bot instance it gets connected to.
46 console.log('Error: Type ' + botType + ' not supported by rtc-Bot!');
53 var bot = this.createBot_(name, botType, callback);
54 this.bots_.push(bot);
55 this.pendingConnections_.push(bot.onBotConnected.bind(bot));
63 this.app_.use('/bot/api.js',
65 __dirname + '/bot/api.js'));
67 this.app_.use('/bot/', Express.static(__dirname + '/bot'))
    [all...]
  /external/skia/experimental/benchtools/
greenify.py 60 def git_commit_expectations(repo_dir, exp_dir, bot, build, commit):
61 commit_msg = """Greenify bench bot %s at build %s
66 NOTRY=true""" % (bot, build)
74 filename = 'bench_expectations_%s.txt' % bot
101 def widen_bench_ranges(url, bot, repo_dir, exp_dir):
102 fname = 'bench_expectations_%s.txt' % bot
105 print 'This bot has no expectations! %s' % bot
184 bot = path[4]
192 if not widen_bench_ranges(args.url, bot, repo_dir, exp_dir)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-token.re 101 size_t cnt = s->tok - s->bot;
103 memmove(s->bot, s->tok, (size_t)(s->lim - s->tok));
104 s->tok = s->bot;
109 if (!s->bot)
112 YYCTYPE *buf = yasm_xmalloc((size_t)(s->lim - s->bot) + BSIZE);
115 s->ptr = &buf[s->ptr - s->bot];
116 cursor = &buf[cursor - s->bot];
117 s->lim = &buf[s->lim - s->bot];
119 if (s->bot)
120 yasm_xfree(s->bot);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
commitannouncer.py 32 from webkitpy.tool.bot.commitannouncer import CommitAnnouncer, CommitAnnouncerThread
40 help_text = "Start an IRC bot for announcing new git commits."
52 _log.info("Bot started")
55 bot_thread.bot.post_new_commits()
64 _log.info("Disconnecting bot")
67 _log.info("Bot offline")
  /external/chromium_org/third_party/skia/src/core/
SkEdge.cpp 62 int bot = SkFDot6Round(y1); local
65 if (top == bot) {
69 if (clip && (top >= clip->fBottom || bot <= clip->fTop)) {
79 fLastY = bot - 1;
103 int bot = SkFDot6Round(y1); local
108 if (top == bot)
120 fLastY = bot - 1;
209 int bot = SkFDot6Round(y2); local
212 if (top == bot)
373 int bot = SkFDot6Round(y3) local
    [all...]
SkRegionPriv.h 171 int bot;
178 bot = *runs++;
179 SkASSERT(bot < SkRegion::kRunTypeSentinel);
225 bounds->fBottom = bot;
  /external/skia/src/core/
SkEdge.cpp 55 int bot = SkFDot6Round(y1); local
58 if (top == bot) {
62 if (NULL != clip && (top >= clip->fBottom || bot <= clip->fTop)) {
72 fLastY = bot - 1;
96 int bot = SkFDot6Round(y1); local
101 if (top == bot)
113 fLastY = bot - 1;
193 int bot = SkFDot6Round(y2); local
196 if (top == bot)
346 int bot = SkFDot6Round(y3) local
    [all...]
SkEdge.h 108 int bot = SkFDot6Round(y1);
111 if (top == bot) {
121 fLastY = bot - 1;

Completed in 1284 milliseconds

1 2 3 4 5