HomeSort by relevance Sort by last modified time
    Searched refs:tab (Results 51 - 75 of 937) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/policy_PopupsAllowedForUrls/
policy_PopupsAllowedForUrls.py 63 def _wait_for_page_ready(self, tab):
65 lambda: tab.EvaluateJavaScript('pageReady'),
79 tab = self.navigate_to_url(self.TEST_URL)
80 self._wait_for_page_ready(tab)
81 is_blocked = tab.EvaluateJavaScript('isPopupBlocked();')
92 tab.Close()
  /external/autotest/client/site_tests/policy_PopupsBlockedForUrls/
policy_PopupsBlockedForUrls.py 64 def _wait_for_page_ready(self, tab):
66 lambda: tab.EvaluateJavaScript('pageReady'),
80 tab = self.navigate_to_url(self.TEST_URL)
81 self._wait_for_page_ready(tab)
82 is_blocked = tab.EvaluateJavaScript('isPopupBlocked();')
93 tab.Close()
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_generic.go 42 func simpleUpdate(crc uint32, tab *Table, p []byte) uint32 {
45 crc = tab[byte(crc)^v] ^ (crc >> 8)
73 func slicingUpdate(crc uint32, tab *slicing8Table, p []byte) uint32 {
78 crc = tab[0][p[7]] ^ tab[1][p[6]] ^ tab[2][p[5]] ^ tab[3][p[4]] ^
79 tab[4][crc>>24] ^ tab[5][(crc>>16)&0xFF] ^
80 tab[6][(crc>>8)&0xFF] ^ tab[7][crc&0xFF
    [all...]
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32_generic.go 42 func simpleUpdate(crc uint32, tab *Table, p []byte) uint32 {
45 crc = tab[byte(crc)^v] ^ (crc >> 8)
73 func slicingUpdate(crc uint32, tab *slicing8Table, p []byte) uint32 {
78 crc = tab[0][p[7]] ^ tab[1][p[6]] ^ tab[2][p[5]] ^ tab[3][p[4]] ^
79 tab[4][crc>>24] ^ tab[5][(crc>>16)&0xFF] ^
80 tab[6][(crc>>8)&0xFF] ^ tab[7][crc&0xFF
    [all...]
  /external/autotest/client/site_tests/graphics_WebGLPerformance/
graphics_WebGLPerformance.py 51 tab = browser.tabs.New()
52 tab.Navigate(test_url)
53 tab.Activate()
54 tab.WaitForDocumentReadyStateToBeComplete()
57 tab.WaitForJavaScriptCondition('time_ms_geom_mean > 0.0',
61 time_ms_geom_mean = tab.EvaluateJavaScript('time_ms_geom_mean')
86 test_report = tab.EvaluateJavaScript('test_report')
94 tab.Close()
  /external/bison/tests/
bison.in 39 # We are called by ylwrap which still uses y.tab.*, and
40 # post-processes the synclines on y.tab.c itself. Don't let it
43 $PERL -pi -e 's{"y\.tab\.}{"parse-gram.}g;' \
45 y.tab.[ch]
  /packages/apps/DeskClock/src/com/android/deskclock/uidata/
TabDAO.java 21 import static com.android.deskclock.uidata.UiDataModel.Tab;
24 * This class encapsulates the storage of tab data in {@link SharedPreferences}.
28 /** Key to a preference that stores the ordinal of the selected tab. */
34 * @return an enumerated value indicating the currently selected primary tab
36 static Tab getSelectedTab(SharedPreferences prefs) {
37 final int ordinal = prefs.getInt(KEY_SELECTED_TAB, Tab.CLOCKS.ordinal());
38 return Tab.values()[ordinal];
42 * @param tab an enumerated value indicating the newly selected primary tab
44 static void setSelectedTab(SharedPreferences prefs, Tab tab)
    [all...]
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
LayoutBinderWriter.kt 432 tab("sIncludes = null;")
435 tab("sIncludes = new android.databinding.ViewDataBinding.IncludedLayouts($numBindings);")
452 tab("sIncludes.setIncludes($index, ") {
453 tab ("new String[] {${
458 tab("new int[] {${
463 tab("new int[] {${
475 tab("sViewsWithIds = null;")
477 tab("sViewsWithIds = new android.util.SparseIntArray();")
479 tab("sViewsWithIds.put(${it.androidId}, ${indices[it]});")
510 tab("this(bindingComponent, $superParam, mapBindings(bindingComponent, root, $bindingCount, sIncludes, (…)
    [all...]
BRWriter.kt 28 tab("public static ${prefix}int _all = 0;")
30 tab ("public static ${prefix}int ${it.value} = ${it.index + 1};")
  /prebuilts/go/darwin-x86/src/runtime/
iface.go 211 func convT2I(tab *itab, elem unsafe.Pointer) (i iface) {
212 t := tab._type
214 raceReadObjectPC(t, elem, getcallerpc(unsafe.Pointer(&tab)), funcPC(convT2I))
225 i.tab = tab
231 tab := i.tab
232 if tab == nil {
235 if tab.inter == inter {
236 r.tab = ta
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
iface.go 211 func convT2I(tab *itab, elem unsafe.Pointer) (i iface) {
212 t := tab._type
214 raceReadObjectPC(t, elem, getcallerpc(unsafe.Pointer(&tab)), funcPC(convT2I))
225 i.tab = tab
231 tab := i.tab
232 if tab == nil {
235 if tab.inter == inter {
236 r.tab = ta
    [all...]
  /external/autotest/client/site_tests/video_YouTubePage/
video_YouTubePage.py 41 tab = None variable in class:video_YouTubePage
51 self.tab = chrome.browser.tabs[0]
53 self.tab.Navigate(player_page)
54 self.tab.WaitForDocumentReadyStateToBeComplete()
61 if not self.tab.EvaluateJavaScript(js):
72 return self.tab.EvaluateJavaScript('window.__getVideoState();')
79 self.tab.ExecuteJavaScript('window.__playVideo();')
86 self.tab.ExecuteJavaScript('window.__pauseVideo();')
95 self.tab.ExecuteJavaScript('window.__seek(%f);' % new_time)
105 self.tab.ExecuteJavaScript
    [all...]
  /external/autotest/client/site_tests/policy_EditBookmarksEnabled/
policy_EditBookmarksEnabled.py 60 tab = self.navigate_to_url('chrome://bookmarks/#1')
63 tab.WaitForJavaScriptCondition(
68 is_disabled = tab.EvaluateJavaScript(
71 tab.Close()
  /external/autotest/client/site_tests/video_YouTubeHTML5/
video_YouTubeHTML5.py 45 tab = browser.tabs[0]
46 tab.Navigate('http://localhost:8000/youtube5.html')
47 yh = youtube_helper.YouTubeHelper(tab)
62 tab.ExecuteJavaScript('player.mute()')
  /external/bison/build-aux/
missing 81 bison create 'y.tab.[ch]', if possible, from existing .[ch]
86 yacc create 'y.tab.[ch]', if possible, from existing .[ch]
216 rm -f y.tab.c y.tab.h
223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
232 if test ! -f y.tab.h; then
233 echo >y.tab.h
235 if test ! -f y.tab.c; then
236 echo 'main() { return 0; }' >y.tab.
    [all...]
  /external/clang/test/Sema/
wchar.c 21 wchar_t tab[] = L"x"; local
  /external/libcap-ng/libcap-ng-0.7/
missing 82 bison create \`y.tab.[ch]', if possible, from existing .[ch]
87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
217 rm -f y.tab.c y.tab.h
224 cp "$SRCFILE" y.tab.c
228 cp "$SRCFILE" y.tab.h
233 if test ! -f y.tab.h; then
234 echo >y.tab.h
236 if test ! -f y.tab.c; then
237 echo 'main() { return 0; }' >y.tab.
    [all...]
  /external/libevent/
missing 81 bison create 'y.tab.[ch]', if possible, from existing .[ch]
86 yacc create 'y.tab.[ch]', if possible, from existing .[ch]
216 rm -f y.tab.c y.tab.h
223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
232 if test ! -f y.tab.h; then
233 echo >y.tab.h
235 if test ! -f y.tab.c; then
236 echo 'main() { return 0; }' >y.tab.
    [all...]
  /external/libnfnetlink/build-aux/
missing 82 bison create \`y.tab.[ch]', if possible, from existing .[ch]
87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
217 rm -f y.tab.c y.tab.h
224 cp "$SRCFILE" y.tab.c
228 cp "$SRCFILE" y.tab.h
233 if test ! -f y.tab.h; then
234 echo >y.tab.h
236 if test ! -f y.tab.c; then
237 echo 'main() { return 0; }' >y.tab.
    [all...]
  /external/llvm/lib/Target/AMDGPU/Utils/
AMDKernelCodeTUtils.h 30 const char *tab);
  /external/mesa3d/src/util/
format_srgb.h 85 unsigned tab, bias, scale, t; local
102 tab = util_format_linear_to_srgb_helper_table[(f.ui - minval.ui) >> 20];
103 bias = (tab >> 16) << 9;
104 scale = tab & 0xffff;
  /external/swiftshader/third_party/LLVM/autoconf/
missing 81 bison create \`y.tab.[ch]', if possible, from existing .[ch]
87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
216 rm -f y.tab.c y.tab.h
223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
232 if [ ! -f y.tab.h ]; then
233 echo >y.tab.h
235 if [ ! -f y.tab.c ]; then
236 echo 'main() { return 0; }' >y.tab.c
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/build-aux/
missing 82 bison create \`y.tab.[ch]', if possible, from existing .[ch]
87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
217 rm -f y.tab.c y.tab.h
224 cp "$SRCFILE" y.tab.c
228 cp "$SRCFILE" y.tab.h
233 if test ! -f y.tab.h; then
234 echo >y.tab.h
236 if test ! -f y.tab.c; then
237 echo 'main() { return 0; }' >y.tab.
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
fd_nacl.go 20 tab []*file
26 fdref int // uses in files.tab
54 for fd, oldf := range files.tab {
56 files.tab[fd] = f
60 fd := len(files.tab)
61 files.tab = append(files.tab, f)
76 if fd < 0 || fd >= len(files.tab) || files.tab[fd] == nil {
79 return files.tab[fd], ni
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
fd_nacl.go 20 tab []*file
26 fdref int // uses in files.tab
54 for fd, oldf := range files.tab {
56 files.tab[fd] = f
60 fd := len(files.tab)
61 files.tab = append(files.tab, f)
76 if fd < 0 || fd >= len(files.tab) || files.tab[fd] == nil {
79 return files.tab[fd], ni
    [all...]

Completed in 711 milliseconds

1 23 4 5 6 7 8 91011>>