/external/mesa3d/src/mesa/main/ |
D | vtxfmt.c | 45 install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab, in install_vtxfmt() argument 51 SET_Color4f(tab, vfmt->Color4f); in install_vtxfmt() 55 _mesa_install_arrayelt_vtxfmt(tab, vfmt); in install_vtxfmt() 56 SET_Color3f(tab, vfmt->Color3f); in install_vtxfmt() 57 SET_Color3fv(tab, vfmt->Color3fv); in install_vtxfmt() 58 SET_Color4fv(tab, vfmt->Color4fv); in install_vtxfmt() 59 SET_EdgeFlag(tab, vfmt->EdgeFlag); in install_vtxfmt() 63 _mesa_install_eval_vtxfmt(tab, vfmt); in install_vtxfmt() 67 SET_Materialfv(tab, vfmt->Materialfv); in install_vtxfmt() 68 SET_MultiTexCoord4fARB(tab, vfmt->MultiTexCoord4fARB); in install_vtxfmt() [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-tabs/demo/ |
D | index.html | 27 <link rel="import" href="../paper-tab.html"> 50 <paper-tab>ITEM ONE</paper-tab> 51 <paper-tab>ITEM TWO</paper-tab> 52 <paper-tab>ITEM THREE</paper-tab> 61 paper-tabs[no-bar] paper-tab.iron-selected { 67 <paper-tab>ITEM ONE</paper-tab> 68 <paper-tab>ITEM TWO</paper-tab> 69 <paper-tab>ITEM THREE</paper-tab> 81 <paper-tab>ITEM ONE</paper-tab> 82 <paper-tab>ITEM TWO</paper-tab> [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-tabs/test/ |
D | links.html | 31 <paper-tab link><a href="#one" tabindex="-1">ONE</a></paper-tab> 32 <paper-tab link><a href="#two" tabindex="-1">TWO</a></paper-tab> 33 <paper-tab link><a href="#three" tabindex="-1">THREE</a></paper-tab> 41 <paper-tab><a href="#one" tabindex="-1">ONE</a></paper-tab> 42 <paper-tab><a href="#two" tabindex="-1">TWO</a></paper-tab> 43 <paper-tab><a href="#three" tabindex="-1">THREE</a></paper-tab> 51 <paper-tab> 55 </paper-tab> 56 <paper-tab> 60 </paper-tab> [all …]
|
D | basic.html | 31 <paper-tab>ITEM ONE</paper-tab> 32 <paper-tab>ITEM TWO</paper-tab> 33 <paper-tab>ITEM THREE</paper-tab> 41 <paper-tab>ITEM ONE</paper-tab> 42 <paper-tab>ITEM TWO</paper-tab> 53 function checkSelectionBar(tabs, tab) { 54 var tabRect = tab.getBoundingClientRect(); 72 Array.prototype.forEach.call(tabs.querySelectorAll('paper-tab'), function(tab) { 73 assert.isFalse(tab.classList.contains('iron-selected')); 134 test('selected tab has iron-selected class', function() { [all …]
|
D | attr-for-selected.html | 30 <paper-tab name="foo">ITEM FOO</paper-tab> 31 <paper-tab name="bar">ITEM BAR</paper-tab> 32 <paper-tab name="zot">ITEM ZOT</paper-tab> 51 test('selected tab has iron-selected class', function() { 58 suite('select tab via click', function() { 60 var tabs, tab; 64 tab = tabs.querySelector('[name=zot]'); 65 tab.dispatchEvent(new CustomEvent('click', {bubbles: true})); 72 test('selected tab has iron-selected class', function() { 74 assert.isTrue(tab.classList.contains('iron-selected'));
|
/external/autotest/client/cros/multimedia/ |
D | facade_resource.py | 103 # The opened tabs are stored by tab descriptors. 104 # Key is the tab descriptor string. 106 # string to locate the tab object. 107 # Value is the tab object. 165 def _generate_tab_descriptor(tab): argument 166 """Generate tab descriptor by tab object. 168 @param tab: the tab object. 169 @return a str, the tab descriptor of the tab. 172 return hex(id(tab)) 187 for tab in browser_tabs: [all …]
|
D | browser_facade_native.py | 74 """Opens a new tab and loads URL. 77 @return a str, the tab descriptor of the opened tab. 85 """Closes a previously opened tab. 87 @param tab_descriptor: Indicate which tab to be closed. 90 tab = self._resource.get_tab_by_descriptor(tab_descriptor) 91 logging.debug('Closing URL %s', tab.url) 98 given tab. 100 @param tab_descriptor: Indicate on which tab to wait for the expression. 109 """Executes a JavaScript statement on the given tab. 111 @param tab_descriptor: Indicate on which tab to execute the statement. [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-tabs/ |
D | paper-tab.html | 18 `paper-tab` is styled to look like a tab. It should be used in conjunction with 24 <paper-tab>TAB 1</paper-tab> 25 <paper-tab>TAB 2</paper-tab> 26 <paper-tab>TAB 3</paper-tab> 35 `--paper-tab-ink` | Ink color | `--paper-yellow-a100` 36 `--paper-tab` | Mixin applied to the tab | `{}` 37 `--paper-tab-content` | Mixin applied to the tab content | `{}` 38 `--paper-tab-content-unselected` | Mixin applied to the tab content when the tab is not selected | … 45 <dom-module id="paper-tab"> 61 @apply(--paper-tab); [all …]
|
D | paper-tabs.html | 19 <link rel="import" href="paper-tab.html"> 27 Use `selected` property to get or set the selected tab. 32 <paper-tab>TAB 1</paper-tab> 33 <paper-tab>TAB 2</paper-tab> 34 <paper-tab>TAB 3</paper-tab> 37 See <a href="?active=paper-tab">paper-tab</a> for more information about 38 `paper-tab`. 44 <paper-tab>Tab 1</paper-tab> 45 <paper-tab>Tab 2</paper-tab> 46 <paper-tab>Tab 3</paper-tab> [all …]
|
D | README.md | 41 <paper-tab>The first tab</paper-tab> 42 <paper-tab>Tab two</paper-tab> 43 <paper-tab>The third tab</paper-tab> 44 <paper-tab>Fourth tab</paper-tab>
|
/external/autotest/client/site_tests/platform_InputBrowserNav/ |
D | platform_InputBrowserNav.py | 31 def test_back(self, tab): argument 34 @param tab: current tab. 40 self.verify_url(tab, self.URL_1) 42 def test_forward(self, tab): argument 45 @param tab: current tab. 51 self.verify_url(tab, self.URL_2) 53 def test_refresh(self, tab): argument 56 @param tab: current tab. 63 tab.EvaluateJavaScript("not_refreshed=true") 66 lambda: tab.EvaluateJavaScript(js), [all …]
|
/external/flatbuffers/docs/source/ |
D | doxygen_layout.xml | 17 <tab type="mainpage" visible="no" title=""/> 18 <tab type="usergroup" url="" title="Programmer's Guide"> 19 <tab type="user" url="@ref flatbuffers_guide_building" 21 <tab type="user" url="@ref flatbuffers_guide_tutorial" title="Tutorial"/> 22 <tab type="user" url="@ref flatbuffers_guide_using_schema_compiler" 24 <tab type="user" url="@ref flatbuffers_guide_writing_schema" 26 <tab type="user" url="@ref flatbuffers_guide_use_cpp" 28 <tab type="user" url="@ref flatbuffers_guide_use_c" 30 <tab type="user" url="@ref flatbuffers_guide_use_go" 32 <tab type="user" url="@ref flatbuffers_guide_use_java" [all …]
|
/external/autotest/client/cros/video/ |
D | native_html5_player.py | 25 self.tab.ExecuteJavaScript( 36 return self.tab.EvaluateJavaScript('canplay()') 46 return self.tab.EvaluateJavaScript( 55 self.tab.ExecuteJavaScript('play()') 63 self.tab.ExecuteJavaScript('pause()') 72 return self.tab.EvaluateJavaScript(cmd) 81 return self.tab.EvaluateJavaScript(cmd) 89 return self.tab.EvaluateJavaScript('currentTime()') 100 self.tab.ExecuteJavaScript(cmd) 108 return self.tab.EvaluateJavaScript('finishedSeeking()') [all …]
|
/external/autotest/client/site_tests/graphics_Stress/ |
D | graphics_Stress.py | 44 tab = cr.browser.tabs[-1] 45 return tab 58 tab = None 60 tab = cr.browser.tabs[0] 61 tab.Navigate(url) 64 tab = self.create_window(cr, url) 66 tab = cr.browser.tabs.New() 67 tab.Navigate(url) 71 tab.WaitForDocumentReadyStateToBeComplete() 72 tab.Activate() [all …]
|
/external/autotest/client/site_tests/power_FlashVideoSuspend/ |
D | power_FlashVideoSuspend.py | 23 tab = cr.browser.tabs[0] 24 tab.Navigate(cr.browser.platform.http_server.UrlOf( 29 def check_video_is_playing(self, tab): argument 33 @param tab: Object to the browser tab 37 return tab.EvaluateJavaScript('player.getCurrentTime()') 45 def suspend_with_youtube(self, tab, video_url): argument 49 @param tab: Object to the browser tab 52 tab.WaitForDocumentReadyStateToBeInteractiveOrBetter() 54 tab.EvaluateJavaScript('play("%s")' % video_url) 55 tab.WaitForJavaScriptCondition('typeof player != "undefined"', [all …]
|
/external/one-true-awk/ |
D | makefile | 43 SOURCE = awk.h awkgram.tab.c awkgram.tab.h proto.h awkgram.y lex.c b.c main.c \ 49 SHIP = README LICENSE FIXES $(SOURCE) awkgram.tab.[ch].bak makefile \ 52 a.out: awkgram.tab.o $(OFILES) 53 $(CC) $(CFLAGS) awkgram.tab.o $(OFILES) $(ALLOC) -lm 55 $(OFILES): awk.h awkgram.tab.h proto.h 57 awkgram.tab.c awkgram.tab.h: awk.h proto.h awkgram.y 61 ./maketab awkgram.tab.h >proctab.c 63 maketab: awkgram.tab.h maketab.c 67 @cp awkgram.tab.h awkgram.tab.h.bak 68 @cp awkgram.tab.c awkgram.tab.c.bak [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | tabbedpages.py | 19 Only one tab may be selected at a time. 27 select_command -- A callable which will be called when a tab is 28 selected. It is called with the name of the selected tab as an 32 the desired tab order. The first tab will be the default and first 33 active tab. If tabs is None or empty, the TabSet will be initialized 69 """Add a new tab with the name given in tab_name.""" 71 raise InvalidNameError("Invalid Tab name: '%s'" % tab_name) 73 raise AlreadyExistsError("Tab named '%s' already exists" %tab_name) 79 """Remove the tab named <tab_name>""" 81 raise KeyError("No such Tab: '%s" % page_name) [all …]
|
/external/libnl/doc/ |
D | DoxygenLayout.xml | 4 <tab type="mainpage" visible="yes" title=""/> 5 <tab type="pages" visible="yes" title="" intro=""/> 6 <tab type="modules" visible="yes" title="" intro=""/> 7 <tab type="namespaces" visible="yes" title=""> 8 <tab type="namespacelist" visible="yes" title="" intro=""/> 9 <tab type="namespacemembers" visible="yes" title="" intro=""/> 10 </tab> 11 <tab type="classes" visible="yes" title=""> 12 <tab type="classlist" visible="yes" title="" intro=""/> 13 <tab type="classindex" visible="$ALPHABETICAL_INDEX" title=""/> [all …]
|
/external/jemalloc_new/src/ |
D | ckh.c | 68 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; in ckh_bucket_search() 114 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + in ckh_try_bucket_insert() 155 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; in ckh_evict_reloc_insert() 259 ckhc_t *tab, *ttab; in ckh_grow() local 282 tab = (ckhc_t *)ipallocztm(tsd_tsdn(tsd), usize, CACHELINE, in ckh_grow() 284 if (tab == NULL) { in ckh_grow() 289 ttab = ckh->tab; in ckh_grow() 290 ckh->tab = tab; in ckh_grow() 291 tab = ttab; in ckh_grow() 294 if (!ckh_rebuild(ckh, tab)) { in ckh_grow() [all …]
|
/external/libevent/test/ |
D | regress_testutils.c | 152 struct regress_dns_server_table *tab = data; in regress_dns_server_cb() local 161 while (tab->q && evutil_ascii_strcasecmp(question, tab->q) && in regress_dns_server_cb() 162 strcmp("*", tab->q)) in regress_dns_server_cb() 163 ++tab; in regress_dns_server_cb() 164 if (tab->q == NULL) in regress_dns_server_cb() 167 ++tab->seen; in regress_dns_server_cb() 169 if (tab->lower) in regress_dns_server_cb() 172 if (!strcmp(tab->anstype, "err")) { in regress_dns_server_cb() 173 int err = atoi(tab->ans); in regress_dns_server_cb() 176 } else if (!strcmp(tab->anstype, "errsoa")) { in regress_dns_server_cb() [all …]
|
/external/autotest/client/site_tests/touch_TabSwitch/ |
D | touch_TabSwitch.py | 13 """Test to verify the three finger tab switching touchpad gesture.""" 43 @raises TestError if browser doesn't end up with correct tab count. 49 tab = cr.browser.tabs.New() 56 """Fail the test if the index-th tab is not active. 58 @param index: integer representing the position of our tab. 60 @raises: TestFail if the tab is not active as expected. 63 tab = self._tabs[index] 64 if tab.EvaluateJavaScript('document.hidden') == 'False': 68 """ Verify correct tab switching behavior. 71 the left will set the tab to the left as the active tab. [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/ |
D | ASN1Dump.java | 48 private static final String TAB = " "; field in ASN1Dump 66 String tab = indent + TAB; in _dumpAsString() local 90 buf.append(tab); in _dumpAsString() 96 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() 100 _dumpAsString(tab, verbose, ((ASN1Encodable)o).toASN1Primitive(), buf); in _dumpAsString() 106 String tab = indent + TAB; in _dumpAsString() local 130 _dumpAsString(tab, verbose, o.getObject(), buf); in _dumpAsString() 135 String tab = indent + TAB; in _dumpAsString() local 159 buf.append(tab); in _dumpAsString() 165 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() [all …]
|
/external/autotest/client/site_tests/platform_LowMemoryTest/ |
D | platform_LowMemoryTest.py | 28 'tab_manager_delegate_chromeos.*:(\d+) Killed tab') 29 _PATTERN_OOM = re.compile('Tab OOM-Killed Memory details:') 43 """Returns true if tab discard event is recorded.""" 76 # The tab count at the first tab discard. 94 # Test is successful if at least one Chrome tab is killed by tab 100 raise error.TestFail('No tab discarded') 128 The created tab. 134 tab = cr.browser.tabs.New() 135 tab.Navigate(url) 136 tab.WaitForDocumentReadyStateToBeComplete() [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/util/ |
D | ASN1Dump.java | 50 private static final String TAB = " "; field in ASN1Dump 68 String tab = indent + TAB; in _dumpAsString() local 92 buf.append(tab); in _dumpAsString() 98 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() 102 _dumpAsString(tab, verbose, ((ASN1Encodable)o).toASN1Primitive(), buf); in _dumpAsString() 108 String tab = indent + TAB; in _dumpAsString() local 132 _dumpAsString(tab, verbose, o.getObject(), buf); in _dumpAsString() 137 String tab = indent + TAB; in _dumpAsString() local 161 buf.append(tab); in _dumpAsString() 167 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/util/ |
D | ASN1Dump.java | 50 private static final String TAB = " "; field in ASN1Dump 68 String tab = indent + TAB; in _dumpAsString() local 92 buf.append(tab); in _dumpAsString() 98 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() 102 _dumpAsString(tab, verbose, ((ASN1Encodable)o).toASN1Primitive(), buf); in _dumpAsString() 108 String tab = indent + TAB; in _dumpAsString() local 132 _dumpAsString(tab, verbose, o.getObject(), buf); in _dumpAsString() 137 String tab = indent + TAB; in _dumpAsString() local 161 buf.append(tab); in _dumpAsString() 167 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() [all …]
|