Searched refs:windex (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/chrome/test/pyautolib/
H A Dchromotinglib.py30 def _ExecuteJavascript(self, command, tab_index, windex):
36 tab_index, windex)
42 def _WaitForJavascriptCondition(self, condition, tab_index, windex,
53 '(%s) ? "1" : ""' % condition, tab_index, windex), timeout)
58 def _ExecuteAndWaitForMode(self, command, mode, tab_index, windex):
64 if not self._ExecuteJavascript(command, tab_index, windex):
68 tab_index, windex)
70 def _ExecuteAndWaitForMajorMode(self, command, mode, tab_index, windex):
76 if not self._ExecuteJavascript(command, tab_index, windex):
80 tab_index, windex)
[all...]
H A Dpyauto.py945 def __init__(self, ui_test, tab_index=0, windex=0, frame_xpath=''):
955 self.windex = windex
963 self.windex,
1006 def _GetResultFromJSONRequest(self, cmd_dict, windex=0, timeout=-1):
1020 windex: 0-based window index on which to work. Default: 0 (first window)
1021 Use -ve windex or None if the automation command does not apply
1034 if windex is None: # Do not target any window
1035 windex = -1
1036 result = self._SendJSONRequest(windex, jso
[all...]
/external/chromium_org/chrome/test/functional/
H A Dmultiprofile.py28 def _GetSearchEngineWithKeyword(self, keyword, windex=0):
33 windex: The window index, default is 0.
38 match_list = ([x for x in self.GetSearchEngineInfo(windex=windex)
44 def _SetPreferences(self, dict, windex=0):
49 windex: The window index, defaults to 0 (the first window).
52 self.SetPrefs(key, dict[key], windex=windex)
54 def _SetStartUpPage(self, url, windex=0):
59 windex
[all...]
H A Dtest_utils.py73 tab_index=0, windex=0, url=None):
84 windex: The window index, default is 0.
88 test.NavigateToURL(url, windex, tab_index)
93 test.ExecuteJavascript(email_id, tab_index, windex)
94 test.ExecuteJavascript(password, tab_index, windex)
95 test.assertTrue(test.SubmitForm('gaia_loginform', tab_index, windex))
99 windex=0):
107 windex: The window index, default is 0.
110 tab_index, windex)
112 tab_index, windex)
[all...]
H A Dinfobars.py44 def _GetTabInfo(self, windex=0, tab_index=0):
49 return self.GetBrowserInfo()['windows'][windex]['tabs'][tab_index]
73 def _VerifyGeolocationInfobar(self, windex, tab_index):
81 tab_info = self._GetTabInfo(windex, tab_index)
95 self._VerifyGeolocationInfobar(windex=0, tab_index=0)
107 self.WaitForInfobarCount(1, windex=0, tab_index=tab_index))
108 self._VerifyGeolocationInfobar(windex=0, tab_index=tab_index)
112 self.assertTrue(self.WaitForInfobarCount(1, windex=1, tab_index=0))
113 self._VerifyGeolocationInfobar(windex=1, tab_index=0)
117 self.assertTrue(self.WaitForInfobarCount(1, windex
[all...]
H A Dchromeos_crosh.py65 for windex in range (1, 4): # 3 new windows
71 self.WaitForHtermText(text='crosh> ', tab_index=1, windex=windex,
75 windex=windex).endswith('crosh> '),
79 self.SendKeysToHterm('exit\\n', tab_index=1, windex=windex)
81 tab_index=1, windex=windex,
138 self.SendKeysToHterm('help\\n', tab_index=4, windex
[all...]
H A Domnibox.py41 def _VerifyHistoryResult(query_list, description, windex=0):
45 self, query_text, windex=windex,
58 self.WaitUntilOmniboxReadyHack(windex=1)
59 _VerifyHistoryResult([url, title], title, windex=1)
62 self.WaitUntilOmniboxReadyHack(windex=2)
63 _VerifyHistoryResult([url, title], title, windex=2)
65 def _VerifyOmniboxURLMatches(self, url, description, windex=0):
72 windex: The window index to work on. Defaults to 0 (first window).
75 self, url, windex
[all...]
H A Dpasswords.py144 tab_index=0, windex=0)
187 tab_index=0, windex=0)
191 tab_index=1, windex=0)
209 tab_index=0, windex=1)
211 tab_index=0, windex=1)
236 'document.getElementById("Passwd").value', tab_index=0, windex=1)
291 def _SendCharToPopulateField(self, char, tab_index=0, windex=0):
297 windex: window index to work on. Defaults to 0 (first window).
303 self.SendWebkitKeyEvent(KEY_DOWN_TYPE, CHAR_KEYPRESS, tab_index, windex)
304 self.SendWebkitCharEvent(char, tab_index, windex)
[all...]
H A Dnetflix.py59 def _GetVideoDroppedFrames(self, tab_index=0, windex=0):
66 windex=windex))
68 def _GetVideoFrames(self, tab_index=0, windex=0):
75 windex=windex))
H A Dtest_pyauto.py44 lambda: self.FindInPage('some text', windex=1)) # invalid window
H A Dprefs.py169 def _CheckForVisibleImage(self, tab_index=0, windex=0):
174 windex: Window index. Defaults to 0 (first window).
192 return self.ExecuteJavascript(script, windex=windex, tab_index=tab_index)
H A Dntp.py273 self.CloseTab(windex=1)
413 self.SetAppLaunchType(installed_app_id, 'regular', windex=0)
427 self.SetAppLaunchType(installed_app_id, 'pinned', windex=0)
443 self.SetAppLaunchType(installed_app_id, 'fullscreen', windex=0)
459 self.SetAppLaunchType(installed_app_id, 'window', windex=0)
H A Dstress.py167 for windex in xrange(win_count - 1, 0, -1):
168 self.RunCommand(pyauto.IDC_CLOSE_WINDOW, windex)
346 self.TabGoBack(tab_index=0, windex=window_index)
359 self.TabGoForward(tab_index=0, windex=window_index)
/external/bison/lib/
H A Dlbitset.c259 bitset_windex windex = elt->index; local
278 else if (windex < bset->b.cindex)
281 ptr->prev && ptr->prev->index > windex; ptr = ptr->prev)
298 ptr->next && ptr->next->index < windex; ptr = ptr->next)
312 bset->b.cindex = windex;
319 lbitset_elt_find (bitset bset, bitset_windex windex, argument
329 if ((windex - bset->b.cindex) < bset->b.csize)
339 if (windex < bset->b.cindex)
342 elt->prev && elt->index > windex; elt = elt->prev)
348 elt->next && (elt->index + LBITSET_ELT_WORDS - 1) < windex;
520 bitset_windex windex = bitno / BITSET_WORD_BITS; local
533 bitset_windex windex = bitno / BITSET_WORD_BITS; local
549 bitset_windex windex = bitno / BITSET_WORD_BITS; local
576 bitset_windex windex; local
668 bitset_windex windex; local
895 bitset_windex windex; local
915 bitset_windex windex; local
943 bitset_windex windex; local
1044 bitset_windex windex; local
[all...]
H A Debitset.c514 bitset_windex windex = bitno / BITSET_WORD_BITS; local
518 dst->b.cdata[windex - dst->b.cindex] |=
527 bitset_windex windex = bitno / BITSET_WORD_BITS; local
532 dst->b.cdata[windex - dst->b.cindex] &=
545 bitset_windex windex = bitno / BITSET_WORD_BITS; local
548 && ((src->b.cdata[windex - src->b.cindex]
574 bitset_windex windex; local
595 windex = bitno / BITSET_WORD_BITS;
597 woffset = windex - eindex * EBITSET_ELT_WORDS;
604 boffset = windex * BITSET_WORD_BIT
659 bitset_windex windex; local
857 bitset_windex windex; local
[all...]
H A Dabitset.c148 bitset_windex windex; local
166 windex = bitno / BITSET_WORD_BITS;
168 bitoff = windex * BITSET_WORD_BITS;
174 word = srcp[windex] << (BITSET_WORD_BITS - 1 - bitcnt);
191 while (windex--);
207 bitset_windex windex; local
219 for (windex = 0; windex < size && !srcp[windex]; windex
[all...]
H A Dvbitset.c121 bitset_windex windex = bitno / BITSET_WORD_BITS; local
129 dst->b.cdata[windex - dst->b.cindex] |=
171 bitset_windex windex; local
189 windex = bitno / BITSET_WORD_BITS;
191 bitoff = windex * BITSET_WORD_BITS;
197 word = srcp[windex] << (BITSET_WORD_BITS - 1 - bitcnt);
214 while (windex--);
233 bitset_windex windex; local
245 for (windex = 0; windex < siz
[all...]
H A Dbitset.h138 bitset_windex windex = bitno / BITSET_WORD_BITS; local
139 bitset_windex offset = windex - bset->b.cindex;
152 bitset_windex windex = bitno / BITSET_WORD_BITS; local
153 bitset_windex offset = windex - bset->b.cindex;
166 bitset_windex windex = bitno / BITSET_WORD_BITS; local
167 bitset_windex offset = windex - bset->b.cindex;
/external/chromium_org/chrome/test/functional/tracing/
H A Dtab_tracker.py63 self._browser.CloseTab(tab_index=idx, windex=self._window_idx)
H A Dtracer.py42 windex = self._tab_tracker.GetWindowIndex(),
/external/chromium_org/ppapi/generators/
H A Didl_diff.py229 for windex, wline in was:
232 if filter[windex]: continue
235 filter[windex] = True
237 print "Found %d, %d >>%s<<" % (windex + 1, nindex + 1, wline)
/external/stlport/test/unit/
H A Dcodecvt_test.cpp596 size_t windex = 0; local
605 CPPUNIT_ASSERT( wc == utf8_wstr[windex++] );
623 CPPUNIT_ASSERT( windex == utf8_wstr.size() );
/external/chromium_org/chrome/test/functional/gtalk/
H A Dgtalk_base_test.py242 windex = tab['windex'],
300 # Store reference to windex used in _RunInTab.
301 tab['windex'] = win['index']
/external/chromium_org/chrome/browser/automation/
H A Dtesting_automation_provider.cc2184 int windex = 0;
2186 for (chrome::BrowserIterator it; !it.done(); it.Next(), ++windex) {
2189 browser_item->SetInteger("index", windex);
2824 // Sample json input: { "command": "GetPrefsInfo", "windex": 0 }
2845 // "windex": 0,
4600 dict.SetInteger("windex", browser_index);
5089 int windex, value_size;
5090 if (!args->GetInteger("windex", &windex)) {
5091 reply.SendError("'windex' missin
[all...]
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider.cc2513 int windex = 0; local
2516 ++it, ++windex) {
2519 browser_item->SetInteger("index", windex);
5061 dict.SetInteger("windex", browser_index);

Completed in 303 milliseconds