Home
last modified time | relevance | path

Searched refs:tabIndex (Results 1 – 25 of 108) sorted by relevance

12345

/external/aac/libAACenc/src/
Dquantize.cpp125 INT tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE); in FDKaacEnc_quantizeLines() local
127 accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]); in FDKaacEnc_quantizeLines()
138 INT tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE); in FDKaacEnc_quantizeLines() local
140 accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]); in FDKaacEnc_quantizeLines()
178 INT ex,specExp,tabIndex; in FDKaacEnc_invQuantizeLines() local
189 tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE); in FDKaacEnc_invQuantizeLines()
192 s = FDKaacEnc_mTab_4_3Elc[tabIndex]; in FDKaacEnc_invQuantizeLines()
212 INT ex,specExp,tabIndex; in FDKaacEnc_invQuantizeLines() local
223 tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE); in FDKaacEnc_invQuantizeLines()
226 s = FDKaacEnc_mTab_4_3Elc[tabIndex]; in FDKaacEnc_invQuantizeLines()
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
Dfeed.js128 box.tabIndex = -1;
145 title.tabIndex = 0;
161 desc.tabIndex = -1;
176 more.tabIndex = 0;
233 iframe.tabIndex = 0;
240 iframe.tabIndex = -1;
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
Dui.js91 var tabIndex = this._tabs.tabs('option', 'selected');
92 this._tabIndexToSavedScrollOffset[tabIndex] = document.body.scrollTop;
94 _restoreScrollOffset: function(tabIndex) argument
96 document.body.scrollTop = this._tabIndexToSavedScrollOffset[tabIndex] || 0;
158 var tabIndex = this._tabNames.indexOf(tabName);
159 this._tabs.tabs('enable', tabIndex);
160 this._tabs.tabs('select', tabIndex);
/external/chromium_org/chrome/browser/resources/user_manager/
Dcontrol_bar.js46 set buttonsTabIndex(tabIndex) { argument
49 button.tabIndex = tabIndex;
/external/chromium/chrome/browser/ui/cocoa/
Dtab_view_picker_table.mm14 - (NSInteger)tableIndexFromTabIndex:(NSInteger)tabIndex;
122 - (NSInteger)tableIndexFromTabIndex:(NSInteger)tabIndex {
123 DCHECK_GE(tabIndex, 0);
124 DCHECK_LT(tabIndex, [tabView_ numberOfTabViewItems]);
126 return tabIndex;
127 return tabIndex + 1;
/external/chromium_org/third_party/WebKit/Source/core/page/
DFocusController.cpp206 return isNonFocusableFocusScopeOwner(node) ? 0 : node->tabIndex(); in adjustedTabIndex()
468 Node* FocusController::findNodeWithExactTabIndex(Node* start, int tabIndex, FocusDirection directio… in findNodeWithExactTabIndex() argument
472 if (shouldVisit(node) && adjustedTabIndex(node) == tabIndex) in findNodeWithExactTabIndex()
478 static Node* nextNodeWithGreaterTabIndex(Node* start, int tabIndex) in nextNodeWithGreaterTabIndex() argument
484 … if (shouldVisit(node) && node->tabIndex() > tabIndex && node->tabIndex() < winningTabIndex) { in nextNodeWithGreaterTabIndex()
486 winningTabIndex = node->tabIndex(); in nextNodeWithGreaterTabIndex()
493 static Node* previousNodeWithLowerTabIndex(Node* start, int tabIndex) in previousNodeWithLowerTabIndex() argument
500 …t(node) || isNonKeyboardFocusableShadowHost(node)) && currentTabIndex < tabIndex && currentTabInde… in previousNodeWithLowerTabIndex()
511 int tabIndex = adjustedTabIndex(start); in nextFocusableNode() local
513 if (tabIndex < 0) { in nextFocusableNode()
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/login/
Duser_pod_row.js144 this.tabIndex = UserPodTabOrder.POD_INPUT;
145 this.customButton.tabIndex = UserPodTabOrder.POD_INPUT;
146 this.actionBoxAreaElement.tabIndex = UserPodTabOrder.ACTION_BOX;
197 this.tabIndex = UserPodTabOrder.POD_INPUT;
198 this.mainInput.tabIndex = -1;
516 this.tabIndex = -1;
517 this.mainInput.tabIndex = UserPodTabOrder.POD_INPUT;
609 this.actionBoxMenuRemoveElement.tabIndex =
692 this.actionBoxMenuRemoveElement.tabIndex = -1;
838 this.tabIndex = -1;
[all …]
Dheader_bar.js56 set buttonsTabIndex(tabIndex) { argument
59 button.tabIndex = tabIndex;
/external/chromium_org/chrome/browser/resources/ntp4/
Ddot_list.js68 navDots[newFocusIndex].tabIndex = 3;
70 focusDot.tabIndex = -1;
/external/chromium/chrome/browser/printing/cloud_print/resources/
Dcloud_print_setup_flow.js10 $(pages[i]).tabIndex = -1;
17 $(page).tabIndex = 0;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DSearchableView.js87 this._findButtonElement.tabIndex = -1;
93 this._replaceButtonElement.tabIndex = -1;
100 this._prevButtonElement.tabIndex = -1;
122 cancelButtonElement.tabIndex = -1;
469 this._replaceCheckboxElement.tabIndex = -1;
476 this._replaceCheckboxElement.tabIndex = 0;
DDialog.js43 this._glassPane.element.tabIndex = 0;
47 this._element.tabIndex = 0;
DTextPrompt.js186 this._oldTabIndex = this._element.tabIndex;
187 if (this._element.tabIndex < 0)
188 this._element.tabIndex = 0;
196 this._element.tabIndex = this._oldTabIndex;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
DComponentResultsView.java324 int tabIndex = this.tabFolder.getSelectionIndex(); in resetTabFolders() local
325 int lineIndex = tabIndex<0 ? -1 : this.tabs[tabIndex].table.getSelectionIndex(); in resetTabFolders()
355 tabIndex = c; in resetTabFolders()
368 if (tabIndex >= 0 && lineIndex >= 0) { in resetTabFolders()
369 this.tabFolder.setSelection(tabIndex); in resetTabFolders()
370 Table table = this.tabs[tabIndex].table; in resetTabFolders()
/external/chromium/chrome/browser/resources/gpu_internals/
Doverlay.js35 this.tabCatcher.tabIndex = 0;
58 overlay.tabIndex = 0;
/external/chromium_org/remoting/webapp/
Dui_mode.js250 element.tabIndex = element.getAttribute(kSavedAttributeName);
270 element.setAttribute(kSavedAttributeName, element.tabIndex);
271 element.tabIndex = -1;
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
Dsearch_box.js159 this.inputElement.tabIndex = '99'; // See: go/filesapp-tabindex.
169 this.inputElement.tabIndex = '-1';
/external/chromium_org/ui/webui/resources/js/cr/ui/
Ddialogs.js52 this.frame_.tabIndex = -1;
150 function(n) { return n.tabIndex >= 0; });
179 function(n) { n.tabIndex = -1; });
Dcontext_menu_button.js50 this.tabIndex = -1;
Dbubble_button.js24 this.image.tabIndex = 0;
/external/chromium/chrome/browser/resources/ntp4/
Dmost_visited_page.js58 this.tabIndex = -1;
72 this.tabIndex = 0;
/external/chromium-trace/
Dinit.js15 timelineViewEl.tabIndex = 1;
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
Dcontext_menu_button.js50 this.tabIndex = -1;
/external/chromium-trace/trace-viewer/src/ui/
Doverlay.js44 this.tabCatcher.tabIndex = 0;
89 overlay.tabIndex = 0;
/external/chromium/chrome/browser/policy/resources/
Denrollment.js24 iframes[j].tabIndex = -1;

12345