/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/llvm-project/polly/lib/External/isl/ |
D | isl_tab.c | 37 struct isl_tab *tab; in isl_tab_alloc() local 40 tab = isl_calloc_type(ctx, struct isl_tab); in isl_tab_alloc() 41 if (!tab) in isl_tab_alloc() 43 tab->mat = isl_mat_alloc(ctx, n_row, off + n_var); in isl_tab_alloc() 44 if (!tab->mat) in isl_tab_alloc() 46 tab->var = isl_alloc_array(ctx, struct isl_tab_var, n_var); in isl_tab_alloc() 47 if (n_var && !tab->var) in isl_tab_alloc() 49 tab->con = isl_alloc_array(ctx, struct isl_tab_var, n_row); in isl_tab_alloc() 50 if (n_row && !tab->con) in isl_tab_alloc() 52 tab->col_var = isl_alloc_array(ctx, int, n_var); in isl_tab_alloc() [all …]
|
D | isl_tab_pip.c | 69 /* detect nonnegative parameters in context and mark them in tab */ 71 struct isl_context *context, struct isl_tab *tab); 94 int (*get_div)(struct isl_context *context, struct isl_tab *tab, 100 struct isl_tab *tab); 102 int (*best_split)(struct isl_context *context, struct isl_tab *tab); 131 struct isl_tab *tab; member 601 struct isl_tab *tab; in sol_inc_level() local 607 tab = sol->context->op->peek_tab(sol->context); in sol_inc_level() 608 if (isl_tab_push_callback(tab, &sol->dec_level.callback) < 0) in sol_inc_level() 626 * tab->n_var is equal to the total number of variables in the input [all …]
|
D | isl_tab.h | 185 void isl_tab_free(struct isl_tab *tab); 187 isl_ctx *isl_tab_get_ctx(struct isl_tab *tab); 195 isl_bool isl_tab_cone_is_bounded(struct isl_tab *tab); 197 __isl_take isl_basic_map *bmap, struct isl_tab *tab); 199 __isl_take isl_basic_set *bset, struct isl_tab *tab); 200 int isl_tab_detect_implicit_equalities(struct isl_tab *tab) WARN_UNUSED; 201 __isl_give isl_basic_map *isl_tab_make_equalities_explicit(struct isl_tab *tab, 203 int isl_tab_detect_redundant(struct isl_tab *tab) WARN_UNUSED; 204 isl_stat isl_tab_restore_redundant(struct isl_tab *tab); 206 enum isl_lp_result isl_tab_min(struct isl_tab *tab, [all …]
|
D | isl_sample.c | 149 static struct isl_mat *tab_equalities(struct isl_tab *tab) in tab_equalities() argument 156 if (!tab) in tab_equalities() 159 bset = isl_tab_peek_bset(tab); in tab_equalities() 160 isl_assert(tab->mat->ctx, bset, return NULL); in tab_equalities() 162 n_eq = tab->n_var - tab->n_col + tab->n_dead; in tab_equalities() 163 if (tab->empty || n_eq == 0) in tab_equalities() 164 return isl_mat_alloc(tab->mat->ctx, 0, tab->n_var); in tab_equalities() 165 if (n_eq == tab->n_var) in tab_equalities() 166 return isl_mat_identity(tab->mat->ctx, tab->n_var); in tab_equalities() 168 eq = isl_mat_alloc(tab->mat->ctx, n_eq, tab->n_var); in tab_equalities() [all …]
|
D | basis_reduction_templ.c | 28 /* Compute a reduced basis for the set represented by the tableau "tab". 29 * tab->basis, which must be initialized by the calling function to an affine 31 * The first tab->n_zero rows of the basis (ignoring the constant row) 33 * tab->n_zero is updated to reflect any additional equalities that 35 * The final tab->n_unbounded rows of the basis are assumed to correspond 49 struct isl_tab *isl_tab_compute_reduced_basis(struct isl_tab *tab) in isl_tab_compute_reduced_basis() argument 76 if (!tab) in isl_tab_compute_reduced_basis() 79 if (tab->empty) in isl_tab_compute_reduced_basis() 80 return tab; in isl_tab_compute_reduced_basis() 82 ctx = tab->mat->ctx; in isl_tab_compute_reduced_basis() [all …]
|
D | isl_vertices.c | 115 /* Prepend a vertex to the linked list "list" based on the equalities in "tab". 123 __isl_keep isl_basic_set *bset, struct isl_tab *tab) in add_vertex() argument 128 if (isl_tab_detect_implicit_equalities(tab) < 0) in add_vertex() 135 v = isl_calloc_type(tab->mat->ctx, struct isl_vertex_list); in add_vertex() 141 v->v.vertex = isl_basic_set_update_from_tab(v->v.vertex, tab); in add_vertex() 254 * reflected by facets in "tab", the rows of "facets" and the earlier 269 struct isl_tab *tab, __isl_keep isl_mat *facets, int selected, in can_select() argument 277 if (isl_tab_is_redundant(tab, level)) in can_select() 286 snap = isl_tab_snap(tab); in can_select() 287 if (isl_tab_select_facet(tab, level) < 0) in can_select() [all …]
|
D | isl_affine_hull.c | 35 struct isl_tab *tab; in isl_basic_map_implicit_equalities() local 48 tab = isl_tab_from_basic_map(bmap, 0); in isl_basic_map_implicit_equalities() 49 if (isl_tab_detect_implicit_equalities(tab) < 0) in isl_basic_map_implicit_equalities() 51 bmap = isl_basic_map_update_from_tab(bmap, tab); in isl_basic_map_implicit_equalities() 52 isl_tab_free(tab); in isl_basic_map_implicit_equalities() 57 isl_tab_free(tab); in isl_basic_map_implicit_equalities() 251 /* Find an integer point in the set represented by "tab" 260 * integer points in the basic set represented by "tab" 264 * that tab->basis and tab->n_unbounded have been set appropriately. 266 static __isl_give isl_vec *outside_point(struct isl_tab *tab, isl_int *eq, in outside_point() argument [all …]
|
D | isl_map_subtract.c | 46 /* Add all constraints of bmap to tab. The equalities of bmap 49 static isl_stat tab_add_constraints(struct isl_tab *tab, in tab_add_constraints() argument 59 if (!tab || !bmap) in tab_add_constraints() 62 tab_total = isl_basic_map_dim(tab->bmap, isl_dim_all); in tab_add_constraints() 69 if (isl_tab_extend_cons(tab, 2 * bmap->n_eq + bmap->n_ineq) < 0) in tab_add_constraints() 78 if (isl_tab_add_ineq(tab, v->el) < 0) in tab_add_constraints() 82 if (isl_tab_add_ineq(tab, v->el) < 0) in tab_add_constraints() 85 if (tab->empty) in tab_add_constraints() 91 if (isl_tab_add_ineq(tab, v->el) < 0) in tab_add_constraints() 93 if (tab->empty) in tab_add_constraints() [all …]
|
D | basis_reduction_tab.c | 20 struct isl_tab *tab; member 90 static struct tab_lp *init_lp(struct isl_tab *tab); 118 static struct isl_tab *gbr_tab(struct isl_tab *tab, struct isl_vec *row) in gbr_tab() argument 123 if (!tab || !row) in gbr_tab() 126 dim = tab->n_var; in gbr_tab() 127 prod = isl_tab_product(tab, tab); in gbr_tab() 135 static struct tab_lp *init_lp(struct isl_tab *tab) in init_lp() argument 139 if (!tab) in init_lp() 142 lp = isl_calloc_type(tab->mat->ctx, struct tab_lp); in init_lp() 151 lp->dim = tab->n_var; in init_lp() [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 …]
|
/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/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/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/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 …]
|